在VC++6.0环境中创建win32程序
选择第三个这时可以运行看到hello world了。
程序解析:
#define MAX_LOADSTRING 100 \\定义最大字长
HINSTANCE hInst; \\当前进程资源的句柄
TCHAR szTitle[MAX_LOADSTRING]; \\窗口上方显示的标题
TCHAR szWind...
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// 全局变量:
HINSTANCE hInst; // 当前实例
TCHAR szTitle[MAX_LOADSTRING]; // 标题栏文本
TCHAR szWindowClass[MAX_LOADSTRING]; // 主...
#include "stdafx.h"#include "win32.h"#include "windows.h"#include #define MAX_LOADSTRING 100HWND g_hWnd = NULL;HINSTANCE g_hInst;LRESULT CALLBACK WndP...
分类:
编程语言 时间:
2015-02-06 23:03:09
阅读次数:
250
1 // simpleMFC.cpp : 定义应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include "simpleMFC.h" 6 7 #define MAX_LOADSTRING 100 8 9 // 全局变量: 10 HI...
1 // WINATLTest.cpp : 定义应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include "WINATLTest.h" 6 7 #define MAX_LOADSTRING 100 8 9 // 全局变量: 10 H...
1 #include "stdafx.h" 2 #include "ATLWinTest.h" 3 4 #define MAX_LOADSTRING 100 5 6 // 全局变量: 7 /*HINSTANCE hInst; */ ...
一、资源1、字符串资源 LoadString LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);二、窗口类 1、系统类 The following table describes the system class...
oadstring 编译的时候不关心词法范围:
local i = 0
f = loadstring("i = i + 1")
g = function () i = i + 1 end
这个例子中, 和想象的一样g 使用局部变量i , 然而f 使用全局变量i ; lo...
分类:
其他好文 时间:
2014-11-19 20:28:44
阅读次数:
137
lua序列化支持key类型为string, number支持value类型为string, number, table支持循环引用支持加密序列化支持loadstring反序列化使用示例local t = { a = 1, b = 2}local g = { c = 3, d = 4, t}t.rt....
分类:
其他好文 时间:
2014-11-18 00:16:10
阅读次数:
275
第一章:错误处理 1、UNREFERENCED_PARAMETER的用处 2、LoadString的用法 3、MAKEINTRESOURCE,LoadIcon,LoadCursor的用法 4、RegisterClassEx,CreateWindow,ShowWindow,UpdateWind...