过时小海豚

文章
4
资源
0
加入时间
2年10月21天

DLL的多线程

VC++动态链接库编程之多线程在DLL中可以处理多线程,WIN32对于多线程的支持是操作系统本身提供的一种能力,并不在于用户编写的是哪一类程序。即便是一个控制台程序,我们都可以使用多线程:#include #include void ThreadFun(void){while(1){printf( "this is new thread/n" );Sleep( 100