主题:帮忙看一下哪错了
#include<Windows.h>
#include<stdio.h>
LRESULT CALLBACK WinlSunProc
(
HWND hwnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow);
{
WNDCLASS wndclas;
wndclas.cbClsExtra=0;
wndclas.cbWndExtra=0;
wndclas.hbrBackground=(HBRUSH)GetStockObject(BLACK_BRUSH);
wndclas.hCursor=LoadCursor(NULL,IDC_CROSS);
wndclas.hIcon=LoadIcon(NULL,IDI_ERROR);
wndclas.hInstance=hInstance;
wndclas.lpfnWndProc=WinSunProc;
wndclas.lpszClassName="sunxin";
wndclas.lpszMenuName=NULL;
wndclas.style=CS_HREDRAW|CS_VREDRAW;
RegisterClass(&wndclas);
HWND hwnd;
hwnd=CreateWindow("sunxin","zijidongshou",WS_OVERLAPEDWINDOW,0,0,500,500,NULL,NULL,hInstance,NULL);
ShowWindow(hwnd,SW_SHOWNORMAL);
UpdateWindow(hwnd);
MSG msg;
while(GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam;
}
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(hwnd,szchar,"char",0);
break;
case WM_LBUTTONDOWN:
MessageBox(hwnd,"mouse clicked","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);
}
return 0;
}
就一个错误找不到郁闷呀
#include<stdio.h>
LRESULT CALLBACK WinlSunProc
(
HWND hwnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow);
{
WNDCLASS wndclas;
wndclas.cbClsExtra=0;
wndclas.cbWndExtra=0;
wndclas.hbrBackground=(HBRUSH)GetStockObject(BLACK_BRUSH);
wndclas.hCursor=LoadCursor(NULL,IDC_CROSS);
wndclas.hIcon=LoadIcon(NULL,IDI_ERROR);
wndclas.hInstance=hInstance;
wndclas.lpfnWndProc=WinSunProc;
wndclas.lpszClassName="sunxin";
wndclas.lpszMenuName=NULL;
wndclas.style=CS_HREDRAW|CS_VREDRAW;
RegisterClass(&wndclas);
HWND hwnd;
hwnd=CreateWindow("sunxin","zijidongshou",WS_OVERLAPEDWINDOW,0,0,500,500,NULL,NULL,hInstance,NULL);
ShowWindow(hwnd,SW_SHOWNORMAL);
UpdateWindow(hwnd);
MSG msg;
while(GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam;
}
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(hwnd,szchar,"char",0);
break;
case WM_LBUTTONDOWN:
MessageBox(hwnd,"mouse clicked","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);
}
return 0;
}
就一个错误找不到郁闷呀