【C# C++】C#中调用msvcr100.dll中的_beginthreadex函数
摘要:msvcr100.dll是VS2010的C运行时库DLL, _beginthreadex开启子线程的函数就在这个DLL里面实现unsigned long _beginthreadex(void *security, //安全属性unsigned stack_size, //线程栈大小unsigned ( __stdcall *start_address )( void * ), //线程函数void *arglist, //线程函数的参数 */unsigned ...
阅读全文
posted @ 2013-07-31 16:40