02-21-2003 01:20 AM
02-21-2003 11:36 AM
02-23-2003 12:05 PM
05-10-2010 04:40 PM
Al S wrote:
There's more info in the discussion here.
Can we be more specific?
I am trying to call a VC++ DLL. I'm not quite sure how to moify the .h file containing the function prototypes.
A snippet from the original .h file"
// Open grabber. int __stdcall Open(HANDLE &InterfaceHandle, int SourceIndex, int Width, int Height, int Rate);
I changed it to:
// Open grabber. __declspec(dllexport) int __stdcall Open(HANDLE *InterfaceHandle, int SourceIndex, int Width, int Height, int Rate);
I can compile, but I get an "Undefined Symbol" error while linking. I've moved the lib file to the project folder with no change in results.