I'm having trouble with loading a DLL in my assignment project.
Here's the header file:
I have omitted code that works and is irrelevant to the problem. Basically, hinstLib
is not NULL
but when the line Filter = (FILTPTR) GetProcAddress(hinstLib, "Filter");
is executed, Filter
has no value. To me it seems like it is saying that the DLL has been found but it cannot find the function "Filter" inside the DLL and I have no idea why, albeit I could be wrong. I still haven't got my head around how some of this works.
Here is the DLL:
Any ideas anyone? All help is greatly appreciated!
- James