#include "stdafx.h"
#include <afxwin.h>
#include "windows.h"
UINT ha(LPVOID lparam)
{
return 0;
}
int main(int argc, char* argv[])
{
printf("Hello World!\n");
AfxBeginThread(ha);
return 0;
}
//在复杂的程序中用AfxBeginThread创建线程老出错,于是写出这么简单的程序。 一样出错。
D:\pro\tt7\tt7.cpp(16) : error C2665: 'AfxBeginThread' : none of the 2 overloads can convert parameter 1 from type 'unsigned int (__cdecl *)(void *)'