Hi all,
I'm writing a Win32 app with VC 2005 unmannaged code.
I started a new project from scratched.
I want to have a class for the Dialog form that handle everyting for that form (processing messages and so on...).
In the WinMain() I want to create an object of the class I wrote.
Because DefProc is a CALLBACK function, i'm having hard time to change it to be another method in my form class.
I want to be...