I know how to create signel-threaded or multi-threaded DLL generally but i dont know how to declare selected thread model for my DLL. Happy programming!))
Greetinx!
I want to compile and link a DLL with clean ASM.
How can i put some function to DLL export section?
PUBLIC publics it for local external function only.
Thanks! Happy programming!))
Greetinx!
Following text is from Microsoft Visual C++ 6 Help
Topic - long double
Microsoft Specific —>
The long double contains 80 bits: 1 for sign, 15 for exponent, and 64 for mantissa. Its range is +/–1.2E4932 with at least 19 digits of precision. Although long double and double are...
Greetinx!
Here your code:
PIOCTLPARAMS p;
char buf[128];
_snprintf (buf, 128, "IOCTL is: %i", p->dioc_IOCtlCode);
and where are you allocate memory for IOCTLPARAMS structure?
So if not you must allocate memory and define parameters of the structure.
Happy programming!))
Greetinx!
Windows 95 has maximum windows within it equal to 32767(8)
other windows, i think, has more then 32K windows!
I know somebody did applications that contains more then 128 controls of one type and they worked properly.
Happy programming!))
Greetinx!
You also can create array of pointer to forms and access them with that pointers, like follows:
TForm2 **FormX[100];
for(int j = 0; j < 100; j++)
{
FormX[j] = new TForm2(this);
FormX[j]->Parent - MainForm;
FormX[j]->Left += i;
FormX[j]->Show()...
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.