benwilliamson wrote:
Hi
I'm trying to use the Starburn SDK with VC6 but I'm having problems.
I've linked the Starburn.lib file to my project and included the Starburn.h file.
The intellisense is not showing any available method apart from "StarBurn_DebugPrintf".
Everything compiles ok though, for example, i added a call to "StarBurn_CdvdBurnerGrabber_GetSpeeds()" and it compiles.
Thanks for your help
Ben
I think, intellisense does not understand function declarations like this:
Code:
STARBURN_IMPEX_API
ULONG
__stdcall
StarBurn_GetVersion(
IN VOID
);
If you need such feature - just replace macros STARBURN_IMPEX_API
with the following content: __declspec( dllimport ) - for dynamic linking or remove it at all for static linking.
Regards.