资源简介
win ce 5.0下推箱子游戏源代码,
代码片段和文件信息
// boxman.cpp : 定义应用程序的入口点。
//
#include “stdafx.h“
#include “boxman.h“
#include
#include
#include
#define MAX_LOADSTRING 100
// 全局变量:
HINSTANCE g_hInst; // 当前实例
HWND g_hWndCommandBar; // 命令栏句柄
// 此代码模块中包含的函数的前向声明:
ATOM MyRegisterClass(HINSTANCE LPTSTR);
BOOL InitInstance(HINSTANCE int);
LRESULT CALLBACK WndProc(HWND UINT WPARAM LPARAM);
INT_PTR CALLBACK About(HWND UINT WPARAM LPARAM);
INT_PTR CALLBACK AboutBOXABOUT(HWND UINT WPARAM LPARAM);
int WINAPI WinMain(HINSTANCE hInstance
HINSTANCE hPrevInstance
LPTSTR lpCmdLine
int nCmdShow)
{
MSG msg;
CBoxmanView();
// 执行应用程序初始化:
if (!InitInstance(hInstance nCmdShow))
{
return FALSE;
}
HACCEL hAccelTable;
hAccelTable = LoadAccelerators(hInstance MAKEINTRESOURCE(IDC_BOXMAN));
// 主消息循环:
while (GetMessage(&msg NULL 0 0))
{
if (!TranslateAccelerator(msg.hwnd hAccelTable &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return (int) msg.wParam;
}
//
// 函数: MyRegisterClass()
//
// 目的: 注册窗口类。
//
// 注释:
//
ATOM MyRegisterClass(HINSTANCE hInstance LPTSTR szWindowClass)
{
WNDCLASS wc;
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = WndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInstance;
wc.hIcon = LoadIcon(hInstance MAKEINTRESOURCE(IDI_BOXMAN));
wc.hCursor = 0;
wc.hbrBackground = (HBRUSH) GetStockobject(WHITE_BRUSH);
wc.lpszMenuName = 0;
wc.lpszClassName = szWindowClass;
return RegisterClass(&wc);
}
//
// 函数: InitInstance(HINSTANCE int)
//
// 目的: 保存实例句柄并创建主窗口
//
// 注释:
//
// 在此函数中,我们在全局变量中保存实例句柄并
// 创建和显示主程序窗口。
//
BOOL InitInstance(HINSTANCE hInstance int nCmdShow)
{
HWND hWnd;
TCHAR sztitle[MAX_LOADSTRING]; // 标题栏文本
TCHAR szWindowClass[MAX_LOADSTRING]; // 主窗口类名
g_hInst = hInstance; // 将实例句柄存储在全局变量中
LoadString(hInstance IDS_APP_title sztitle MAX_LOADSTRING);
LoadString(hInstance IDC_BOXMAN szWindowClass MAX_LOADSTRING);
if (!MyRegisterClass(hInstance szWindowClass))
{
return FALSE;
}
hWnd = CreateWindow(szWindowClass sztitle WS_VISIBLE
CW_USEDEFAULT CW_USEDEFAULT CW_USEDEFAULT CW_USEDEFAULT NULL NULL hInstance NULL);
if (!hWnd)
{
return FALSE;
}
ShowWindow(hWnd nCmdShow);
UpdateWindow(hWnd);
if (g_hWndCommandBar)
{
CommandBar_Show(g_hWndCommandBar TRUE);
}
return TRUE;
}
//
// 函数: WndProc(HWND UINT WPARAM LPARAM)
//
// 目的: 处理主窗口的消息。
//
// WM_COMMAND - 处理应用程序菜单
// WM_PAINT - 绘制主窗口
// WM_DESTROY - 发送退出消息并返回
//
//
LRESULT CALLBACK WndProc(HWND hWnd UINT message WPARAM wParam LPARAM lParam)
{
int wmId wmEvent;
PAINTSTRUCT ps;
HDC hdc;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 27443 2009-09-04 16:42 boxman_9.10\boxman\boxman.cpp
文件 1154 2009-09-04 16:23 boxman_9.10\boxman\boxman.h
文件 23558 2005-12-13 20:33 boxman_9.10\boxman\boxman.ico
文件 4373 2009-09-04 17:28 boxman_9.10\boxman\boxman.rc
文件 281 2009-09-04 09:01 boxman_9.10\boxman\boxman.rc2
文件 5904 2009-09-04 09:01 boxman_9.10\boxman\boxman.vcproj
文件 1761 2009-09-04 16:49 boxman_9.10\boxman\boxman.vcproj.ED冯小卫.ed.user
文件 10834 2009-09-04 13:45 boxman_9.10\boxman\map.txt
文件 1807 2009-09-04 09:01 boxman_9.10\boxman\ReadMe.txt
文件 712 2009-09-04 17:28 boxman_9.10\boxman\Resource.h
文件 211 2009-09-04 09:01 boxman_9.10\boxman\stdafx.cpp
文件 1242 2009-09-04 09:01 boxman_9.10\boxman\stdafx.h
文件 43520 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\boxman.exe
文件 41976 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\boxman.obj
文件 3538944 2009-09-04 16:23 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\boxman.pch
文件 445440 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\boxman.pdb
文件 24672 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\boxman.res
文件 5946 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\BuildLog.htm
文件 10825 2005-06-02 11:15 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\map.txt
文件 84339 2009-09-04 16:23 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\stdafx.obj
文件 289792 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\vc80.idb
文件 339968 2009-09-04 16:42 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug\vc80.pdb
文件 10825 2005-06-02 11:15 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\map.txt
文件 7220224 2009-09-04 16:49 boxman_9.10\boxman.ncb
文件 1313 2009-09-04 09:01 boxman_9.10\boxman.sln
文件 74752 2009-09-04 16:49 boxman_9.10\boxman.suo
文件 10825 2005-06-02 11:15 boxman_9.10\map.txt
目录 0 2009-09-04 16:49 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)\Debug
目录 0 2009-09-04 16:49 boxman_9.10\boxman\WindowsCE 5.0 (ARMV4I)
目录 0 2009-09-04 16:49 boxman_9.10\boxman
............此处省略4个文件信息
- 上一篇:GPS、BDS组合伪距单点定位
- 下一篇:表白小程序
相关资源
- 使用ATLAS探测器在s = 13 $$ \\ sqrt {s} =
- 在ATLAS探测器上搜索衰变到增强夸克对
- 搜索在s = 13 TeV pp碰撞中在pp碰撞中产
- 使用ATLAS检测器在s = 13 $$ \\ sqrt {s} =
- 使用ATLAS检测器,在s = 7 TeV的pp碰撞中
- W s Z玻色子对生产横截面在pp碰撞中的
- 使用ATLAS探测器在s = 13 TeV的pp碰撞中用
- 使用ATLAS探测器在s = 8 $$ \\ sqrt {s} =
- 在与ATLAS探测器发生s = 8 TeV pp碰撞的
- 使用ATLAS探测器在s = 7TeV的pp碰撞中区
- 使用ATLAS探测器在13 TeV pp碰撞中搜索轨
- 使用ATLAS探测器在s = 8 TeV的质子-质子
- 使用ATLAS探测器在s = 13 $$ \\ sqrt {s} =
- 使用ATLAS探测器在s = 13 TeV的pp碰撞中搜
- 类似QCD的新领域中的Theta
- 在CERN LHC的pPb碰撞中探索矢量介子光生
- 强子对撞机中光子与强子相互作用中
- 膨胀玻璃通量管中的非平衡轴向电荷
- 从胶子场散射的夸克喷流:从饱和到
- 带有彩色玻璃冷凝液的偶极Wilson线性
- 玻色增强,Liouville有效作用以及p-A碰
- 彩色玻璃冷凝液在小系统碰撞中方位
- 高能分解中的旋转螺旋方法:彩色玻
- CGC因式分解用于质子-核碰撞中正向产
- 大型强子对撞机质子-铅碰撞中的饱和
- 彩色玻璃冷凝物密度矩阵:Lindblad演化
- 相对论重离子对撞机小型系统扫描的
- 彩色玻璃冷凝液的衍射dijet产量和Wi
- Kharzeev-Levin-Nardi模型中的热辐射和包容
- 重子停留在彩色玻璃冷凝物中的时空
评论
共有 条评论