beginthread
函数创建一个线程。
uintptr_t _beginthread(
void( *start_address )( void * ),
unsigned stack_size,
void *arglist
);
start_address
新线程的起始地址 ,指向新线程调用的函数的起始地址stack_sizestack_size新线程的堆栈大小,可以为0arglistarglist传递给线程的参数列表,无参数是为NULL
所在库文件:
#include <process.h>