为什么不自己出现提示呢?
#include<stdio.h>
#include<windows.h>
LRESULT CALLBACK WinWenProc(
HWND hwnd, // handle to window
UINT uMsg, // message identifier
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
int WINAPI WinMain(
HINSTANCE hInstance, // handle to current instance
HINSTANCE hPrevInstance, // handle to previous instance
LPSTR lpCmdLine, // command line
int nCmdShow // show state
)
{ WNDCLASS wndcls;
wndcls.
用vc6.0的win32 application 建立一个工程,然后为工程添加一个winmain的源文件,开始编写源文件,但是到了上面程序的最后一行,既wncls.(注意“.”)时,不出现想要的下列值。但是我看教程视频都有的。编译正确过后,重新再弄一场,加了“.”后,就出现选择的变量。