_beginthreadex static member function

前端 未结 5 1318
名媛妹妹
名媛妹妹 2021-01-24 02:28

How do I create a thread routine of a static member function

class Blah
{
    static void WINAPI Start();
};

// .. 
// ...
// ....

hThread = (HANDLE)_beginthre         


        
5条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-24 03:11

    class Blah
    {
        static unsigned int __stdcall Start(void *);
    };
    

提交回复
热议问题