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