How do I create a thread routine of a static member function
class Blah { static void WINAPI Start(); }; // .. // ... // .... hThread = (HANDLE)_beginthre
class Blah { static unsigned int __stdcall Start(void *); };