
Win32
LDWJ2016
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
WIN32消息图解
转载 2016-11-04 18:33:21 · 464 阅读 · 0 评论 -
Common Return Types for Windows Functions
Data Type Value to Indicate Failure VOID This function cannot possibly fail. Very few Windows functions have a return type of VOID. BOOL If the...转载 2018-08-08 00:06:37 · 240 阅读 · 0 评论 -
VisualStudio2017密钥(key)
Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDHEnterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF转载 2018-08-10 23:25:06 · 12639 阅读 · 5 评论 -
Using CString
1. Creating CString Objects from Standard C Literal Strings You can assign C-style literal strings to a CString just as you can assign one CString object to another. 1.1)Assign the value of...转载 2018-07-23 23:38:20 · 293 阅读 · 0 评论 -
How to sharing kernel objects across process boundaries
There are three different mechanisms that allow processes to share kernel objects:1. Using object handle inheritance.2. Naming objects.3. Duplicating object handles.转载 2018-06-28 13:04:58 · 190 阅读 · 0 评论 -
How to get number of element of array
strlen(数组名) / strlen(数组名[0])转载 2018-06-26 21:10:29 · 226 阅读 · 0 评论 -
How to get the byte-length of string and number of character of string in Visaul studio
1. Get the byte-length: strlen2. Number of character: _countof转载 2018-06-26 21:08:48 · 210 阅读 · 0 评论 -
Unicode and ANSI Functions in the C Run-Time Library
Like the Windows functions, the C run-time library offers one set of functions to manipulate ANSI characters and strings and another set of functions to manipulate Unicode characters and strings. Howe...转载 2018-06-24 20:07:13 · 194 阅读 · 0 评论 -
How to write code so that it can be compiled using ANSI or Unicode characters and strings
It is possible to write your source code so that it can be compiled using ANSI or Unicode characters and strings. In the WinNT.h header file, the following types and macros are defined:#ifdef UNICODE...转载 2018-06-24 16:09:46 · 203 阅读 · 0 评论 -
匈牙利标记法
前缀 数据类型by BYTE (无符号字符)B 或 f BOOL(int);f表示“flag”cchar 或 WCHAR 或 TCHARclr COLORREFcx,cy int,表示x或y的长度,c表示“count”(计数)dw DWORD(无符号长整型)fn函数h句柄iint (整型)lLONG(长整型)m_ 表示成员变量n short (短整型 或 整型)p指针s 字符串sz以零结...转载 2018-06-24 09:03:48 · 634 阅读 · 0 评论 -
Error Code Fields
Bits: 31-30 29 28 27-16 15-0 ContentsSeverityMicrosoft/customerReservedFacility codeException codeMeaning0=Success1 = Informational2 = Warning3 = Error0 = Microsoft-defined code1 = customer-defined co...转载 2018-06-23 11:30:22 · 257 阅读 · 0 评论 -
Common Return Types for Windows Functions
Data Type Value to Indicate Failure VOID This function cannot possibly fail. Very few Windows functions have a return type of VOID.BOOL If the function fails, the return value is 0; otherwise, the ret...转载 2018-06-23 08:32:22 · 298 阅读 · 0 评论 -
Application Types and Corresponding Entry Points
Your Windows application must have an entry-point function that is called when the application starts running. As a C/C++ developer, there are two possible entry-point functions you can use: int WIN...转载 2018-08-19 15:48:06 · 299 阅读 · 0 评论