views:

1001

answers:

2

I downloaded a zipped archive from Apple that consists of a C++ header file and source. Included in this was a help file. For some reason this help file opens but I cannot read the content. Is there any other documentation outside of a help file for this? For c++ or c#?

+3  A: 

If you are on Windows, you probably are looking for the "iTunes COM for Windows SDK".

Get a free ADC login here if you haven't done so already. Once you have done that, you can go to http://connect.apple.com and log in.

Click on "Developer Tools", and somewhere in the massive list of results is "iTunes COM for Windows SDK". Download that, it's just an ordinary zip file, and somewhere in there is a directory named iTunesCOMWindowsSDK. In that directory, there is a iTunesCOM.chm file that contains all the reference material you need.

If this is the help file you already have, you could consider decompiling the chm file using the hh.exe tool that comes with Windows.

ntcolonel
Yes.. this is the same zip that I have. The issue I have is that the help file contains the TOC but selecting a topic does not display anything in the right side pane. I tried using the hh.exe from the command line (as you suggested) but haven't had any luck. I have never used this utility before. I tried this: hh.exe mk:@MSITSTore:{pathtohelp}::/main.htmlIt just seemed to open the help file but with the same results..
Nick
Thanks for the response!
Nick
A: 

Solved.. The problem was a Windows Security feature was blocking the compiled help file from opening. I found the solution here:

http://weblog.helpware.net/?p=36

Nick