I'm trying to late bind my program to a DLL.
I know how to import its methods but in one its header files, I have a definition like this:
EXTERN_C const IID SomeVariable;
How can I refer to this variable in my program without getting the "unresolved external symbol" error?
You can use GetProcAddress to get the address of a function or variable.