| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 382 人关注过本帖
标题:新手求助WinMain函数
只看楼主 加入收藏
摘星星的猴
Rank: 2
来 自:浙江
等 级:论坛游民
帖 子:14
专家分:23
注 册:2010-9-30
结帖率:100%
收藏
 问题点数:0 回复次数:2 
新手求助WinMain函数
#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;
}
这个我跟着孙鑫老师写的程序就一直无法通过,求教各位大侠帮忙
搜索更多相关主题的帖子: WinMain 函数 
2010-09-30 16:23
minghan0313
Rank: 2
等 级:论坛游民
帖 子:15
专家分:31
注 册:2007-5-21
收藏
得分:0 
小错误很多  给你修改可以运行了  对比一下吧
程序代码:
#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 编辑 ]
2010-10-08 15:14
cstdio
Rank: 5Rank: 5
来 自:上海市静安区
等 级:贵宾
威 望:15
帖 子:97
专家分:44
注 册:2018-5-30
收藏
得分:0 
C:\collect2.exe    [Error] ld returned 1 exit status

import random
i=random.randint(100,100000)
print i
2018-07-18 10:43
快速回复:新手求助WinMain函数
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013643 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved