2009年11月29日
摘要: #include <windows.h>#include <stdio.h> //线程函数DWORD WINAPI ThreadProc(LPVOID lpParam){int i = 0;while(i < 20){ printf("I am from a thread,count = %d\n",i++);}return 0;}int main(int argc,... 阅读全文
posted @ 2009-11-29 23:40 sky.wind 阅读(735) 评论(0) 推荐(0) 编辑