to load dll. Then, use GetModuleHandle() to obtain HMODULE for your dll. With this handle call :
FARPROC GetProcAddress(
HMODULE hModule, // handle to DLL module
LPCSTR lpProcName // name of function
);
which returns the pointer to the function in dll you need. Note that you must know exact function name and names/types of arguments that this function expects.
However, I haven't tried this with 16-bit DLLs before, but Microsoft sais it should work
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.