0

我有一个线程函数,我从该线程创建一个窗口

每当我使用CreateThread()API 创建线程时,CreateWindow()返回 true 并创建窗口,但如果我使用创建线程_beginthreadexCreateWindow()则返回 false 并且不会创建窗口

这就是我创建线程的方式:

CreateThread()

// My Thread Function : HRESULT WINAPI CreateWndForHotkey(LPVOID)
CreateThread(NULL,NULL,(LPTHREAD_START_ROUTINE)CreateWndForHotkey,NULL,NULL,NULL);

_beginthreadex()

// My Thread Function : unsigned WINAPI CreateWndForHotkey(LPVOID)
_beginthreadex(NULL, 0, &CreateWndForHotkey, NULL, 0, NULL);
4

0 回答 0