注册 登录
编程论坛 C++教室

新手求助WinMain函数

摘星星的猴 发布于 2010-09-30 16:23, 382 次点击
#include "windows.h"
#include "stdio.h"

LRESULT CallWinSunProc(
  HWND hWnd,              // handle to window
  UINT Msg,               // message
  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,      // pointer to command line
  int nCmdShow          // show state of window
)
{
    WNDCLASS  wndcls;


    wndcls.cbClsExtra=0;
    wndcls.cbWndExtra=0;
    wndcls.hbrBackground=(HBRUSH)GetStockObject(BLACK_BRUSH);
    wndcls.hCursor=LoadCursor(NULL,IDC_CROSS);
    wndcls.hIcon=LoadIcon(NULL,IDI_ERROR);
    wndcls.hInstance=hInstance;
    wndcls.lpfnWndProc=WinSunProc;
    wndcls.lpszClassName="Weixin";
    wndcls.lpszMenuName=NULL;
    wndcls.style=CS_HREDRAW | CS_VREDRAW;
    RegisterClass(&wndcls);

    HWND hwnd;
    hwnd=CreateWindow("Weixin","北京维新科学技术培训中心",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 CallWinSunProc(
  HWND hWnd,              // handle to window
  UINT Msg,               // message
  WPARAM wParam,          // first message parameter
  LPARAM lParam           // second message parameter
)
{
    HDC hdc;
    PAINTSTRUCT ps;
    switch(uMsg)
    {
    case WM_CHAR:
        char szChar[20];
        sprintf(szChar,"char is %d",wParam);
        MessageBox(hwnd,szChar,"Weixin",0);
        break;
    case WM_LBUTTONDOWN:
        MessageBox(hwnd,"nouse clicked","Weixin",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,"是否真的","Weixin",MB_YESNO))
        {
            DestroyWindow(hwnd);
        }
        break;
    case WM_DESTROY:
        PostQuitMessage(0);
        break;
    default:
        return DefWindowProc(hwnd,uMsg,wParam,lParam);

    }
    return 0;
}
这个我跟着孙鑫老师写的程序就一直无法通过,求教各位大侠帮忙
2 回复
#2
minghan03132010-10-08 15:14
小错误很多  给你修改可以运行了  对比一下吧
程序代码:
#include "windows.h"
#include "stdio.h"

LRESULT CALLBACK  CallWinSunProc(
                       HWND hWnd,              // handle to window
                       UINT Msg,               // message
                       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,      // pointer to command line
                   int nCmdShow          // show state of window
                   )
{
    WNDCLASS  wndcls;


    wndcls.cbClsExtra=0;
    wndcls.cbWndExtra=0;
    wndcls.hbrBackground=(HBRUSH)GetStockObject(BLACK_BRUSH);
    wndcls.hCursor=LoadCursor(NULL,IDC_CROSS);
    wndcls.hIcon=LoadIcon(NULL,IDI_ERROR);
    wndcls.hInstance=hInstance;
    wndcls.lpfnWndProc=CallWinSunProc;
    wndcls.lpszClassName="Weixin";
    wndcls.lpszMenuName=NULL;
    wndcls.style=CS_HREDRAW | CS_VREDRAW;
    RegisterClass(&wndcls);

    HWND hwnd;
    hwnd=CreateWindow("Weixin","北京维新科学技术培训中心",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  CallWinSunProc(
                       HWND hWnd,              // handle to window
                       UINT Msg,               // message
                       WPARAM wParam,          // first message parameter
                       LPARAM lParam           // second message parameter
                       )
{
    HDC hdc;
    PAINTSTRUCT ps;
    switch(Msg)
    {
    case WM_CHAR:
        char szChar[20];
        sprintf(szChar,"char is %d",wParam);
        MessageBox(hWnd,szChar,"Weixin",0);
        break;
    case WM_LBUTTONDOWN:
        MessageBox(hWnd,"nouse clicked","Weixin",0);
        HDC hdc;
        hdc=GetDC(hWnd);
        TextOut(hdc,0,50,"计算机编程语言培训",strlen("计算机编程语言培训"));
        ReleaseDC(hWnd,hdc);
        break;
    case WM_PAINT:

        hdc=BeginPaint(hWnd,&ps);
        TextOut(hdc,0,0,"维新培训",strlen("维新培训"));
        EndPaint(hWnd,&ps);
        break;
    case WM_CLOSE:
        if(IDYES==MessageBox(hWnd,"是否真的","Weixin",MB_YESNO))
        {
            DestroyWindow(hWnd);
        }
        break;
    case WM_DESTROY:
        PostQuitMessage(0);
        break;
    default:
        return DefWindowProc(hWnd,Msg,wParam,lParam);

    }
    return 0;
}



[ 本帖最后由 minghan0313 于 2010-10-8 15:15 编辑 ]
#3
cstdio2018-07-18 10:43
C:\collect2.exe    [Error] ld returned 1 exit status
1