bestainan 发表于 2013-11-8 20:37:13

仰望天上的光 发表于 2013-11-8 20:37:14

int WINAPI WinMain(HINSTANCE hInstance,   
       HINSTANCE hPrevInstance,
       LPSTR lpCmdLine,         
      int nCmdShow)
{
g_hInstance = hInstance;
//Register ("Main",WndProc ); 把这行去掉
if ( !Register("Main",WndProc))
{
   MessageBox ( NULL, "注册失败" , " Error " ,MB_OK);
   return 0;
}
HWND hWnd = CreateMain ("Main" , "Window");
   Display ( hWnd );
   Message ();
system ("PUSER");
return 0;

}

卧室不要床 发表于 2013-11-28 00:21:09

重复调用Register ("Main",WndProc );会有什么结果?查查api吧
页: [1]
查看完整版本: WIN32 错误 帮忙看下。初级的