error C2601: 'Winsunproc' : local function definitions are illegal为什么总是出现这个

#include<windows.h>#include<stdio.h>LRESULTCALLBACKWinsunproc(HWNDhwnd,//handletowind... #include <windows.h>
#include <stdio.h>
LRESULT CALLBACK Winsunproc(
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.cbClsExtra=0;
wndcls.cbWndExtra=0;
wndcls.hbrBackground=(HBRUSH)GetStockObject(BLACK_BRUSH);
wndcls.hCursor=LoadCursor(NULL,IDC_APPSTARTING);
wndcls.hIcon=LoadIcon(NULL,IDI_APPLICATION);
wndcls.hInstance=hInstance;
wndcls.lpfnWndProc=Winsunproc;
wndcls.lpszClassName="斩";
wndcls.lpszMenuName=NULL;
wndcls.style=CS_HREDRAW | CS_VREDRAW;
RegisterClass(&wndcls);

HWND hwnd;
hwnd=CreateWindow("斩","砍",WS_OVERLAPPEDWINDOW,
0,0,600,400,NULL,NULL,hInstance,NULL);
ShowWindow(hwnd,SW_SHOWNORMAL);
UpdateWindow(hwnd);
MSG msg;
{
while (GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}
LRESULT CALLBACK Winsunproc(
HWND hWnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam)
{
switch(uMsg)
{
case WM_CHAR:
char szChar[20];
sprintf(szChar,"char code is %d",wParam);
MessageBox(hwdn,szChar,"char",0);
break;
case WM_LBUTTONDOWN:
MessageBox(hwnd,"砍死","message",0);
HDC hdc;
hdc=GetDC(hwnd);
TextOut(hdc,0,50,"砍!",strlen("砍!"));
ReleaseDC(hwnd,hDC);
break;
case WM_PAINT:
HDC hDC;
PAINTSTRUCT ps;
hDC=BeginPaint(hwnd,&ps);
TextOut(hDC,0,0,"敢砍?",strlen("敢砍?"));
EndPaint(hwnd,&ps);
break;
case WM_CLOSE:
if (IDYES==MessageBox(hwnd,"是否真的结束?","message",MB_YESNO))
{
DestroyWindow(hwnd);
}
break:
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hwnd,uMsg,wParam,lParam);
break;
}
}
return 0;
}
展开
 我来答
pigkiller23
推荐于2017-10-06 · TA获得超过1750个赞
知道小有建树答主
回答量:736
采纳率:0%
帮助的人:552万
展开全部
MSG msg;
{
后面的大括号删掉。。。
=>
MSG msg;
while (GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}

另外:。。。。
1.所有的hwnd,注意,w应该是大写的(参数传进来的就是大写,你自己写的)。
2.hdc定义和使用大小写也不一致。
3.break后面是分号。。。
追问
改了还是有错		  break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hWnd,uMsg,wParam,lParam);
}
}
return 0;
}
C:\Users\wangshuilin\Desktop\c++\窗口.cpp(85) : error C2143: syntax error : missing ';' before 'return'
C:\Users\wangshuilin\Desktop\c++\窗口.cpp(86) : error C2143: syntax error : missing ';' before '}'
追答
所有代码
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式