摘要: #include <windows.h>#include <stdio.h>DWORD WINAPI ThreadProc( LPVOID lpParameter // thread data ){ for (;;) { } return 0;} int main(){ HANDLE hThread = CreateThread(NULL,0,Threa... 阅读全文
posted @ 2010-06-22 17:19 Fan Zhang 阅读(197) 评论(0) 推荐(0)