TheCrappyProgrammer
Programmer
In my
static UINT CProgram:oIt(LPVOID param);
I am not allowed to call
UpdateData(FALSE);
from the MFC library. The compiler says that I can't call it because I am calling it from a static function. Yet the Multithreaded Tutorials on the internet states that I have to write the prototype this way. How do I call UpdateData?
static UINT CProgram:oIt(LPVOID param);
I am not allowed to call
UpdateData(FALSE);
from the MFC library. The compiler says that I can't call it because I am calling it from a static function. Yet the Multithreaded Tutorials on the internet states that I have to write the prototype this way. How do I call UpdateData?