⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lamothe6.txt

📁 国外游戏开发者杂志1997年第七期配套代码
💻 TXT
字号:
LISTING 6. Testing the status test of a thread.
//...code

DWORD state = WaitForSingleObject(thread_handle, 0);  // get the status

// test the status

if (state==WAIT_OBJECT_0) { // thread is signaled, i.e. terminated }
else
if (state==WAIT_TIMEOUT) { // thread is still running }

//...code

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -