设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 604|回复: 0
打印 上一主题 下一主题

【求助】我的第一个C++窗口程序

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:18:25 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我第一次用C++调用Windows API 来写窗口,但是我很郁闷,,我这个怎么米有窗口啊,,,大哥大们给帮忙看下。谢谢!

程序代码:
#include <windows.h>
#include <stdio.h>
LRESULT CALLBACK WinLogerPro(
  HWND hKeyloger,      // handle to window
  UINT uMsg,      // message identifier
  WPARAM wParam,  // first message parameter
  LPARAM lParam   // second message parameter
);
int WINAPI WinMain(
  HINSTANCE klg,      // handle to current instance
  HINSTANCE hPrevInstance,  // handle to previous instance
  LPSTR lpCmdLine,          // command line
  int nCmdShow              // show state
)
{
    WNDCLASS keyloger;
    keyloger.style=CS_HREDRAW | CS_VREDRAW;
    keyloger.lpfnWndProc=WinLogerPro;
    keyloger.cbClsExtra=0;
    keyloger.cbWndExtra=0;
    keyloger.hInstance=klg;
    keyloger.hIcon=LoadIcon(NULL,IDI_ERROR);
    keyloger.hCursor=LoadCursor(NULL,IDC_CROSS);
    keyloger.hbrBackground=(HBRUSH)GetStockObjec
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 20:27 , Processed in 0.058418 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表