Hi!
I'm trying to create an invisible window using CreateWindow(). Which is the easiest way to do this? I've had a look at the parameters of this call. I think some of them are cryptic (like lpClassName and hInstance). I've also tried calling this function, but I always get error #1407...
Hi!
I'm trying to call a function from within a DLL by using this code:
FUNCPNT* fP;
HINSTANCE hLib = LoadLibrary("the_api.dll");
if(hLib)
{
fP = (FUNCPNT*)GetProcAddress(hLib,"TheDLLFunction");
}
//the calling of the function
(*fP)();
This gives me the error...
Hello!
In my project in Visual C++ I need to include an old header file that defines a struct that among other things uses AnsiString. The header file doesn't state any includes that might contain this class (or whatever it is).
I get a compiler error when trying to compile this. Is there...
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.