diff --git a/src/docs/javascript/Reference/Global_Objects/Array.html b/src/docs/javascript/Reference/Global_Objects/Array.html index b17fd177..7ce948fd 100644 --- a/src/docs/javascript/Reference/Global_Objects/Array.html +++ b/src/docs/javascript/Reference/Global_Objects/Array.html @@ -79,7 +79,7 @@ new Array(arrayLength)

描述

数组是一种类列表对象,它的原型中提供了遍历和修改元素的相关操作。JavaScript 数组的长度和元素类型都是非固定的。因为数组的长度可随时改变,并且其数据在内存中也可以不连续,所以 JavaScript 数组不一定是密集型的,这取决于它的使用方式。一般来说,数组的这些特性会给使用带来方便,但如果这些特性不适用于你的特定使用场景的话,可以考虑使用类型数组 TypedArray

只能用整数作为数组元素的索引,而不能用字符串。后者称为关联数组。使用非整数并通过方括号点号来访问或设置数组元素时,所操作的并不是数组列表中的元素,而是数组对象的属性集合上的变量。数组对象的属性和数组元素列表是分开存储的,并且数组的遍历和修改操作也不能作用于这些命名属性。

-

访问数组元素

+

访问数组元素

JavaScript 数组的索引是从0开始的,第一个元素的索引为0,最后一个元素的索引等于该数组的长度减1。如果指定的索引是一个无效值,JavaScript 数组并不会报错,而是会返回 undefined

var arr = ['this is the first element', 'this is the second element', 'this is the last element'];
 console.log(arr[0]);              // 打印 'this is the first element'
@@ -125,7 +125,7 @@ console.log(promise['var']);
 
 
 
 
-

length 和数字下标之间的关系

+

length 和数字下标之间的关系

JavaScript 数组的 length 属性和其数字下标之间有着紧密的联系。数组内置的几个方法(例如 joinsliceindexOf 等)都会考虑 length 的值。另外还有一些方法(例如 pushsplice 等)还会改变 length 的值。

var fruits = [];
 fruits.push('banana', 'apple', 'peach');
diff --git a/src/docs/javascript/Reference/Global_Objects/String/slice.html b/src/docs/javascript/Reference/Global_Objects/String/slice.html
index c64332ca..e85e1a61 100644
--- a/src/docs/javascript/Reference/Global_Objects/String/slice.html
+++ b/src/docs/javascript/Reference/Global_Objects/String/slice.html
@@ -3,7 +3,7 @@
 

slice() 方法提取一个字符串的一部分,并返回一新的字符串。

语法

str.slice(beginSlice[, endSlice])
-

参数

+

参数

beginSlice
从该索引(以 0 为基数)处开始提取原字符串中的字符。如果值为负数,会被当做 sourceLength + beginSlice 看待,这里的sourceLength 是字符串的长度 (例如, 如果beginSlice 是 -3 则看作是: sourceLength - 3)
@@ -18,13 +18,13 @@

例1:str.slice(1, 4) 提取新字符串从第二个字符到第四个 (字符索引值为 1, 2, 和 3)。

例2:str.slice(2, -1) 提取第三个字符到倒数第一个字符。

例子

-

使用 slice() 创建一个新的字符串

+

使用 slice() 创建一个新的字符串

下面例子使用 slice() 来创建新字符串:

var str1 = 'The morning is upon us.';
 var str2 = str1.slice(4, -2);
 
 console.log(str2); // OUTPUT: morning is upon u
-

给 slice() 传入负值索引

+

给 slice() 传入负值索引

下面的例子在 slice() 使用了负值索引:

var str = 'The morning is upon us.';
 str.slice(-3);     // returns 'us.'
diff --git a/src/docs/javascript/Reference/Operators/typeof.html b/src/docs/javascript/Reference/Operators/typeof.html
index 0f66acad..6653b6fe 100644
--- a/src/docs/javascript/Reference/Operators/typeof.html
+++ b/src/docs/javascript/Reference/Operators/typeof.html
@@ -9,7 +9,7 @@
 or
 typeof (operand)
 
-

参数

+

参数

operand 是一个表达式,表示对象或原始值,其类型将被返回。

括号是可选的。

描述

@@ -109,7 +109,7 @@ typeof function(){} === 'function'; typeof class C{} === 'function' typeof Math.sin === 'function'; typeof new Function() === 'function';
-

null

+

null

typeof null === 'object'; // 从一开始出现JavaScript就是这样的
 
 
diff --git a/src/docs/javascript/Reference/Statements/for...in.html b/src/docs/javascript/Reference/Statements/for...in.html index 14673b7c..b34b9d55 100644 --- a/src/docs/javascript/Reference/Statements/for...in.html +++ b/src/docs/javascript/Reference/Statements/for...in.html @@ -17,13 +17,13 @@

删除,添加或者修改属性

for...in 循环以任意序迭代一个对象的属性(请参阅delete运算符,了解为什么不能依赖于迭代的表面有序性,至少在跨浏览器设置中)。如果一个属性在一次迭代中被修改,在稍后被访问,其在循环中的值是其在稍后时间的值。一个在被访问之前已经被删除的属性将不会在之后被访问。在迭代进行时被添加到对象的属性,可能在之后的迭代被访问,也可能被忽略。

通常,在迭代过程中最好不要在对象上进行添加、修改或者删除属性的操作,除非是对当前正在被访问的属性。这里并不保证是否一个被添加的属性在迭代过程中会被访问到,不保证一个修改后的属性(除非是正在被访问的)会在修改前或者修改后被访问,不保证一个被删除的属性将会在它被删除之前被访问。

-

数组迭代和 for...in

+

数组迭代和 for...in

提示:for...in不应该用于迭代一个 Array,其中索引顺序很重要。

数组索引只是具有整数名称的枚举属性,并且与通用对象属性相同。不能保证for ... in将以任何特定的顺序返回索引。for ... in循环语句将返回所有可枚举属性,包括非整数类型的名称和继承的那些。

因为迭代的顺序是依赖于执行环境的,所以数组遍历不一定按次序访问元素。因此当迭代访问顺序很重要的数组时,最好用整数索引去进行for循环(或者使用 Array.prototype.forEach()for...of 循环)。

-

仅迭代自身的属性

+

仅迭代自身的属性

如果你只要考虑对象本身的属性,而不是它的原型,那么使用 getOwnPropertyNames() 或执行 hasOwnProperty() 来确定某属性是否是对象本身的属性(也能使用propertyIsEnumerable)。或者,如果你知道不会有任何外部代码干扰,您可以使用检查方法扩展内置原型。

示例

下面的函数接受一个对象作为参数。被调用时迭代传入对象的所有可枚举属性然后返回一个所有属性名和其对应值的字符串。

diff --git a/src/docs/javascript/Reference/Statements/function.html b/src/docs/javascript/Reference/Statements/function.html index 702c793a..7c85ef7a 100644 --- a/src/docs/javascript/Reference/Statements/function.html +++ b/src/docs/javascript/Reference/Statements/function.html @@ -27,7 +27,7 @@

函数也可以被表达式创建( function expression )

函数可以被有条件来声明,这意味着,在一个 if 语句里,函数声明是可以嵌套的。有的浏览器会将这种有条件的声明看成是无条件的声明,无论这里的条件是true还是false,浏览器都会创建函数。因此,它们不应该被使用。

默认情况下,函数是返回 undefined 的。想要返回一个其他的值,函数必须通过一个 return 语句指定返回值。

-

有条件的创建函数

+

有条件的创建函数

函数可以被有条件来声明,这意味着,函数声明可能出现在一个 if 语句里,但是,这种声明方式在不同的浏览器里可能有不同的效果。因此,不应该在生成环境代码中使用这种声明方式,应该使用函数表达式来代替。

 

var hoisted = "foo" in this;
diff --git a/src/docs/win32api/1/AdjustWindowRectEx.html b/src/docs/win32api/1/AdjustWindowRectEx.html
index 584d9132..beba9721 100644
--- a/src/docs/win32api/1/AdjustWindowRectEx.html
+++ b/src/docs/win32api/1/AdjustWindowRectEx.html
@@ -1,6 +1,6 @@
 
 
-
+
 

函数功能

该函数依据所需客户矩形大小,计算需要的窗口矩形的大小。计算出的窗口矩形随后可以传送给CreateWindowEx函数,用于创建一个客户区所需大小的窗口。

函数原型

BOOL AdjustWindowRectEX(LPRECT lpRect,DWORD dwStyte;BOOL bMenu;DWORD dwExStyle);

参数

diff --git a/src/docs/win32api/1/AdlustWindowRect.html b/src/docs/win32api/1/AdlustWindowRect.html index 6ed47965..5c0cd1f8 100644 --- a/src/docs/win32api/1/AdlustWindowRect.html +++ b/src/docs/win32api/1/AdlustWindowRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数依据所需客户矩形的大小,计算需要的窗日矩形的大小。计算出的窗口矩形随后可以传递给CreateWindow函数,用于创建一个客户区所需大小的窗口。

函数原型

BOOL AdjustWindowRect(LPRECT lpRect ,DWORD dwStyle,BOOL bMENU);

参数

diff --git a/src/docs/win32api/1/AnImateWindow.html b/src/docs/win32api/1/AnImateWindow.html index 84de607c..57e752ff 100644 --- a/src/docs/win32api/1/AnImateWindow.html +++ b/src/docs/win32api/1/AnImateWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数能在显示与隐藏窗口时能产生特殊的效果。有两种类型的动画效果:滚动动画和滑动动画。

函数原型

BOOL AnimateWindow(HWND hWnd,DWORD dwTime,DWORD dwFlags);

参数

diff --git a/src/docs/win32api/1/AnyPopup.html b/src/docs/win32api/1/AnyPopup.html index 698ece1a..c585da23 100644 --- a/src/docs/win32api/1/AnyPopup.html +++ b/src/docs/win32api/1/AnyPopup.html @@ -1,6 +1,6 @@ - +

函数功能

该函数指出一个被属窗口,可见窗口,顶级弹出窗口,或层叠窗日是否在屏幕上存在。这个函数搜索整个屏幕,而不仅仅搜索应用程序的客户区。

函数原型

BOOL AnyPopup(VOID)

参数

无。
diff --git a/src/docs/win32api/1/ArrangelconlcWindows.html b/src/docs/win32api/1/ArrangelconlcWindows.html index fd4ae5b3..9f8a1cdb 100644 --- a/src/docs/win32api/1/ArrangelconlcWindows.html +++ b/src/docs/win32api/1/ArrangelconlcWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数安排指定父窗口的各个最小化(图标化)子窗口。

函数原型

UNIT ArrangelconicWindows(HWND hWnd):

参数

diff --git a/src/docs/win32api/1/BeginDeferWindowPos.html b/src/docs/win32api/1/BeginDeferWindowPos.html index 1fa25b52..bc8a942e 100644 --- a/src/docs/win32api/1/BeginDeferWindowPos.html +++ b/src/docs/win32api/1/BeginDeferWindowPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为一个多窗口位置结构分配内存并且返回该结构的句柄。

函数原型

HDWP BeginDeferWindowPos(int nNumWindows);

参数

diff --git a/src/docs/win32api/1/BeginUpdateResource.html b/src/docs/win32api/1/BeginUpdateResource.html index 68404914..1e3cafaa 100644 --- a/src/docs/win32api/1/BeginUpdateResource.html +++ b/src/docs/win32api/1/BeginUpdateResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回一个可被UpdateResource函数使用的句柄以便在一个可执行文件中增加、删除或替换资源。

函数原型

HANDLE BeginUpdateResource(LPCTSTR pFileName,BOOL bDeleteExistingResources);

参数

diff --git a/src/docs/win32api/1/BroadcastSystemMessage.html b/src/docs/win32api/1/BroadcastSystemMessage.html index 9dfcbb55..9fe2de68 100644 --- a/src/docs/win32api/1/BroadcastSystemMessage.html +++ b/src/docs/win32api/1/BroadcastSystemMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数发送消息给指定的接受者。接受者可以是一个应用程序、安装驱动器、网络驱动器、系统级设备驱动器或这些系统组件的组合。

函数原型

long BroadcastSystemMessage(DWORD dwFIags,LPDWORD IpdwRecipients,UINT UiMessage,WPARAMwParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/BromgWindowToTop.html b/src/docs/win32api/1/BromgWindowToTop.html index 91b589e2..a35cdb2c 100644 --- a/src/docs/win32api/1/BromgWindowToTop.html +++ b/src/docs/win32api/1/BromgWindowToTop.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的窗口设置到Z序的顶部。如果窗口为顶层窗口,则该窗口被激活;如果窗口为了窗口,则相应的顶级父窗口被激活。

函数原型

B00L BringWindowToTop(HWND,hWnd);

参数

diff --git a/src/docs/win32api/1/CascadeWindows.html b/src/docs/win32api/1/CascadeWindows.html index 7742396b..d4243dd9 100644 --- a/src/docs/win32api/1/CascadeWindows.html +++ b/src/docs/win32api/1/CascadeWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数层叠排列指定父窗口的各指定子窗口。

函数原型

WORD WINAPI CascadeWihdows(HWND hWndParent,UNIT wHow,CONST RECT*lpRect,UNIT cKids, Const HWND FA*lpKids);

参数

diff --git a/src/docs/win32api/1/ChildWindowFromaPoint.html b/src/docs/win32api/1/ChildWindowFromaPoint.html index 9ed446a4..47e683db 100644 --- a/src/docs/win32api/1/ChildWindowFromaPoint.html +++ b/src/docs/win32api/1/ChildWindowFromaPoint.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定属于某一父窗口的哪一个子窗口(如果存在的话)包含一个指定的点。

函数原型

HWND ChildWindowFromaPoint(HWND hWndParent.POINT Point):
Parent:父窗口句柄。
diff --git a/src/docs/win32api/1/ChildWindowFromaPointEx.html b/src/docs/win32api/1/ChildWindowFromaPointEx.html index 980ae1ee..4d5638f7 100644 --- a/src/docs/win32api/1/ChildWindowFromaPointEx.html +++ b/src/docs/win32api/1/ChildWindowFromaPointEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定属于父窗口的哪一个子窗口(如果存在的话)包含着指定的点。该函数可以忽略不可见的、禁止的和透明的子窗口。

函数原型

HWND ChidWindowFromaPointEx(HWND hwndParent,POINT pt,UNIT uFlags);

参数

diff --git a/src/docs/win32api/1/CloseWindow.html b/src/docs/win32api/1/CloseWindow.html index 7ee0549d..e646c958 100644 --- a/src/docs/win32api/1/CloseWindow.html +++ b/src/docs/win32api/1/CloseWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数最小化指定的窗口,但并不销毁该窗口。

函数原型

BOOL CloseWindow(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/CopyImage.html b/src/docs/win32api/1/CopyImage.html index 27eb5120..282c93eb 100644 --- a/src/docs/win32api/1/CopyImage.html +++ b/src/docs/win32api/1/CopyImage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个新的图像(图标、光标、位图)并复制该指定图像的属性到新的图像。若有必要,该函数将伸展位值以填满新图像所需要的尺寸。

函数原型

HANDLE CopyImage(HANDLE hlmage,UjNT uTyPe,int cxDesired,int cyDesired,UINT fuFlags)

参数

diff --git a/src/docs/win32api/1/Create Window.html b/src/docs/win32api/1/Create Window.html index 0d5fe4da..2a9b7394 100644 --- a/src/docs/win32api/1/Create Window.html +++ b/src/docs/win32api/1/Create Window.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个重叠式窗口、弹出式窗口或子窗口。它指定窗口类,窗口标题,窗口风格,以及窗口的初始位置及大小(可选的)。该函数也指定该窗口的父窗口或所属窗口(如果存在的话),及窗口的菜单。若要使用除CreateWindow函数支持的风格外的扩展风格,则使用CreateWindowEx函数代替CreateWindow函数。

函数原型

HWND CreateWindow(LPCTSTR lpClassName,LPCTSTR lpWindowName,DWORD dwStyle,int x,int y,int nWidth,int nHeight,HWND hWndParent,HMENU hMenu,HANDLE hlnstance,LPVOID lpParam);

参数

diff --git a/src/docs/win32api/1/CreateMDIWindow.html b/src/docs/win32api/1/CreateMDIWindow.html index e01f54fb..aaa82cc3 100644 --- a/src/docs/win32api/1/CreateMDIWindow.html +++ b/src/docs/win32api/1/CreateMDIWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个多文档接口MDI的子窗口。

函数原型

HWND GreateMDIWindow(LPTSTR IpClassName,LPTSTR IpWindowName,LPTSTR IpWindowName,DWORD dwStyle,int X,int Y,intn Width,int nHeight,HWND hWndParent,HINSTANCE hlnstance,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/CreateWindowEx.html b/src/docs/win32api/1/CreateWindowEx.html index a9721dbf..9190cfee 100644 --- a/src/docs/win32api/1/CreateWindowEx.html +++ b/src/docs/win32api/1/CreateWindowEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个具有扩展风格的重叠式窗口、弹出式窗口或子窗口,其他与 CreateWindow函数相同。关于创建窗口和其他参数的内容,请参看CreateWindowEx。

函数原型

HWND CreateWindowEx(DWORD dwExStle,LPCTSTR IpClassName,LPCTSTR lpWindowName,DWORD dwStyle,int x,int y,int nWidth,int nHeight,HWND hWndParent,HMENUhMenu,HANDLE hlnstance,LPVOIDlpParam);
diff --git a/src/docs/win32api/1/DefFrameProc.html b/src/docs/win32api/1/DefFrameProc.html index c8964217..784f11da 100644 --- a/src/docs/win32api/1/DefFrameProc.html +++ b/src/docs/win32api/1/DefFrameProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对任何多文档接口(MDI)框架窗日的窗口过程不处理的窗口消息提供缺省处理。窗口过程不能明确处理的所有窗口消息必须通过DefFrameProc函数处理,而不是通过DefWindowProc函数。

函数原型

LRESULT DefFrameProc(HWND hWnd,HWND hWnd,HWND hWndMDIClient,UINT uMsg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/DefMDIChildProc.html b/src/docs/win32api/1/DefMDIChildProc.html index fbe7d328..bfe92470 100644 --- a/src/docs/win32api/1/DefMDIChildProc.html +++ b/src/docs/win32api/1/DefMDIChildProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对任何多文档接口(MDI)子窗口的窗口过程不能处理的窗口消息提供缺省处理。窗口过程不能处理的窗口消息必须传递给DefMDIChildProc函数,而不是DefWindowProc函数。

函数原型

LRESULT DDMDIChildProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM IParam)

参数

diff --git a/src/docs/win32api/1/DeferWindowPos.html b/src/docs/win32api/1/DeferWindowPos.html index d2354263..5b987ca2 100644 --- a/src/docs/win32api/1/DeferWindowPos.html +++ b/src/docs/win32api/1/DeferWindowPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定的窗口更新指定的多窗口位置结构,然后函数返回该更新结构的句柄。EndDeferWindowPos函数使用该结构内的信息同时改变一些窗口的位置和大小。该结构由BeginDeferWindowPos函数创建。
函数原型:HWND DeferWindowPos(HDWP hWinPoslnfo,HWND hWnd,HWND hWndlnsertAffer, int x,int y, int cx, int Cy,UNIT uFags);

参数

diff --git a/src/docs/win32api/1/DestroyWindow.html b/src/docs/win32api/1/DestroyWindow.html index 37158fda..bd30c90c 100644 --- a/src/docs/win32api/1/DestroyWindow.html +++ b/src/docs/win32api/1/DestroyWindow.html @@ -1,6 +1,6 @@ - +

函数功能

是与函数EnumChilWindows一起使用的由应用程序定义的回调函数。它接收子窗口句柄。类型 WNDENUMOROC定义了指向这个回调函数的指针。EnumChildProc是一个应用程序定义的函数名的位置标志符。

函数原型

BOOL CALLBACK EnumChildProc(HWND hWnd,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/DispatchMessage.html b/src/docs/win32api/1/DispatchMessage.html index 3e09856c..10a9be93 100644 --- a/src/docs/win32api/1/DispatchMessage.html +++ b/src/docs/win32api/1/DispatchMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数调度一个消息给窗口程序。通常调度从GetMessage取得的消息。

函数原型

LONG DispatchMessage(CONST MSG★lpmsg);

参数

diff --git a/src/docs/win32api/1/DragDetect.html b/src/docs/win32api/1/DragDetect.html index 50c4ed48..96d71e09 100644 --- a/src/docs/win32api/1/DragDetect.html +++ b/src/docs/win32api/1/DragDetect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数捕获并跟踪鼠标的移动直到用户松开左键、按下Esc。键或者将鼠标移动到围绕指定点的“拖动矩形”之外。拖动矩形的宽和高由函数GetSystemMetrics返回的SM_CXDRAG或SM_CYDRAG确定。

函数原型

BOOL DragDetect(HWND hwnd,POINT pt);

参数

diff --git a/src/docs/win32api/1/EnableScrollBar.html b/src/docs/win32api/1/EnableScrollBar.html index d59ebdcf..11816373 100644 --- a/src/docs/win32api/1/EnableScrollBar.html +++ b/src/docs/win32api/1/EnableScrollBar.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以激活一个或两个滚动条箭头或是使其失效。

函数原型

BOOL EnableScrollBar(HWND hWnd,UINT WSBflags,UINT wArrows);

参数

diff --git a/src/docs/win32api/1/EnableWindow.html b/src/docs/win32api/1/EnableWindow.html index 9019d85b..e1845cbf 100644 --- a/src/docs/win32api/1/EnableWindow.html +++ b/src/docs/win32api/1/EnableWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数允许或禁止指定的窗口或控制接受鼠标输入或键盘输入。当输入被禁止时窗口不能接收鼠标单击和按键等类输入;当输入允许时,窗口接受所有的输入。

函数原型

BOOL EnableWindow(HWND hWnd,BOOL bEndble);

参数

diff --git a/src/docs/win32api/1/EndDeferWindowPos.html b/src/docs/win32api/1/EndDeferWindowPos.html index f3aa897d..0b81425e 100644 --- a/src/docs/win32api/1/EndDeferWindowPos.html +++ b/src/docs/win32api/1/EndDeferWindowPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在一个单一的屏幕刷新周期内同时更新一个或多个窗口的位置和大小。

函数原型

BOOL EndDeferWindowPos( HWND hWinPoslnfo);
参数;
diff --git a/src/docs/win32api/1/EndUpdateResource.html b/src/docs/win32api/1/EndUpdateResource.html index 56626989..1f0fb5f8 100644 --- a/src/docs/win32api/1/EndUpdateResource.html +++ b/src/docs/win32api/1/EndUpdateResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数终止在可执行文件中的资源更新。

函数原型

BOOL EndUpdateResource(HANDLE hUpdate,BOOL fDiscard);

参数

diff --git a/src/docs/win32api/1/EnumChildProc.html b/src/docs/win32api/1/EnumChildProc.html index 62ab2940..a0524892 100644 --- a/src/docs/win32api/1/EnumChildProc.html +++ b/src/docs/win32api/1/EnumChildProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是由应用程序定义的,与函数EnumChildWindows一起使用的回调函数。它接收子窗口句柄。类型WNDENUMPROC定义了一个指向回调函数的指针。EnumChildProc是一个应用程序定义的函数名的位置标志符。

函数原型

BOOL CALLBACK EnumChildProc(HWND hwnd,LPARAM ItParam);

参数

diff --git a/src/docs/win32api/1/EnumChildProcWORD.html b/src/docs/win32api/1/EnumChildProcWORD.html index 2b451dd3..b25bd16c 100644 --- a/src/docs/win32api/1/EnumChildProcWORD.html +++ b/src/docs/win32api/1/EnumChildProcWORD.html @@ -1,6 +1,6 @@ - + {dwThreadld,WNDENUMROCIpfn,LPARAMIPam};

参数

dwThreadld:标识将被列举窗口的线程。
diff --git a/src/docs/win32api/1/EnumResLangProc.html b/src/docs/win32api/1/EnumResLangProc.html index c74fc3ba..c9976f58 100644 --- a/src/docs/win32api/1/EnumResLangProc.html +++ b/src/docs/win32api/1/EnumResLangProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个用户定义的和EnumResourceLanguages函数一起使用的回调函数。它接收资源语言。ENUMRESLANGPROC类型定义指向该响应函数的指针。EnumResLangProc是用户定义的函数名称的占位符。

函数原型

BOOL CALLBACK EnumResLangProc(HANDLE hModule,LPCTSTR IPszType, LPCTSTR IpszName,WORDwlDLanguage,LONG IParam);

参数

diff --git a/src/docs/win32api/1/EnumResNameProc.html b/src/docs/win32api/1/EnumResNameProc.html index 0a426387..207ef434 100644 --- a/src/docs/win32api/1/EnumResNameProc.html +++ b/src/docs/win32api/1/EnumResNameProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个用户定义的和EnumResourceNames函数一起使用的回调函数。ENUMRESNAMEPROC类型定义一个指向该回调函数的指针。EnumResNameProc是用户定义函数名的占位符。

函数原型

BOOL CALLBACK EnumResNameProc(HANDL hModue.LPCTSTR haszTyPe,LPTSTR IPszName,LONGIParam);
参数:
diff --git a/src/docs/win32api/1/EnumResTypeProc.html b/src/docs/win32api/1/EnumResTypeProc.html index ca48d4b1..e876ec15 100644 --- a/src/docs/win32api/1/EnumResTypeProc.html +++ b/src/docs/win32api/1/EnumResTypeProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个用户定义的和EnumResourceTypes函数一起使用的回调函数。它接收资源类型。EnumResTypeProc类型定义一个指向这个回调函数的指针。EnumResTypeProc是这个用户定义函数名称的占位符。

函数原型

BOOL CALLBACK EnumResTyPeProc(HANDLE hModue,LPTSTR lpszType,LONG IParam);

参数

diff --git a/src/docs/win32api/1/EnumResourceLanguages.html b/src/docs/win32api/1/EnumResourceLanguages.html index 08ac6846..1f9a2ba2 100644 --- a/src/docs/win32api/1/EnumResourceLanguages.html +++ b/src/docs/win32api/1/EnumResourceLanguages.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为每个指定类型和名称的资源搜索模块,并且向定义的回调函数传递所搜寻到的每种资源语言。
函数原型;BOOL EnumResourceLanguages(HMODULE hModule,LPCTSTR lpType,LPCTSTR IpName,ENUMRESthNGPROC lpEnumFunc,LONG IParam);

参数

diff --git a/src/docs/win32api/1/EnumResourceNames.html b/src/docs/win32api/1/EnumResourceNames.html index 6e842c94..ecc38d76 100644 --- a/src/docs/win32api/1/EnumResourceNames.html +++ b/src/docs/win32api/1/EnumResourceNames.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为每个指定类型的资源搜寻模块,并将每个查找到的资源名称传递给回调函数。

函数原型

BOOL EnumResourceNames(HINSTANCE hModue,LPCTSTR lpszType,ENUMRESNAMEPROC lpEnumFunc,LONG IParam);

参数

hModule:处理包含被列举资源名称的可执行文件的模块。如果这个参数为NULL,那么函数将在模块中列举出创建当前过程的资源名称。
diff --git a/src/docs/win32api/1/EnumResourceTypes.html b/src/docs/win32api/1/EnumResourceTypes.html index 013c136b..4a55c93d 100644 --- a/src/docs/win32api/1/EnumResourceTypes.html +++ b/src/docs/win32api/1/EnumResourceTypes.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为资源搜寻模块并且将它找到的每个资源类型传递给用户定义的回调函数。

函数原型

BOOL EnumResourceTypes(HMODULE hModule,ENUMRESTYPEPROC lpEnumFunc,LONG IParam);

参数

diff --git a/src/docs/win32api/1/EnumTaskWindows.html b/src/docs/win32api/1/EnumTaskWindows.html index b2fa81cf..0ee3de5e 100644 --- a/src/docs/win32api/1/EnumTaskWindows.html +++ b/src/docs/win32api/1/EnumTaskWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已经过时,由EnumThreadwindows函数取代它。 diff --git a/src/docs/win32api/1/EnumThreadWndProc.html b/src/docs/win32api/1/EnumThreadWndProc.html index 7e665738..d698d57d 100644 --- a/src/docs/win32api/1/EnumThreadWndProc.html +++ b/src/docs/win32api/1/EnumThreadWndProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数枚举所有与一个线程相关联的非子窗口,办法是先将句柄传送给每一个窗口,随后传送给应用程序定义的回调函数。EnumThreadWindows函数继续直到所有窗口枚举完为止或回调函数返回FALSE为止。要枚举一个特定窗口的所有子窗口,使用EnumChildWindows函数。

函数原型

BOOL EnumThreadWindows(DWORD dwThreadld,WNDENUMPROClpfn,LPARAMlparam);

参数

diff --git a/src/docs/win32api/1/EnumTreadWindows.html b/src/docs/win32api/1/EnumTreadWindows.html index c900b8ea..fbebb17d 100644 --- a/src/docs/win32api/1/EnumTreadWindows.html +++ b/src/docs/win32api/1/EnumTreadWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数枚举所有与一个线程有关的非子窗口。办法是先将句柄传给每一个窗口,随后传送给应用程序定义的回调函数。EnumThreadWindows函数继续到所有窗口枚举完为止或回调函数返回FALSE为止。要枚举一个特定窗口的所有子窗口;使用EnumChjdwjndows函数。

函数原型

BOOL EnumThreadWindows{D

函数功能

该函数销毁指定的窗口。该函数发送WS_DESTROY,WS_NCDESTROY消息到窗口中以撤消该窗口并且将键盘焦点移开。该函数也销毁窗口菜单,刷新线程消息队列,销毁计时器,删除剪贴板的所有权,并断开剪贴板视窗链接(如果窗口在视窗链接的顶端)。
如果指定的窗口是父窗口或所有者窗口,DestroyWindow在销毁父窗口或所有者窗口时自动销毁相关的子窗口和从属窗口。该函数首先销毁相关联的子窗口和从属窗口,然后销毁父窗口和所有者窗口。
diff --git a/src/docs/win32api/1/EnumWindows.html b/src/docs/win32api/1/EnumWindows.html index 69037b2c..34da702d 100644 --- a/src/docs/win32api/1/EnumWindows.html +++ b/src/docs/win32api/1/EnumWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数枚举所有屏幕上的顶层窗口,办法是先将句柄传给每一个窗口,然后再传送给应用程序定义的回调函数。EnumThreadWindows函数继续到所有顶层窗口枚举完为止或回调函数返回FALSE为止

函数原型

BOOL EnumWindows(WNDENUMPROC lpEnumFunc,LPARAM lParam);

参数

lpEnumFunc:指向一个应用程序定义的回调数指针,请参看EnumWindowsProc。
diff --git a/src/docs/win32api/1/EnumWindowsProc.html b/src/docs/win32api/1/EnumWindowsProc.html index 883570c2..05b08c70 100644 --- a/src/docs/win32api/1/EnumWindowsProc.html +++ b/src/docs/win32api/1/EnumWindowsProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个与EnumWindows或EnumDesktopWindows一起使用的应用程序定义的回调函数。它接收顶层窗口句柄。WNDENUMPROC定义一个指向这个回调函数的指针。EnumWindowsProc是应用程序定义函数名的位置标志符。

函数原型

BOOL CALLBACK EnumWindowsProc(HWND hwnd,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/FindResourceEx.html b/src/docs/win32api/1/FindResourceEx.html index b2583fe7..b4f3fd3e 100644 --- a/src/docs/win32api/1/FindResourceEx.html +++ b/src/docs/win32api/1/FindResourceEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定模块中指定类型、名称及语言的资源所在位置。

函数原型

HRSRC FindResourceEx(HXODULE hModule,LPCTSTR lpType,LPCTSTR lpName,WORD wLanguage);

参数

diff --git a/src/docs/win32api/1/FindWindow.html b/src/docs/win32api/1/FindWindow.html index b5ce8e29..eefae67b 100644 --- a/src/docs/win32api/1/FindWindow.html +++ b/src/docs/win32api/1/FindWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得一个顶层窗口的句柄,该窗口的类名和窗口名与给定的字符串相匹配。这个函数不查找子窗口。在查找时不区分大小写。
函数型:HWND FindWindow(LPCTSTR IpClassName,LPCTSTR IpWindowName);

参数

diff --git a/src/docs/win32api/1/FlndResource.html b/src/docs/win32api/1/FlndResource.html index a665adb1..25c53272 100644 --- a/src/docs/win32api/1/FlndResource.html +++ b/src/docs/win32api/1/FlndResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定模块中指定类型和名称的资源所在位置。

函数原型

HRSRC FindResource(HMODULE hModule,LPCTSTR lpName,LPCTSTR lpType);

参数

diff --git a/src/docs/win32api/1/FlndWindowEx .html b/src/docs/win32api/1/FlndWindowEx .html index 3c9b944a..93b76b1e 100644 --- a/src/docs/win32api/1/FlndWindowEx .html +++ b/src/docs/win32api/1/FlndWindowEx .html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得一个窗口的句柄,该窗口的类名和窗口名与给定的字符串相匹配。这个函数查找子窗口,从排在给定的子窗口后面的下一个子窗口开始。在查找时不区分大小写。

函数原型

HWND FindWindowEx(HWND hwndParent,HWND hwndChildAfter,LPCTSTR lpszClass,LPCTSTR lpszWindow);
参数;
diff --git a/src/docs/win32api/1/FreeResource.html b/src/docs/win32api/1/FreeResource.html index 3a6dc914..75a094bb 100644 --- a/src/docs/win32api/1/FreeResource.html +++ b/src/docs/win32api/1/FreeResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已过时。它为16位的基于Win32的应用程序提供了一个简单的端口。对于Win32应用程序(32位)没有必要释放用LoadResource函数装载资源。由LoadResource所获得的资源随着被装载模块的卸载自动被释放。但是,为了保留内存减少的程序工作设置所占空间大小,必须通过调用下列表中的函数以释放加速器表、位图、光标、图标以及菜单所占的内存资源。
加速器表:DestroyAcceleratorTable;位图:DeleteObject;光标:DestroyCursor;
图标:Destroylcon;菜单:DestroyMenu。
diff --git a/src/docs/win32api/1/GetCapture.html b/src/docs/win32api/1/GetCapture.html index 7d84fd13..e4aab47d 100644 --- a/src/docs/win32api/1/GetCapture.html +++ b/src/docs/win32api/1/GetCapture.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得捕获了鼠标的窗口(如果存在)的句柄。在同一时刻,只有一个窗口能捕获鼠标;此时,该窗口接收鼠标的输入,无论光标是否在其范围内。

函数原型

HWND GetCapture(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetClientRect .html b/src/docs/win32api/1/GetClientRect .html index 37131ef8..9337492c 100644 --- a/src/docs/win32api/1/GetClientRect .html +++ b/src/docs/win32api/1/GetClientRect .html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取窗口客户区的坐标。客户区坐标指定客户区的左上角和右下角。由于客户区坐标是相对子窗口客户区的左上角而言的,因此左上角坐标为(0,0)

函数原型

BOOL GetClientRect(HWND hWnd,LPRECT lpRect);

参数

diff --git a/src/docs/win32api/1/GetDesktopWindow.html b/src/docs/win32api/1/GetDesktopWindow.html index e0792acf..65c9e8fd 100644 --- a/src/docs/win32api/1/GetDesktopWindow.html +++ b/src/docs/win32api/1/GetDesktopWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回桌面窗口的句柄。桌面窗口覆盖整个屏幕。桌面窗口是一个要在其上绘制所有的图标和其他窗口的区域。

函数原型

HWND GetDesktopWindow(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetDoubleCllckTime.html b/src/docs/win32api/1/GetDoubleCllckTime.html index c215bdfa..4e8b83e5 100644 --- a/src/docs/win32api/1/GetDoubleCllckTime.html +++ b/src/docs/win32api/1/GetDoubleCllckTime.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得鼠标的当前双击时间。一次双击是指对鼠标键的两次连击,第一次击键后在指定时间内击第二次。双击时间是指在双击中,第一次击键和第二次击键之间的最大毫秒数。

函数原型

UINT GetDoubleClickTime(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetForegroundWindow.html b/src/docs/win32api/1/GetForegroundWindow.html index d64bc968..1ebe0c14 100644 --- a/src/docs/win32api/1/GetForegroundWindow.html +++ b/src/docs/win32api/1/GetForegroundWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回前台窗口(用户当前工作的窗口)。系统分配给产生前台窗口的线程一个稍高一点的优先级。

函数原型

HWND GetForegroundwindow(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetLastActivePopup.html b/src/docs/win32api/1/GetLastActivePopup.html index e374a933..092f7148 100644 --- a/src/docs/win32api/1/GetLastActivePopup.html +++ b/src/docs/win32api/1/GetLastActivePopup.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定窗口中的哪一个弹出式窗口是最近活动的窗口。

函数原型

HWND GetLastActivePopup(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/GetMessage.html b/src/docs/win32api/1/GetMessage.html index ab47802a..f017c96a 100644 --- a/src/docs/win32api/1/GetMessage.html +++ b/src/docs/win32api/1/GetMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从调用线程的消息队列里取得一个消息并将其放于指定的结构。此函数可取得与指定窗口联系的消息和由PostThreadMesssge寄送的线程消息。此函数接收一定范围的消息值。GetMessage不接收属于其他线程或应用程序的消息。

函数原型

BOOL GetMessage(LPMSG lpMsg,HWND hWnd,UINT wMsgFilterMin,UINT wMsgFilteMax

参数

diff --git a/src/docs/win32api/1/GetMessageExtralnfo.html b/src/docs/win32api/1/GetMessageExtralnfo.html index 88ea0269..10a1fee1 100644 --- a/src/docs/win32api/1/GetMessageExtralnfo.html +++ b/src/docs/win32api/1/GetMessageExtralnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为当前线程取得附加消息信息。附加消息信息是应用程序或驱动程序定义的与当前线程的消息队列联系的32位值。可用SetMessageExtralnfo来设置线程的附加消息信息,该消息信息将会保留到下一次调用GetMessage或PeekMessage之前。

函数原型

LONG GetMessageEXtralnfo(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetMessagePos.html b/src/docs/win32api/1/GetMessagePos.html index 72728dd6..7ba0a234 100644 --- a/src/docs/win32api/1/GetMessagePos.html +++ b/src/docs/win32api/1/GetMessagePos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回表示屏幕坐标下光标位置的长整数值。此位置表示当上一消息由GetMessage取得时鼠标占用的点。

函数原型

DWORD GetMessagePos(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetMessageTime.html b/src/docs/win32api/1/GetMessageTime.html index fa070c23..cdcea7f2 100644 --- a/src/docs/win32api/1/GetMessageTime.html +++ b/src/docs/win32api/1/GetMessageTime.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回由GetMessage从当前线程队列里取得上一消息的消息时间。时间是一个长整数,指定从系统开始到消息创建(即,放入线程消息队列)的占用时间(按毫秒计算)。

函数原型

LONG GetMessageTime(VOID)

参数

无。
diff --git a/src/docs/win32api/1/GetMouseMovePoints.html b/src/docs/win32api/1/GetMouseMovePoints.html index d5d2368b..dc5a729e 100644 --- a/src/docs/win32api/1/GetMouseMovePoints.html +++ b/src/docs/win32api/1/GetMouseMovePoints.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得鼠标或画笔。

函数原型

int GetMouseMovePoints(UINT cbSize,LPMOUSEMOVEPOlNT lppt,LPMOUSEMOVEPOINT IpptBuf,int,nBufPoints,DWORD resolution);

参数

diff --git a/src/docs/win32api/1/GetNextWindow.html b/src/docs/win32api/1/GetNextWindow.html index 5b2b0f93..2a5b7328 100644 --- a/src/docs/win32api/1/GetNextWindow.html +++ b/src/docs/win32api/1/GetNextWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回z序中的前一个或后一个窗口的句柄。下一窗口在指定窗口的下面,前一窗口则在上面。如果指定的窗口是顶端窗口,该函数返回下一个(或前一个)顶端窗口的句柄。如果指定的窗口是顶层窗口,函数返回下一个(或前一个)顶层窗口的句柄。如果函数是子窗口,则函数搜索下一个或前一个子窗口的句柄。

函数原型

HWND GetNextWindow(HWND hWnd,UNIT wCmd);

参数

diff --git a/src/docs/win32api/1/GetParent.html b/src/docs/win32api/1/GetParent.html index 27cb4063..59608309 100644 --- a/src/docs/win32api/1/GetParent.html +++ b/src/docs/win32api/1/GetParent.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得一个指定子窗口的父窗口句柄。

函数原型

HWND GetParent(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/GetQueueStatus.html b/src/docs/win32api/1/GetQueueStatus.html index f50244a4..df648524 100644 --- a/src/docs/win32api/1/GetQueueStatus.html +++ b/src/docs/win32api/1/GetQueueStatus.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回表示调用线程消息队列里的消息的类型的标志。

函数原型

DWORD GetQueueStatus(UINT flags);

参数

diff --git a/src/docs/win32api/1/GetScrollPos.html b/src/docs/win32api/1/GetScrollPos.html index d133b5c9..bef1af66 100644 --- a/src/docs/win32api/1/GetScrollPos.html +++ b/src/docs/win32api/1/GetScrollPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取指定滚动条中滚动按钮的当前位置。当前位置是一个根据当前滚动范围而定的相对值。例如,如果滚动范围是0到100之间,滚动按钮在中间位置,则其当前位置为50。该函数提供了向后兼容性,新的应用程序应使用GetScroiliofo函数。

函数原型

int GetScrogPos(HWND hWnd;int nBar);

参数

diff --git a/src/docs/win32api/1/GetScrollRange.html b/src/docs/win32api/1/GetScrollRange.html index 96e94016..c1bda01c 100644 --- a/src/docs/win32api/1/GetScrollRange.html +++ b/src/docs/win32api/1/GetScrollRange.html @@ -1,6 +1,6 @@ - +

函数功能

获取指定滚动条中滚动按钮位置的当前最大最小值。

函数原型

BOOL GetscrollRange(HWND hWnd,int nBar,LPINT lpMinPos,LPINT InMaxPos);

参数

diff --git a/src/docs/win32api/1/GetScrolllnfo.html b/src/docs/win32api/1/GetScrolllnfo.html index 96633c30..c7941a44 100644 --- a/src/docs/win32api/1/GetScrolllnfo.html +++ b/src/docs/win32api/1/GetScrolllnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数找到滚动条的参数,包括滚动条位置的最小值、最大值,页面大小,滚动按钮的位置,

函数原型

BOOL GetScrolllnfo(HWND hWnd,int fnBar,LPSCROLLINFO lpsi);

参数

diff --git a/src/docs/win32api/1/GetSysModalWindow.html b/src/docs/win32api/1/GetSysModalWindow.html index 667ca303..6db2cd8b 100644 --- a/src/docs/win32api/1/GetSysModalWindow.html +++ b/src/docs/win32api/1/GetSysModalWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已经过时,该函数只是为与16位版的窗口程序兼容而提供的。 diff --git a/src/docs/win32api/1/GetTopWindow.html b/src/docs/win32api/1/GetTopWindow.html index 749723ea..5a690407 100644 --- a/src/docs/win32api/1/GetTopWindow.html +++ b/src/docs/win32api/1/GetTopWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检查与特定父窗口相联的子窗口z序,并返回在z序顶部的子窗口的句柄。

函数原型

HWND GetTopWindow(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/GetWindow.html b/src/docs/win32api/1/GetWindow.html index ef2e7cb0..2ccf2410 100644 --- a/src/docs/win32api/1/GetWindow.html +++ b/src/docs/win32api/1/GetWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回与指定窗口有特定关系(如Z序或所有者)的窗口句柄。

函数原型

HWND GetWindow(HWND hWnd,UNIT nCmd);

参数

diff --git a/src/docs/win32api/1/GetWindowPlacement.html b/src/docs/win32api/1/GetWindowPlacement.html index 9358fd8c..ef59acf5 100644 --- a/src/docs/win32api/1/GetWindowPlacement.html +++ b/src/docs/win32api/1/GetWindowPlacement.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回指定窗口的显示状态以及被恢复的、最大化的和最小化的窗口位置。

函数原型

BOOL GetWindowPlacement(HWND hWnd,WINDOWPLACEMENT★lpwndpl);

参数

diff --git a/src/docs/win32api/1/GetWindowRect.html b/src/docs/win32api/1/GetWindowRect.html index 5b7ece74..3aa09d07 100644 --- a/src/docs/win32api/1/GetWindowRect.html +++ b/src/docs/win32api/1/GetWindowRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回指定窗口的边框矩形的尺寸。该尺寸以相对于屏幕坐标左上角的屏幕坐标给出。

函数原型

BOOL GetWindowRect(HWND hWnd,LPRECTlpRect);

参数

diff --git a/src/docs/win32api/1/GetWindowTask.html b/src/docs/win32api/1/GetWindowTask.html index 9f2e7a81..d61eee1e 100644 --- a/src/docs/win32api/1/GetWindowTask.html +++ b/src/docs/win32api/1/GetWindowTask.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已经过时,该函数只是为与16位版的窗口程序兼容而提供的。基于32位的应用程序应该使用GetWindowThreadProcessld函数。 diff --git a/src/docs/win32api/1/GetWindowText.html b/src/docs/win32api/1/GetWindowText.html index 77872e2b..31fd140f 100644 --- a/src/docs/win32api/1/GetWindowText.html +++ b/src/docs/win32api/1/GetWindowText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定窗口的标题条文本(如果存在)拷贝到一个缓存区内。如果指定的窗口是一个控制,则拷贝控制的文本。但是,GetWindowTeXt不能接收在其他应用程序中的控制文本。

函数原型

Int GetWindowText(HWND hWnd,LPTSTR lpString,Int nMaxCount);

参数

diff --git a/src/docs/win32api/1/GetWindowTextLength.html b/src/docs/win32api/1/GetWindowTextLength.html index 14208612..e528871c 100644 --- a/src/docs/win32api/1/GetWindowTextLength.html +++ b/src/docs/win32api/1/GetWindowTextLength.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回指定窗口的标题文本(如果存在)的字符长度。如果指定窗口是一个控制,函数将返回控制内文本的长度。但是GetWindowTextLength函数不能返回在其他应用程序中的控制的文本长度。

函数原型

nit GetWindowTextLent(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/GetWlndowThreadprocessld.html b/src/docs/win32api/1/GetWlndowThreadprocessld.html index f01f6526..59c04c1c 100644 --- a/src/docs/win32api/1/GetWlndowThreadprocessld.html +++ b/src/docs/win32api/1/GetWlndowThreadprocessld.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回创建指定窗口线程的标识和创建窗口的进程的标识符,后一项是可选的。
函数原型;DWORD GetWindowThreadProcessld(HWND hwnd,LPDWORD lpdwProcessld);

参数

diff --git a/src/docs/win32api/1/GetlnputState.html b/src/docs/win32api/1/GetlnputState.html index 80b045b5..ba3e0357 100644 --- a/src/docs/win32api/1/GetlnputState.html +++ b/src/docs/win32api/1/GetlnputState.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定在调用线程的消息队列里,是否有鼠标键或键盘消息。

函数原型

BOOL GetlnputState(VOID)

参数

无。
diff --git a/src/docs/win32api/1/InSendMessage.html b/src/docs/win32api/1/InSendMessage.html index 128ec306..818e1f41 100644 --- a/src/docs/win32api/1/InSendMessage.html +++ b/src/docs/win32api/1/InSendMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数决定当前窗口程序是否处理另一个线程调用SendMesssge(在相同进程或不同进程)发送来的消息。

函数原型

BOOL InsendMessage(VOID);

参数

无。
diff --git a/src/docs/win32api/1/InSendMessageEx.html b/src/docs/win32api/1/InSendMessageEx.html index 4123923e..d043d893 100644 --- a/src/docs/win32api/1/InSendMessageEx.html +++ b/src/docs/win32api/1/InSendMessageEx.html @@ -1,6 +1,6 @@ - +

函数功能

函数决定当前窗口程序是否处理另一个线程调用SendMessage(在相同进程或不同进程)发送来的消息。此函数与InsendMesssge相似,但另外提供了如何发送消息的信息。

函数原型

DWORD InsendMessageEx(LPVOID IpReserved);

参数

diff --git a/src/docs/win32api/1/IsChild.html b/src/docs/win32api/1/IsChild.html index 7cc9d97c..71e01629 100644 --- a/src/docs/win32api/1/IsChild.html +++ b/src/docs/win32api/1/IsChild.html @@ -1,6 +1,6 @@ - +

函数功能

该函数测试一个窗口是否是指定父窗口的子窗口或后代窗口。如果该父窗口是在父窗口的链表上则子窗口是指定父窗口的直接后代。父窗口链表从原始层叠窗口或弹出窗口一直连到该子窗口。

函数原型

BOOL IsChild(HWND hWndParant,HWND hWnd);

参数

diff --git a/src/docs/win32api/1/IsIconic.html b/src/docs/win32api/1/IsIconic.html index cf98c5ad..4a12a481 100644 --- a/src/docs/win32api/1/IsIconic.html +++ b/src/docs/win32api/1/IsIconic.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定给定窗口是否是最小化(图标化)的窗口。

函数原型

BOOL IsIconic(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/IsWindow.html b/src/docs/win32api/1/IsWindow.html index 618230e3..3a8a52b4 100644 --- a/src/docs/win32api/1/IsWindow.html +++ b/src/docs/win32api/1/IsWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定给定的窗口句柄是否识别一个已存在的窗口。
因数原型:BOOL isWindow(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/IsWindowUnicode.html b/src/docs/win32api/1/IsWindowUnicode.html index e1d60211..75c8fe45 100644 --- a/src/docs/win32api/1/IsWindowUnicode.html +++ b/src/docs/win32api/1/IsWindowUnicode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定的窗口是否是一个本地Unicode窗口。

函数原型

BOOL lswindowUnicode(HWND hwndJ;

参数

diff --git a/src/docs/win32api/1/IsWindowVlslble.html b/src/docs/win32api/1/IsWindowVlslble.html index d7094a16..6703434e 100644 --- a/src/docs/win32api/1/IsWindowVlslble.html +++ b/src/docs/win32api/1/IsWindowVlslble.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得给定窗口的可视状态。;

函数原型

BOOL IsWindowVisible(HWND hWnd);
参数;
diff --git a/src/docs/win32api/1/IsZoomed.html b/src/docs/win32api/1/IsZoomed.html index ea75f9eb..4079ad5c 100644 --- a/src/docs/win32api/1/IsZoomed.html +++ b/src/docs/win32api/1/IsZoomed.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定窗口是否是最大化的窗口。

函数原型

BOOL IsZoomed(HWND hWnd);

参数

diff --git a/src/docs/win32api/1/LoadImage.html b/src/docs/win32api/1/LoadImage.html index 3ddeadc8..82bbc676 100644 --- a/src/docs/win32api/1/LoadImage.html +++ b/src/docs/win32api/1/LoadImage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数装载目标,光标,或位图。

函数原型

HANDLE LoadImage(NINSTANCE hinst,LPCTSTR lpszName,UINT uType,int cxDesired,int CyDesired,UINT fuLoad);

参数

diff --git a/src/docs/win32api/1/LoadResource.html b/src/docs/win32api/1/LoadResource.html index a7cd6bd8..d8ba1b9d 100644 --- a/src/docs/win32api/1/LoadResource.html +++ b/src/docs/win32api/1/LoadResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数装载指定资源到全局存储器。
函数原型; HGLOSAL LoadResouare(HMODULE hModule,HRSRC hReslnfo);

参数

diff --git a/src/docs/win32api/1/LockResource.html b/src/docs/win32api/1/LockResource.html index d2439fba..6494f1cc 100644 --- a/src/docs/win32api/1/LockResource.html +++ b/src/docs/win32api/1/LockResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数锁定内存中的指定资源。

函数原型

LPVOID LOCkResource(HGLOBAL hResDate);

参数

diff --git a/src/docs/win32api/1/MoveWindow.html b/src/docs/win32api/1/MoveWindow.html index 530e5301..4a51fe6a 100644 --- a/src/docs/win32api/1/MoveWindow.html +++ b/src/docs/win32api/1/MoveWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变指定窗口的位置和尺寸。对于顶层窗口,位置和尺寸是相对于屏幕的左上角的:对于子窗口,位置和尺寸是相对于父窗口客户区的左上角坐标的。

函数原型

BOOL MoveWindow(HWND hWnd.int x.int y,int nWidth,int nHeight,BOOL BRePaint);

参数

diff --git a/src/docs/win32api/1/Openlcon.html b/src/docs/win32api/1/Openlcon.html index 65ed6f4c..9dd9c91b 100644 --- a/src/docs/win32api/1/Openlcon.html +++ b/src/docs/win32api/1/Openlcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个最小化窗口恢复到原来的位置和尺寸并且激活该窗口。

函数原型

BOOL Openlcon(HWNDhWnd);

参数

diff --git a/src/docs/win32api/1/PeekMessage.html b/src/docs/win32api/1/PeekMessage.html index 4585e2a1..a988b523 100644 --- a/src/docs/win32api/1/PeekMessage.html +++ b/src/docs/win32api/1/PeekMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为一个消息检查线程消息队列,并将该消息(如果存在)放于指定的结构。

函数原型

BOOL PeekMessage(LPMSG IpMsg,HWND hWnd,UINT wMSGfilterMin,UINT wMsgFilterMax,UINT wRemoveMsg);

参数

diff --git a/src/docs/win32api/1/PostAppMessage.html b/src/docs/win32api/1/PostAppMessage.html index 8f7492aa..a8e168f4 100644 --- a/src/docs/win32api/1/PostAppMessage.html +++ b/src/docs/win32api/1/PostAppMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已过时。提供此函数只是为了与Windows的16位版本兼容。基于Win32的应用程序应该使用函数PostThreadMessage。 diff --git a/src/docs/win32api/1/PostMessage.html b/src/docs/win32api/1/PostMessage.html index 2102d225..10fef185 100644 --- a/src/docs/win32api/1/PostMessage.html +++ b/src/docs/win32api/1/PostMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个消息放入(寄送)到与指定窗口创建的线程相联系消息队列里,不等待线程处理消息就返回。消息队列里的消息通过调用GetMessage和PeekMessage取得。

函数原型

B00L PostMessage(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
参数
diff --git a/src/docs/win32api/1/PostQuitMessage.html b/src/docs/win32api/1/PostQuitMessage.html index bfaa78a5..500035d4 100644 --- a/src/docs/win32api/1/PostQuitMessage.html +++ b/src/docs/win32api/1/PostQuitMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数向系统表明有个线程有终止请求。通常用来响应WM_DESTROY消息。

函数原型

VOID PostQuitMessage(int nExitCode);

参数

diff --git a/src/docs/win32api/1/PostThreadMessage.html b/src/docs/win32api/1/PostThreadMessage.html index 20a3f354..5df248da 100644 --- a/src/docs/win32api/1/PostThreadMessage.html +++ b/src/docs/win32api/1/PostThreadMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个消息放入(寄送)到指定线程的消息队列里,不等待线程处理消息就返回。

函数原型

BOOL PostThreadMessage(DWORD idThread,UINT Msg,WPARAM wParam,LPARAM IParam);
参数
diff --git a/src/docs/win32api/1/RegisterWindowsMessage.html b/src/docs/win32api/1/RegisterWindowsMessage.html index 06a735cd..13e59154 100644 --- a/src/docs/win32api/1/RegisterWindowsMessage.html +++ b/src/docs/win32api/1/RegisterWindowsMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数定义一个新的窗口消息,该消息确保在系统中是唯一的。返回的消息值可在调用函数SendMessage或PostMessage时使用。

函数原型

UINT RegisterWindowsMessage(LPCTSTR lpString);

参数

diff --git a/src/docs/win32api/1/ReleaseCapture.html b/src/docs/win32api/1/ReleaseCapture.html index 676133b8..507adf27 100644 --- a/src/docs/win32api/1/ReleaseCapture.html +++ b/src/docs/win32api/1/ReleaseCapture.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从当前线程中的窗口释放鼠标捕获,并恢复通常的鼠标输入处理。捕获鼠标的窗口接收所有的鼠标输入(无论光标的位置在哪里),除非点击鼠标键时,光标热点在另一个线程的窗口中。

函数原型

BOOL ReleaseCapture(VOlD)

参数

无。
diff --git a/src/docs/win32api/1/ReplyMessage.html b/src/docs/win32api/1/ReplyMessage.html index 12febea2..70ac8412 100644 --- a/src/docs/win32api/1/ReplyMessage.html +++ b/src/docs/win32api/1/ReplyMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于应答由函数SendMessage发送的消息,不返回控制给调用SendMessage的函数。

函数原型

BOOLReplyMessage(LRESULTIResult);

参数

diff --git a/src/docs/win32api/1/ScrollDC.html b/src/docs/win32api/1/ScrollDC.html index 7ec330d0..d38b4a92 100644 --- a/src/docs/win32api/1/ScrollDC.html +++ b/src/docs/win32api/1/ScrollDC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数水平和垂直滚动一个位矩形。

函数原型

BOOL ScrollDC(HDC hDC,int dx,int dy,CONST RECT ·IprcScroll,CONST★lprcClip,HRGN hrgnUpdateLPRECT IprcUpdate);

参数

diff --git a/src/docs/win32api/1/ScrollWindow.html b/src/docs/win32api/1/ScrollWindow.html index dc8c9395..d4cd9673 100644 --- a/src/docs/win32api/1/ScrollWindow.html +++ b/src/docs/win32api/1/ScrollWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数滚动所指定的窗体客户区域内容。函数提供了向后兼容性,新的应用程序应使用ScrollWindowEX。

函数原型

BOOL ScrollWindow(HWND hWnd,int XAmount,int YAmount,CONST RECT★IpRect, CONST RECT★lpClipRect);

参数

diff --git a/src/docs/win32api/1/ScrollWindowEx.html b/src/docs/win32api/1/ScrollWindowEx.html index 979a1512..cff295b8 100644 --- a/src/docs/win32api/1/ScrollWindowEx.html +++ b/src/docs/win32api/1/ScrollWindowEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数滚动指定窗体客户区域的目录。

函数原型

int ScrollWindowEx(HWND hWnd,int dx,int dyCONST RECT ·prcScroll,CONST RECT★prcCllp,HRGH hrgnUpdate,LPRECT prcUpdate,UINT flags);

参数

diff --git a/src/docs/win32api/1/SendAsyncProc.html b/src/docs/win32api/1/SendAsyncProc.html index d18b811b..05db3f2f 100644 --- a/src/docs/win32api/1/SendAsyncProc.html +++ b/src/docs/win32api/1/SendAsyncProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是应用程序定义的回调函数,和SendMessageCallback一起使用。系统在将消息传给目标窗口程序后,将消息传给回调函数。类型SENDASYNCPROC定义了一个指向此回调函数的指针。SendAsyncProc是此应用程序定义的函数名的占位符。

函数原型

VOID CALLBACK SendAsyncProc(HWND hwnd,UINT uMsg,DWORD dwData,LRESULT IResult);

参数

diff --git a/src/docs/win32api/1/SendMessage.html b/src/docs/win32api/1/SendMessage.html index bbc8135d..f0ae19b8 100644 --- a/src/docs/win32api/1/SendMessage.html +++ b/src/docs/win32api/1/SendMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的消息发送到一个或多个窗口。此函数为指定的窗口调用窗口程序,直到窗口程序处理完消息再返回。而函数PostMessage不同,将一个消息寄送到一个线程的消息队列后立即返回。

函数原型

LRESULT SendMessage(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/SendMessageCallback.html b/src/docs/win32api/1/SendMessageCallback.html index cd79627e..0b530683 100644 --- a/src/docs/win32api/1/SendMessageCallback.html +++ b/src/docs/win32api/1/SendMessageCallback.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的消息发送到一个或多个窗口。此函数为指定的窗口调用窗口程序,并立即返回。当窗口程序处理完消息后,系统调用指定的回调函数,将消息处理的结果和一个应用程序定义的值传给回调函数。

函数原型

BOOL SendMessageCallback(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM IParam,
SEhDASYNCPROC IpResultCallBack,DWORD dwData);
diff --git a/src/docs/win32api/1/SendMessageExtralnfo.html b/src/docs/win32api/1/SendMessageExtralnfo.html index 6b469079..4769ba56 100644 --- a/src/docs/win32api/1/SendMessageExtralnfo.html +++ b/src/docs/win32api/1/SendMessageExtralnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为当前线程设置附加消息信息。附加消息信息是应用程序或驱动程序定义的与当前线程的消息队列联系的32位值。GetMessageExtralnfo来取得线程的附加消息信息。

函数原型

LPARAM SetMesssgeEXtralnfo(LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/SendMessageTImeout.html b/src/docs/win32api/1/SendMessageTImeout.html index d6e63fcf..85789198 100644 --- a/src/docs/win32api/1/SendMessageTImeout.html +++ b/src/docs/win32api/1/SendMessageTImeout.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的消息发送到一个或多个窗口。此函数为指定的窗口调用窗口程序,并且,如果指定的窗口属于不同的线程,直到窗口程序处理完消息或指定的超时周期结束函数才返回。如果接收消息的窗口和当前线程属于同一个队列,窗口程序立即调用,超时值无用。

函数原型

LRESULT SendMessageTmeoUt(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM IParam,UINTfuFlags,UIUT uTimeout,LPDWORD lpdwResultult);

参数

diff --git a/src/docs/win32api/1/SendNotifyMessage.html b/src/docs/win32api/1/SendNotifyMessage.html index 2bc766d1..8bded5f2 100644 --- a/src/docs/win32api/1/SendNotifyMessage.html +++ b/src/docs/win32api/1/SendNotifyMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的消息发送到一个窗口。如果该窗口是由调用线程创建的;此函数为该窗口调用窗口程序,并等待窗口程序处理完消息后再返回。如果该窗口是由不同的线程创建的,此函数将消息传给该窗口程序,并立即返回,不等待窗口程序处理完消息。

函数原型

BOOL SendNotifyMessage(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/1/SetCapture.html b/src/docs/win32api/1/SetCapture.html index c2530f85..edd5cc1f 100644 --- a/src/docs/win32api/1/SetCapture.html +++ b/src/docs/win32api/1/SetCapture.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在属于当前线程的指定窗口里设置鼠标捕获。一旦窗口捕获了鼠标,所有鼠标输入都针对该窗口,无论光标是否在窗口的边界内。同一时刻只能有一个窗口捕获鼠标。如果鼠标光标在另一个线程创建的窗口上,只有当鼠标键按下时系统才将鼠标输入指向指定的窗口。

函数原型

HWND SetCapture(HWND hwnd);

参数

diff --git a/src/docs/win32api/1/SetDoubleCllckTime.html b/src/docs/win32api/1/SetDoubleCllckTime.html index e2ade313..f992c5c9 100644 --- a/src/docs/win32api/1/SetDoubleCllckTime.html +++ b/src/docs/win32api/1/SetDoubleCllckTime.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为鼠标设置双击时间。

函数原型

BOOL SetDoubleCIckTime(UINT ulnterval);

参数

diff --git a/src/docs/win32api/1/SetForegroundWindow.html b/src/docs/win32api/1/SetForegroundWindow.html index 4cf48d63..42a76d74 100644 --- a/src/docs/win32api/1/SetForegroundWindow.html +++ b/src/docs/win32api/1/SetForegroundWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。系统给创建前台窗口的线程分配的权限稍高于其他线程。

函数原型

BOOL SetForegroundWindow(HWND hWnd)

参数

diff --git a/src/docs/win32api/1/SetMessageQueue.html b/src/docs/win32api/1/SetMessageQueue.html index c55f4426..eeb06508 100644 --- a/src/docs/win32api/1/SetMessageQueue.html +++ b/src/docs/win32api/1/SetMessageQueue.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已过时。提供此函数只是为了与Windows的16位版本兼容。此函数对基于Windows的32位版本不起作用,因为消息队列根据需要动态扩展。 diff --git a/src/docs/win32api/1/SetParent.html b/src/docs/win32api/1/SetParent.html index 26b98e0f..15f5bfbc 100644 --- a/src/docs/win32api/1/SetParent.html +++ b/src/docs/win32api/1/SetParent.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变指定子窗口的父窗口。

函数原型

HWND SetPalrent(HWND hWndChild,HWND hWndNewParent);

参数

diff --git a/src/docs/win32api/1/SetScrollPos.html b/src/docs/win32api/1/SetScrollPos.html index 7a373248..60002c5f 100644 --- a/src/docs/win32api/1/SetScrollPos.html +++ b/src/docs/win32api/1/SetScrollPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置所指定滚动条中的滚动按钮的位置,如要求重画滚动条以反映出滚动按钮的新位置。该函数提供了向后兼容性,新的应用程序应使用SetScrolllnfo函数。

函数原型

int SetScrollPos(HWN hWnd,int nBar,int nPos,BOOL bRedraw);

参数

diff --git a/src/docs/win32api/1/SetScrollRange.html b/src/docs/win32api/1/SetScrollRange.html index 9230daf8..6cbafa65 100644 --- a/src/docs/win32api/1/SetScrollRange.html +++ b/src/docs/win32api/1/SetScrollRange.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置所指定滚动条位置的最大最小值。

函数原型

BOOL SetScrollRange(HWND hWnd,int nBar,int nMinPos,int nMaxPos,BOOL bRedraw);

参数

diff --git a/src/docs/win32api/1/SetScrolllnfo.html b/src/docs/win32api/1/SetScrolllnfo.html index 8b9e5c0b..8735952e 100644 --- a/src/docs/win32api/1/SetScrolllnfo.html +++ b/src/docs/win32api/1/SetScrolllnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置滚动条参数,包括滚动位置的最大值和最小值,页面大小,滚动按钮的位置。如被请求,函数也可以重画滚动条。

函数原型

int SetScrohnfo(HWND hWnd;int fnBar,LPSCROLLINFO lpsi,BOOL fRedraw);

参数

diff --git a/src/docs/win32api/1/SetSysModalWindow.html b/src/docs/win32api/1/SetSysModalWindow.html index 33b91641..54228d61 100644 --- a/src/docs/win32api/1/SetSysModalWindow.html +++ b/src/docs/win32api/1/SetSysModalWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已经过时,该函数只是为与16位版的窗口程序兼容而提供的。新的输入模块不允许系统的模块窗口。 diff --git a/src/docs/win32api/1/SetWindowLong.html b/src/docs/win32api/1/SetWindowLong.html index 0c183745..232663c0 100644 --- a/src/docs/win32api/1/SetWindowLong.html +++ b/src/docs/win32api/1/SetWindowLong.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变指定窗口的属性。函数也将在指定偏移地址的一个32位值存入窗口的额外窗口存。

函数原型

LONG SetWindowLong(HWN hWnd,int nlndex.LONG dwNewLong);

参数

diff --git a/src/docs/win32api/1/SetWindowPlacement.html b/src/docs/win32api/1/SetWindowPlacement.html index 8d7e87dd..2f1b4346 100644 --- a/src/docs/win32api/1/SetWindowPlacement.html +++ b/src/docs/win32api/1/SetWindowPlacement.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置指定窗口的显示状态和恢复,最大化,最小化位置。
函及原型;BOOL SetwlndowPlacement(HWND hWnd,CONST WINDOWPLACEMENT★lpwndpl);

参数

diff --git a/src/docs/win32api/1/SetWindowPos.html b/src/docs/win32api/1/SetWindowPos.html index 115c8ab1..7e4acb99 100644 --- a/src/docs/win32api/1/SetWindowPos.html +++ b/src/docs/win32api/1/SetWindowPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变一个子窗口,弹出式窗口式顶层窗口的尺寸,位置和Z序。子窗口,弹出式窗口,及顶层窗口根据它们在屏幕上出现的顺序排序、顶层窗口设置的级别最高,并且被设置为Z序的第一个窗口。

函数原型

BOOL SetWindowPos(HWN hWnd,HWND hWndlnsertAfter,int X,int Y,int cx,int cy,UNIT.Flags);

参数

diff --git a/src/docs/win32api/1/SetWindowText.html b/src/docs/win32api/1/SetWindowText.html index 473e28db..1148ad0d 100644 --- a/src/docs/win32api/1/SetWindowText.html +++ b/src/docs/win32api/1/SetWindowText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变指定窗口的标题栏的文本内容(如果窗口有标题栏)。如果指定窗口是一个控制,则改变控制的文本内容。然而,SetWindowText函数不改变其他应用程序中的控制的文本内容。

函数原型

BOOL SetWindowText(HWND hwnd,LPCTSTR lpStrjng);

参数

diff --git a/src/docs/win32api/1/ShowOwnedPopups.html b/src/docs/win32api/1/ShowOwnedPopups.html index 8f4f7260..956b4e20 100644 --- a/src/docs/win32api/1/ShowOwnedPopups.html +++ b/src/docs/win32api/1/ShowOwnedPopups.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示或隐藏属于指定窗口的所有弹出式窗口。

函数原型

BOOL ShowOwnedPopups(HWND hWnd;BOOL fshow);

参数

diff --git a/src/docs/win32api/1/ShowScrollBar.html b/src/docs/win32api/1/ShowScrollBar.html index e3a326e2..98de8fd3 100644 --- a/src/docs/win32api/1/ShowScrollBar.html +++ b/src/docs/win32api/1/ShowScrollBar.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示或隐藏所指定的滚动条。

函数原型

BOOL ShowScrollBar(HWND hWnd,int wBar,BOOL bShow);

参数

diff --git a/src/docs/win32api/1/ShowWindow.html b/src/docs/win32api/1/ShowWindow.html index 47b9a796..5d38a5c3 100644 --- a/src/docs/win32api/1/ShowWindow.html +++ b/src/docs/win32api/1/ShowWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置指定窗口的显示状态。

函数原型

BOOL ShowWindow(HWND hWnd,int nCmdShow);

参数

diff --git a/src/docs/win32api/1/ShowWindowAsync.html b/src/docs/win32api/1/ShowWindowAsync.html index 1591d5a8..c6510840 100644 --- a/src/docs/win32api/1/ShowWindowAsync.html +++ b/src/docs/win32api/1/ShowWindowAsync.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置由不同线程产生的窗口的显示状态。

函数原型

BOOL ShowWindowAsync(HWND hWnd,int nCmdshow);

参数

diff --git a/src/docs/win32api/1/SlzeofResource.html b/src/docs/win32api/1/SlzeofResource.html index 3faf94af..08a8c49a 100644 --- a/src/docs/win32api/1/SlzeofResource.html +++ b/src/docs/win32api/1/SlzeofResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回指定资源字节数大小。

函数原型

DWORD SizeofResource(HMODULE hModule,HRSRC hReslnfo);

参数

diff --git a/src/docs/win32api/1/SwapMouseButton.html b/src/docs/win32api/1/SwapMouseButton.html index 7084fe45..f1122835 100644 --- a/src/docs/win32api/1/SwapMouseButton.html +++ b/src/docs/win32api/1/SwapMouseButton.html @@ -1,6 +1,6 @@ - +

函数功能

该函数反转或恢复鼠标左右键的含义

函数原型

BOOL SwapMouseButton(BOOL fSwap);

参数

diff --git a/src/docs/win32api/1/TileWindows.html b/src/docs/win32api/1/TileWindows.html index 6d1e7ed2..fbd79783 100644 --- a/src/docs/win32api/1/TileWindows.html +++ b/src/docs/win32api/1/TileWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数并到显示指定父窗口的各指定子窗口。
函数原型;WORD WINAPI TileWindows(HWND hWndParent,UNIT wHow,CONST RECT ★IpRect,UNIT cKidS;ConHWND FAR ★lpKidS);参数:
hWndParent: 窗口句柄。如果该参数为NULL,则假定为桌面窗口。
diff --git a/src/docs/win32api/1/TrackMouseEvent.html b/src/docs/win32api/1/TrackMouseEvent.html index 52ec33f4..071de2a7 100644 --- a/src/docs/win32api/1/TrackMouseEvent.html +++ b/src/docs/win32api/1/TrackMouseEvent.html @@ -1,6 +1,6 @@ - +

函数功能

当在指定时间内鼠标指针离开或盘旋在一个窗口上时,此函数寄送消息。

函数原型

BOOL TrackMouseEvent(LPTRACKMOUSEEVENT lpEventTrack);

参数

diff --git a/src/docs/win32api/1/TranslateMdISysAccel.html b/src/docs/win32api/1/TranslateMdISysAccel.html index f9f0a26d..0ec429c6 100644 --- a/src/docs/win32api/1/TranslateMdISysAccel.html +++ b/src/docs/win32api/1/TranslateMdISysAccel.html @@ -1,6 +1,6 @@ - +

函数功能

该函数处理与指定MDI客户窗口相联系的多文档接口(MDI)子窗口的菜单命令的加速键响应。该函数转换WM_KEYUP和WM_KEYDOWN消息为WM_SYSCOMMAND消息,并把它的发送给相应MDI子窗口。

函数原型

BOOL TranslateMDlSysAccel(HWND hWndClient,LPMSG IpMsg);

参数

diff --git a/src/docs/win32api/1/TranslateMessage.html b/src/docs/win32api/1/TranslateMessage.html index 26aad78b..341b6b4d 100644 --- a/src/docs/win32api/1/TranslateMessage.html +++ b/src/docs/win32api/1/TranslateMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将虚拟键消息转换为字符消息。字符消息被寄送到调用线程的消息队列里,当下一次线程调用函数GetMessage或PeekMessage时被读出。

函数原型

BOOL TranslateMessage(CONST MSG★lpMsg);

参数

diff --git a/src/docs/win32api/1/UnlockResource.html b/src/docs/win32api/1/UnlockResource.html index da4b9ea7..6103056c 100644 --- a/src/docs/win32api/1/UnlockResource.html +++ b/src/docs/win32api/1/UnlockResource.html @@ -1,6 +1,6 @@ - + 函数功能能:该函数已过时。这个函数仅兼容于16位的Windows,对于32位的应用程序不必要解锁资源。 diff --git a/src/docs/win32api/1/UpdateResource.html b/src/docs/win32api/1/UpdateResource.html index 6f3d39bc..9c6b3eb2 100644 --- a/src/docs/win32api/1/UpdateResource.html +++ b/src/docs/win32api/1/UpdateResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数增加,删除,或替代某可执行文件中的资源。

函数原型

BOOL UPdateResource(HANDLE hUpdate,LPCTSTR lPTyPe,LPCTSTR IPName,WORD wLanguage,LPVOID lgData,DWORD cbData);

参数

diff --git a/src/docs/win32api/1/WaltMessage.html b/src/docs/win32api/1/WaltMessage.html index 558328d0..a70ae32f 100644 --- a/src/docs/win32api/1/WaltMessage.html +++ b/src/docs/win32api/1/WaltMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数产生对其他线程的控制,如果一个线程没有其他消息在其消息队列里。此函数中止线程,直到一个新消息被放入该线程的消息队列里,再返回。
函数原型;BOOL WaitMessage(VOID)

参数

无。
diff --git a/src/docs/win32api/1/WinMain.html b/src/docs/win32api/1/WinMain.html index 326d7bc1..4d4ad1f7 100644 --- a/src/docs/win32api/1/WinMain.html +++ b/src/docs/win32api/1/WinMain.html @@ -1,6 +1,6 @@ - +

函数功能

该函数被系统调用,作为一个32位应用程序的入口点。

函数原型

int WINAPI WinMain(HINSTANCEE hlnstance,HINSTANCE hPrelnstance,LPSTR lpCmdLine,int nCmdShow);
参数;
diff --git a/src/docs/win32api/1/WindowFromPoint.html b/src/docs/win32api/1/WindowFromPoint.html index ce84109d..83a95c98 100644 --- a/src/docs/win32api/1/WindowFromPoint.html +++ b/src/docs/win32api/1/WindowFromPoint.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得包含指定点的窗口的句柄。

函数原型

HWND WindowFromPoint(POINT Point);

参数

diff --git a/src/docs/win32api/1/mouse_event.html b/src/docs/win32api/1/mouse_event.html index 01933ce1..b3e0a8ba 100644 --- a/src/docs/win32api/1/mouse_event.html +++ b/src/docs/win32api/1/mouse_event.html @@ -1,6 +1,6 @@ - +

函数功能

该函数综合鼠标击键和鼠标动作。

函数原型

VOID mouse_event(DWORD dwFlags,DWORD dx,DWORD dwFlags,OWORD dx,DWORD dy, DWORD dwData, DWORD dwExtralnfo);

参数

diff --git a/src/docs/win32api/1/多文档接口函数(Multiple Document Interface).html b/src/docs/win32api/1/多文档接口函数(Multiple Document Interface).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/1/多文档接口函数(Multiple Document Interface).html +++ b/src/docs/win32api/1/多文档接口函数(Multiple Document Interface).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/1/消息和消息总队列函数(Message and Message Queue).html b/src/docs/win32api/1/消息和消息总队列函数(Message and Message Queue).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/1/消息和消息总队列函数(Message and Message Queue).html +++ b/src/docs/win32api/1/消息和消息总队列函数(Message and Message Queue).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/1/滚动条函数(Scroll Bar).html b/src/docs/win32api/1/滚动条函数(Scroll Bar).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/1/滚动条函数(Scroll Bar).html +++ b/src/docs/win32api/1/滚动条函数(Scroll Bar).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/1/窗口函数(Window).html b/src/docs/win32api/1/窗口函数(Window).html index 3996424f..81cd6123 100644 --- a/src/docs/win32api/1/窗口函数(Window).html +++ b/src/docs/win32api/1/窗口函数(Window).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/1/资源函数(Resource).html b/src/docs/win32api/1/资源函数(Resource).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/1/资源函数(Resource).html +++ b/src/docs/win32api/1/资源函数(Resource).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/1/鼠标输入函数(Mouse Input).html b/src/docs/win32api/1/鼠标输入函数(Mouse Input).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/1/鼠标输入函数(Mouse Input).html +++ b/src/docs/win32api/1/鼠标输入函数(Mouse Input).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/2/AlphaBlend.html b/src/docs/win32api/2/AlphaBlend.html index 2fa48b21..25fc9a11 100644 --- a/src/docs/win32api/2/AlphaBlend.html +++ b/src/docs/win32api/2/AlphaBlend.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用来显示透明或半透明像素的位图。

函数原型

AlphaBlend(HDC hdcDest,int nXOriginDest,int nYOriginDest,int nWidthDest,int hHeightDest,HDC hdcSrc,int nXOriginSrc,int nYOriginSrc,int nWidthSrc,int nHeightSrc,BLENDFUNCTION blendFunction);

参数

diff --git a/src/docs/win32api/2/BitBlt.html b/src/docs/win32api/2/BitBlt.html index ec2f682c..cca5bade 100644 --- a/src/docs/win32api/2/BitBlt.html +++ b/src/docs/win32api/2/BitBlt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对指定的源设备环境区域中的像素进行位块(bit_block)转换,以传送到目标设备环境。

函数原型

BOOL BitBlt(HDC hdcDest,int nXDest,int nYDest,int nWidth,int nHeight,HDC hdcSrc,int nXSrc,int nYSrc,DWORD dwRop);

参数

diff --git a/src/docs/win32api/2/CallWindowProc.html b/src/docs/win32api/2/CallWindowProc.html index ae6a042a..48289ef4 100644 --- a/src/docs/win32api/2/CallWindowProc.html +++ b/src/docs/win32api/2/CallWindowProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数CallWindowProc将消息信息传送给指定的窗口过程。

函数原型

LRESULT CallWindowProc(WNDPROC lpPrevWndFunc,HWND hWnd.UINT Msg,WPARAM wParam,LPARAMIParam);

参数

diff --git a/src/docs/win32api/2/CreateBitmap.html b/src/docs/win32api/2/CreateBitmap.html index 6e0d6bc4..0c5c95cb 100644 --- a/src/docs/win32api/2/CreateBitmap.html +++ b/src/docs/win32api/2/CreateBitmap.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个带有特定宽度、高度和颜色格式的位图。

函数原型

HBITMAP CreateBitmap(int nWidth,int nHeight, UINT cPlanes, UINT cBitsPeral,CONST VOID *lpvBits);

参数

diff --git a/src/docs/win32api/2/CreateBitmaplndirect.html b/src/docs/win32api/2/CreateBitmaplndirect.html index 331999f3..742bed48 100644 --- a/src/docs/win32api/2/CreateBitmaplndirect.html +++ b/src/docs/win32api/2/CreateBitmaplndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以创建一个具有特定宽度、高度和颜色格式的位图。

函数原型

HBITMAP CreateBitmaplndirect(CONST BITMAP *lpbm);

参数

diff --git a/src/docs/win32api/2/CreateCompatibleBitmap.html b/src/docs/win32api/2/CreateCompatibleBitmap.html index 1daef3b5..dc1d0c15 100644 --- a/src/docs/win32api/2/CreateCompatibleBitmap.html +++ b/src/docs/win32api/2/CreateCompatibleBitmap.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建与指定的设备环境相关的设备兼容的位图。

函数原型

HBITMAP CreateCompatibleBitmap(HDC hdc,int nWidth,int nHeight);

参数

diff --git a/src/docs/win32api/2/CreateDIBSection.html b/src/docs/win32api/2/CreateDIBSection.html index 225249fc..fa42c665 100644 --- a/src/docs/win32api/2/CreateDIBSection.html +++ b/src/docs/win32api/2/CreateDIBSection.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建应用程序可以直接写入的、与设备无关的位图(DIB)。该函数提供一个指针,该指针指向位图位数据值的地方。可以给文件映射对象提供句柄,函数使用文件映射对象来创建位图,或者让系统为位图分配内存。

函数原型

HBITMAP CreateDIBSection(HDC hdc,CONST BITMAPINFO *pbmi,UINT iUsage,VOID *ppvBits,HANDLE hSection,DWORD dwOffset);

参数

diff --git a/src/docs/win32api/2/CreateDIBitmap.html b/src/docs/win32api/2/CreateDIBitmap.html index d098d699..0cdd3401 100644 --- a/src/docs/win32api/2/CreateDIBitmap.html +++ b/src/docs/win32api/2/CreateDIBitmap.html @@ -1,6 +1,6 @@ - +

函数功能

该函数由与设备无关的位图(DIB)创建与设备有关的位图(DDB),并且有选择地为位图置位。

函数原型

HBITMAP CreateDIBitmap(HDC hdc,CONST BITMAPINFONEADER *lpbmih,DWORD fdwlnit,CONST VOID *lpblnit,CONST BITMAPINFO *lpbmi,UINT fuUsage);

参数

diff --git a/src/docs/win32api/2/CreateDiscardableBitmap.html b/src/docs/win32api/2/CreateDiscardableBitmap.html index 45fb8d34..b013667e 100644 --- a/src/docs/win32api/2/CreateDiscardableBitmap.html +++ b/src/docs/win32api/2/CreateDiscardableBitmap.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建与指定设备兼容的位图,这种位图是已淘汰的,它具有与设备一样的位/像素格式和颜色调色板。应用程序可以选择这种位图作为与指定设备兼容的内存设备的当前位图。

函数原型

HBITMAP CreateDiscardableBitmap(HDC hdc, int nWidth, int nHeight);

参数

diff --git a/src/docs/win32api/2/DefWindowProc.html b/src/docs/win32api/2/DefWindowProc.html index 2707bb1f..5be1fd71 100644 --- a/src/docs/win32api/2/DefWindowProc.html +++ b/src/docs/win32api/2/DefWindowProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数调用缺省的窗口过程来为应用程序没有处理的任何窗口消息提供缺省的处理。该函数确保每一个消息得到处理。调用DefWindowProc函数时使用窗口过程接收的相同参数。

函数原型

LRESULT DefWindowProc(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/2/EnumProps.html b/src/docs/win32api/2/EnumProps.html index 694c39aa..9e68e22f 100644 --- a/src/docs/win32api/2/EnumProps.html +++ b/src/docs/win32api/2/EnumProps.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将窗口属性表中的所有项列举出来,一个一个地传送给指定的回调函数,直到列举到最后一项,或者回调函数返回FALSE为止。

函数原型

int EnumProps(HWND hWnd,PROPENUMPROC lpEnumFunc);

参数

diff --git a/src/docs/win32api/2/EnumPropsEx.html b/src/docs/win32api/2/EnumPropsEx.html index 3ef84190..2754c3a3 100644 --- a/src/docs/win32api/2/EnumPropsEx.html +++ b/src/docs/win32api/2/EnumPropsEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将窗口属性表中的所有项列举出来,依次传送给指定的回调函数,直到列举到最后一项,或者回调函数返回FALSE为止。

函数原型

int EnumPropsEx(HWND hWnd,PROPENUMPROCEX lpEnumFunc,LPARAM IParam);

参数

diff --git a/src/docs/win32api/2/ExtFloodFill.html b/src/docs/win32api/2/ExtFloodFill.html index 6c76b778..1149b6fe 100644 --- a/src/docs/win32api/2/ExtFloodFill.html +++ b/src/docs/win32api/2/ExtFloodFill.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将使用当前刷子填充显示表面区域。

函数原型

BOOL ExtFloodFill(HDC hdc,int nXStart,int nYStart,COLORREF crColor,UINT fuFillType);

参数

diff --git a/src/docs/win32api/2/FloodFill.html b/src/docs/win32api/2/FloodFill.html index bcbb2910..6524b387 100644 --- a/src/docs/win32api/2/FloodFill.html +++ b/src/docs/win32api/2/FloodFill.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用当前刷子填充显示区域。该区域是由参数crFill指定的值包围起来的区域。

函数原型

BOOL FloodFill(HDC hdc, int nXStart, int nYStart, COLORREF crFill);

参数

diff --git a/src/docs/win32api/2/GetBitmapBits.html b/src/docs/win32api/2/GetBitmapBits.html index 64f408d6..dbbe5672 100644 --- a/src/docs/win32api/2/GetBitmapBits.html +++ b/src/docs/win32api/2/GetBitmapBits.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定位图的位拷贝到缓冲区里。

函数原型

LONG GetBitmapBits(HBITMAP hbmp, LONG cbBuffer, LPVOID lpvBits);

参数

diff --git a/src/docs/win32api/2/GetBitmapDimensionEx.html b/src/docs/win32api/2/GetBitmapDimensionEx.html index e02462f3..d84da566 100644 --- a/src/docs/win32api/2/GetBitmapDimensionEx.html +++ b/src/docs/win32api/2/GetBitmapDimensionEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用来检索位图的大小(维数)。检索到的大小必须已经由SetBitmapDimensionEX函数设置完毕。

函数原型

BOOL GetBitmapDimensionEx(HBITMAP hBitmap, LPSIZE lpDimension);

参数

diff --git a/src/docs/win32api/2/GetClassLong.html b/src/docs/win32api/2/GetClassLong.html index 0b7c240a..630bec82 100644 --- a/src/docs/win32api/2/GetClassLong.html +++ b/src/docs/win32api/2/GetClassLong.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回与指定窗口相关的WNDCLASSEX结构的指定32位值。

函数原型

DWORD GetClassLong(HWND hWnd,int nlndex);

参数

diff --git a/src/docs/win32api/2/GetClassName.html b/src/docs/win32api/2/GetClassName.html index e09b37ed..7690aeb2 100644 --- a/src/docs/win32api/2/GetClassName.html +++ b/src/docs/win32api/2/GetClassName.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得指定窗口所属的类的类名。

函数原型

Int GetClassName(HWND hWnd,LPTSTR IpClassName int nMaxCount);

参数

hWnd:窗口的句柄及间接给出的窗口所属的类。
diff --git a/src/docs/win32api/2/GetClassWord.html b/src/docs/win32api/2/GetClassWord.html index a88398d7..9264d3c4 100644 --- a/src/docs/win32api/2/GetClassWord.html +++ b/src/docs/win32api/2/GetClassWord.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在窗口类的额外存储空间中的指定偏移地址获取指定窗口所属窗口类的16位值。不象GCW_原子和GCW_HICONSM,由16位Windows支持的GCW_value己经过时,必须使用函数GetClassLong来获得窗口的类值。

函数原型

WORD GetCassWord(HWND hWnd,int nlndex);

参数


diff --git a/src/docs/win32api/2/GetClasslnfoEx(1).html b/src/docs/win32api/2/GetClasslnfoEx(1).html index 240dc33a..68c10ef0 100644 --- a/src/docs/win32api/2/GetClasslnfoEx(1).html +++ b/src/docs/win32api/2/GetClasslnfoEx(1).html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得有关一个窗口类的信息。GetClasslnfo函数已经由GetClasslnfoEx取代,但是如果不需要获得类的小图标信息.仍然可以使用该函数。

函数原型

BOOL GetClasslnfoEx(HINSTANCE hlnstance,LPCTSTR lpClassName, LPWNDCLASS lpWndClass);

参数

diff --git a/src/docs/win32api/2/GetClasslnfoEx.html b/src/docs/win32api/2/GetClasslnfoEx.html index d5eab0f3..8ceb6549 100644 --- a/src/docs/win32api/2/GetClasslnfoEx.html +++ b/src/docs/win32api/2/GetClasslnfoEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得有关窗口类的信息,包括与窗口类相关的小图标的句柄的信息。GetClasslnfo函数不检索小图标的句柄。

函数原型

BOOL GetClasslnfoEx(HINSTANCE hlnst,LPCTSTR lpszClass,LPWNDCLASSEX lpwcx);
参数 :
diff --git a/src/docs/win32api/2/GetDIBColorTable.html b/src/docs/win32api/2/GetDIBColorTable.html index 5a8cfb1a..d6c01483 100644 --- a/src/docs/win32api/2/GetDIBColorTable.html +++ b/src/docs/win32api/2/GetDIBColorTable.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从DIB位图的颜色表中检索RGB(红、绿、蓝)颜色值,此DIB位图是当前选入指定设备环境中的位图。

函数原型

UINT GetDIBColorTable(HDC hdc,UINt uStartindex, UINT cEntries, RGBQUAD *pColors)

参数

diff --git a/src/docs/win32api/2/GetDIBits.html b/src/docs/win32api/2/GetDIBits.html index 59360ad6..3b28dc79 100644 --- a/src/docs/win32api/2/GetDIBits.html +++ b/src/docs/win32api/2/GetDIBits.html @@ -1,6 +1,6 @@ - +

函数功能

GetDIBits函数检取指定位图的信息,并将其以指定格式复制到一个缓冲区中。

函数原型

int GetDIBits(HDC hdc, HBITMAP hbmp, UINT uStartScan, UINT cScanLines, LPVOID lpvBits, LPBITMAPINFO lpbi, UINT uUsage);

参数

diff --git a/src/docs/win32api/2/GetPixel.html b/src/docs/win32api/2/GetPixel.html index a40504d3..bb9f32bb 100644 --- a/src/docs/win32api/2/GetPixel.html +++ b/src/docs/win32api/2/GetPixel.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索指定坐标点的像素的RGB颜色值。

函数原型

;COLORREF GetPixel(HDC hdc, int nXPos, int nYPos)

参数

diff --git a/src/docs/win32api/2/GetProp.html b/src/docs/win32api/2/GetProp.html index 794d8386..b5d49e9b 100644 --- a/src/docs/win32api/2/GetProp.html +++ b/src/docs/win32api/2/GetProp.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从给定窗口的属性列表中检索数据句柄。给定的字符串标识了要检索的句柄。该字符串和句柄必须在前一次调用SetProp函数时已经加到属性表中。

函数原型

HANDLE GetProp(HWND hWnd,LPCTSTR lpString);

参数

diff --git a/src/docs/win32api/2/GetStretchBltMode.html b/src/docs/win32api/2/GetStretchBltMode.html index 862cbf04..864d59eb 100644 --- a/src/docs/win32api/2/GetStretchBltMode.html +++ b/src/docs/win32api/2/GetStretchBltMode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取当前伸展(也称展宽)模式。伸展模式定义了如何将颜色数据增加到位图中,或如何从位图中移走。当调用StretchBlt函数时,位图可能进行伸展或压缩处理。

函数原型

int GetStretchBltMode(HDC hdc);

参数

diff --git a/src/docs/win32api/2/GetWindowLong.html b/src/docs/win32api/2/GetWindowLong.html index b69bd3b4..a7c8b6c2 100644 --- a/src/docs/win32api/2/GetWindowLong.html +++ b/src/docs/win32api/2/GetWindowLong.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得有关指定窗口的信息,函数也获得在额外窗口内存中指定偏移位地址的32位度整型值。

函数原型

LONG GetWindowLong(HWND hWnd,int nlndex);

参数

diff --git a/src/docs/win32api/2/GetWindowWord.html b/src/docs/win32api/2/GetWindowWord.html index d289c8d5..5faa9185 100644 --- a/src/docs/win32api/2/GetWindowWord.html +++ b/src/docs/win32api/2/GetWindowWord.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已经过时。32位Windows程序应使用GetWindowLong函数。
diff --git a/src/docs/win32api/2/GradientFill.html b/src/docs/win32api/2/GradientFill.html index 782458fa..bbfe9401 100644 --- a/src/docs/win32api/2/GradientFill.html +++ b/src/docs/win32api/2/GradientFill.html @@ -1,6 +1,6 @@ - +

函数功能

该函数填充矩形和三角形结构。

函数原型

BOOL GradientFill(HDC hdc, CONST PTRIVERTEX pVertex, DWORD dwNumVertex, CONST PVOID pMesh, DWORD dwNumMesh, DWORD dwMode);

参数

diff --git a/src/docs/win32api/2/LoadBitmap.html b/src/docs/win32api/2/LoadBitmap.html index a7ff067c..45fff9d2 100644 --- a/src/docs/win32api/2/LoadBitmap.html +++ b/src/docs/win32api/2/LoadBitmap.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从模块的可执行文件中加载指定的位图资源。该函数已经被函数LoadImage替代。

函数原型

HBITMAP LoadBitmap(HINSTANCE hInstance, LPCTSTR lpBitmapName);

参数

diff --git a/src/docs/win32api/2/MaskBlt.html b/src/docs/win32api/2/MaskBlt.html index 1727ef21..d8c278c0 100644 --- a/src/docs/win32api/2/MaskBlt.html +++ b/src/docs/win32api/2/MaskBlt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使用特定的掩码和光栅操作来对源和目标位图的颜色数据进行组合。

函数原型

BOOL MaskBlt(HDC hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, HDC hdcSrc, int nXSrc, int nYSrc, HBITMAP hbmMask, int xMask, int yMask, DWORD dwRop);

参数


diff --git a/src/docs/win32api/2/PlgBlt.html b/src/docs/win32api/2/PlgBlt.html index e80720e3..b785e60e 100644 --- a/src/docs/win32api/2/PlgBlt.html +++ b/src/docs/win32api/2/PlgBlt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对源设备环境中指定的矩形区域中的颜色数据位进行位块转换,并转换到目标设备环境中指定的平行四边形里。如果给定的位掩码句柄表示为有效的单色位图,那么函数使用该位图来对源矩形中的颜色数据进行掩码(屏蔽)操作。

函数原型

BOOL PlgBlt(HDC hdcDest, CONST POINT *lpPoint, HDC hdcSrc,int nXSrc, int nYSrc, int nWidth, int nHeight, HBITMAP hbmMask, int xMask, int yMask);

参数

diff --git a/src/docs/win32api/2/PropEnumProcEx.html b/src/docs/win32api/2/PropEnumProcEx.html index ff9b6a7f..fea86651 100644 --- a/src/docs/win32api/2/PropEnumProcEx.html +++ b/src/docs/win32api/2/PropEnumProcEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个应用程序定义的回调函数,它与EnumPropsEx函数一同使用。该函数从窗口属性表中检索属性项。PROPENUMPROCEX类型定义了一个指向该回调函数的指针。PropEnumProcEx是用于应用程序定义的函数名的占位符。
函数原型 BOOL CALLBACK PropEnumProcEx(HWND hwnd,LPTSTR lpszStrng,HANDLE hData,DWORD dwData);

参数

diff --git a/src/docs/win32api/2/RegisterClass.html b/src/docs/win32api/2/RegisterClass.html index 14208020..f722cd41 100644 --- a/src/docs/win32api/2/RegisterClass.html +++ b/src/docs/win32api/2/RegisterClass.html @@ -1,6 +1,6 @@ - +

函数功能

该函数注册在随后调用CreateWindow函数和CreateWindowEx函数中使用的窗口类。 RegisterClass函数己经由函数RegisterClassEx函数来代替,但是,如果不需要设置类的小目标则仍然可以使用RegisterClass函数。

函数原型

ATON RegisterClass(CONST WNDCLASS ★lpWndClass);

参数

diff --git a/src/docs/win32api/2/RegisterClassEx.html b/src/docs/win32api/2/RegisterClassEx.html index 953c07f6..1f0dd075 100644 --- a/src/docs/win32api/2/RegisterClassEx.html +++ b/src/docs/win32api/2/RegisterClassEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为随后在调用Createwindow函数和CreatewindowEx函数中使用的窗口注册一个窗口类。

函数原型

ATON RegisterClassEX(CONST WNDCLASSEX★Ipwcx);

参数

diff --git a/src/docs/win32api/2/RemoveProp.html b/src/docs/win32api/2/RemoveProp.html index 708130a5..1eaed1ef 100644 --- a/src/docs/win32api/2/RemoveProp.html +++ b/src/docs/win32api/2/RemoveProp.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从指定的窗口的属性表中删除一项。指定的字符串标识了要删除的项。

函数原型

HANDLE RemoveProp(HWND hWnd,LPCTSTR lpString);

参数

diff --git a/src/docs/win32api/2/SetBitmapBits.html b/src/docs/win32api/2/SetBitmapBits.html index f597451c..0fc0f3a9 100644 --- a/src/docs/win32api/2/SetBitmapBits.html +++ b/src/docs/win32api/2/SetBitmapBits.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将位图的颜色数据位设置成指定值。

函数原型

LONG SetBitmapBits(HBITMAP hmbp, DWORD cBytes, CONST VOID (lpBits);

参数

diff --git a/src/docs/win32api/2/SetBitmapDimensionEx.html b/src/docs/win32api/2/SetBitmapDimensionEx.html index 833f57cc..4bdcaf85 100644 --- a/src/docs/win32api/2/SetBitmapDimensionEx.html +++ b/src/docs/win32api/2/SetBitmapDimensionEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为位图指定首选的大小。这些大小可以为应用程序所用,然而不能被系统所用。

函数原型

BOOL SetBitmapDimensionEx(HBITMAP bBitmap, int nWidth, int nHeight, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/2/SetClassLong.html b/src/docs/win32api/2/SetClassLong.html index dce06eb5..42f937c9 100644 --- a/src/docs/win32api/2/SetClassLong.html +++ b/src/docs/win32api/2/SetClassLong.html @@ -1,6 +1,6 @@ - +

函数功能

该函数替换在额外类存储空间的指定偏移地址的32位长整型值,或替换指定窗口所属类的WNDCLASSEX结构。

函数原型

DWORD SetClassLong(HWND hWnd,int nlndex,LONG dwNewLong);

参数

diff --git a/src/docs/win32api/2/SetClassWord.html b/src/docs/win32api/2/SetClassWord.html index d2a97e00..a5d4c536 100644 --- a/src/docs/win32api/2/SetClassWord.html +++ b/src/docs/win32api/2/SetClassWord.html @@ -1,6 +1,6 @@ - +

函数功能

该函数替换指定窗口所属的窗口类的额外存储空间中的指定偏移地址的16位值。由16位窗口支持的GCW_值己经过时,必须使用SetClassLong函数来设置此前使用SetClassword函数的GCW_值设置的类值。

函数原型

WORD SetClassWord(HWND hWnd,int nlndex,WORD wNewWord);

参数

diff --git a/src/docs/win32api/2/SetDIBColorTable.html b/src/docs/win32api/2/SetDIBColorTable.html index 02deaf1e..fe2d93ef 100644 --- a/src/docs/win32api/2/SetDIBColorTable.html +++ b/src/docs/win32api/2/SetDIBColorTable.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用来对目前进入指定设备环境的设备无关位图(DIB)颜色表中的项设置RGB(红、绿、蓝)颜色值。

函数原型

UINT SetDIBColorTable(HDC hdc, UINT uStartindex, UINT cEntries, CONST RGBQUAD *pColors);

参数

diff --git a/src/docs/win32api/2/SetDIBits.html b/src/docs/win32api/2/SetDIBits.html index d1bc8981..6fcf8605 100644 --- a/src/docs/win32api/2/SetDIBits.html +++ b/src/docs/win32api/2/SetDIBits.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使用指定的DIB位图中发现的颜色数据来设置位图中的像素。

函数原型

int SetDIBits(HDC hdc, HBITMAP hbmp, UINT uStartScan, UINT cScanLines, CONST VOID *lpvBits,CONST BITMAPINFO *lpbmi, UINT fuColorUse);

参数

diff --git a/src/docs/win32api/2/SetDIBitsToDevice.html b/src/docs/win32api/2/SetDIBitsToDevice.html index 343d9069..a111fcf9 100644 --- a/src/docs/win32api/2/SetDIBitsToDevice.html +++ b/src/docs/win32api/2/SetDIBitsToDevice.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使用DIB位图和颜色数据对与目标设备环境相关的设备上的指定矩形中的像素进行设置。对于Windows 98和Windows NT 5.0,函数SetDIBitsToDevice已经得到扩展,它允许JPEG图像作为源图像。

函数原型

int SetDIBitsToDevice(HDC hdc, int xDest, int Ydest, DWORD dwWidth, DWORD dwHeight, intXSrc, int Ysrc, UINT uStartScan, UINT cScanLines, CONST VOID *lpvBits, CONST BITMAPINFO *lpbmi, UINT fuColorUse);

参数

diff --git a/src/docs/win32api/2/SetPixeIV.html b/src/docs/win32api/2/SetPixeIV.html index 06c76f2d..6a9a3913 100644 --- a/src/docs/win32api/2/SetPixeIV.html +++ b/src/docs/win32api/2/SetPixeIV.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定坐标处的像素设置为与指定颜色最接近的颜色,该像素点必须在剪辑区和设备表面的可视部分内。  

函数原型

BOOL SetPixeIV(HDC hdc, int X, int Y, COLORREF crColor);  

参数

   diff --git a/src/docs/win32api/2/SetPixel.html b/src/docs/win32api/2/SetPixel.html index 9998a8d6..d5c3fd3b 100644 --- a/src/docs/win32api/2/SetPixel.html +++ b/src/docs/win32api/2/SetPixel.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定坐标处的像素设为指定的颜色。

函数原型

COLORREF SetPixel(HDC hdc, int X, int Y, COLORREF crColor);

参数

diff --git a/src/docs/win32api/2/SetProp.html b/src/docs/win32api/2/SetProp.html index 3aa5b4e8..25ed4b8a 100644 --- a/src/docs/win32api/2/SetProp.html +++ b/src/docs/win32api/2/SetProp.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定窗口的属性表中增加一个新项,或者修改一个现有项。如果指定的字符串不在属性表中,那么就增加该新的项,新项中包含该字符串和句柄,否则就用指定的句柄替换该字符串的全前句柄。

函数原型

BOOL SetProp(HWND hWnd,LPCTSTR lpString,HANDLE hData);

参数

diff --git a/src/docs/win32api/2/SetStretchBltMode.html b/src/docs/win32api/2/SetStretchBltMode.html index 91ff35e3..a5892dc8 100644 --- a/src/docs/win32api/2/SetStretchBltMode.html +++ b/src/docs/win32api/2/SetStretchBltMode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以设置指定设备环境中的位图拉伸模式。

函数原型

int SetSTretchBltMode(HDC hdc, int iStretchMode);

参数

diff --git a/src/docs/win32api/2/SetWindowLong.html b/src/docs/win32api/2/SetWindowLong.html index d4e9606e..adff1821 100644 --- a/src/docs/win32api/2/SetWindowLong.html +++ b/src/docs/win32api/2/SetWindowLong.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变指定窗口的属性.函数也将指定的一个32位值设置在窗口的额外存储空间的指定偏移位置。

函数原型

LONG SetWindowLong(HWND hWnd,int nlndex,LONG dwNewLong);

参数

diff --git a/src/docs/win32api/2/SetWindowWord.html b/src/docs/win32api/2/SetWindowWord.html index 0762bf00..65f2c74e 100644 --- a/src/docs/win32api/2/SetWindowWord.html +++ b/src/docs/win32api/2/SetWindowWord.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已经过时。GWW_value已不再被支持。32位Windows程序应该使用SetWindowLong函数。
diff --git a/src/docs/win32api/2/StretchBlt.html b/src/docs/win32api/2/StretchBlt.html index db493ca3..ae6fdfa5 100644 --- a/src/docs/win32api/2/StretchBlt.html +++ b/src/docs/win32api/2/StretchBlt.html @@ -1,6 +1,6 @@ - +

函数功能

函数从源矩形中复制一个位图到目标矩形,必要时按目前目标设备设置的模式进行图像的拉伸或压缩。

函数原型

BOOL StretchBlt(HDC hdcDest, int nXOriginDest, int nYOriginDest, int nWidthDest, int nHeighDest, HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, DWORD dwRop);

参数

diff --git a/src/docs/win32api/2/StretchDIBits.html b/src/docs/win32api/2/StretchDIBits.html index 9d669fe7..e65928b3 100644 --- a/src/docs/win32api/2/StretchDIBits.html +++ b/src/docs/win32api/2/StretchDIBits.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将DIB中矩形区域内像素使用的颜色数据拷贝到指定的目标矩形中。如果目标矩形比源矩形大小要大,那么函数对颜色数据的行和列进行拉伸,以与目标矩形匹配。如果目标矩形大小要比源矩形小,那么该函数通过使用指定的光栅操作对行列进行压缩。

函数原型

int StretchDIBits(HDC hdc, int XDest , int YDest , int nDestWidth, int nDestHeight, int XSrc, int Ysrc, int nSrcWidth, int nSrcHeight, CONST VOID *lpBits, CONST BITMAPINFO * lpBitsInfo, UINT iUsage, DWORD dwRop);

参数

diff --git a/src/docs/win32api/2/TransparentBlt.html b/src/docs/win32api/2/TransparentBlt.html index cc8d6d00..b4499bba 100644 --- a/src/docs/win32api/2/TransparentBlt.html +++ b/src/docs/win32api/2/TransparentBlt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对指定的源设备环境中的矩形区域像素的颜色数据进行位块(bit_block)转换,并将结果置于目标设备环境。

函数原型

BOOL TransparentBltm(HDC hdcDest, int nXOriginDest, int nYOriginDest, int nWidthDest, int hHeightDest, HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, UINT crTransparent);

参数

diff --git a/src/docs/win32api/2/WindowProc.html b/src/docs/win32api/2/WindowProc.html index 37ef0850..885143bf 100644 --- a/src/docs/win32api/2/WindowProc.html +++ b/src/docs/win32api/2/WindowProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个应用程序定义的函数。它处理发送给窗口的消息。WNDPROC类型定义了一个指向该回调函数的指针。WindowProc是用于应用程序定义函数的占位符。

函数原型

LRESULT CALLBACK WindowProc(HWND hwhd,uMsg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/2/位图函数(Bitmap).html b/src/docs/win32api/2/位图函数(Bitmap).html index aacb591b..9707f0a0 100644 --- a/src/docs/win32api/2/位图函数(Bitmap).html +++ b/src/docs/win32api/2/位图函数(Bitmap).html @@ -1,6 +1,6 @@ - + 位图函数(Bitmap) diff --git a/src/docs/win32api/2/窗口属性函数(Window Property).html b/src/docs/win32api/2/窗口属性函数(Window Property).html index 733c7290..288ae3b3 100644 --- a/src/docs/win32api/2/窗口属性函数(Window Property).html +++ b/src/docs/win32api/2/窗口属性函数(Window Property).html @@ -1,6 +1,6 @@ - + 窗口属性函数(Window Property) diff --git a/src/docs/win32api/2/窗口类函数(Window Class).html b/src/docs/win32api/2/窗口类函数(Window Class).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/2/窗口类函数(Window Class).html +++ b/src/docs/win32api/2/窗口类函数(Window Class).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/2/窗口过程函数(Window Procedure).html b/src/docs/win32api/2/窗口过程函数(Window Procedure).html index 7d3219de..3127ed72 100644 --- a/src/docs/win32api/2/窗口过程函数(Window Procedure).html +++ b/src/docs/win32api/2/窗口过程函数(Window Procedure).html @@ -1,6 +1,6 @@ - + 窗口过程函数(Window Procedure) diff --git a/src/docs/win32api/3/AnimatePale.html b/src/docs/win32api/3/AnimatePale.html index 2d52bf14..32132b1c 100644 --- a/src/docs/win32api/3/AnimatePale.html +++ b/src/docs/win32api/3/AnimatePale.html @@ -1,6 +1,6 @@ - +

函数功能

该函数替换指定逻辑调色板上的入口点。

函数原型

BOOL AnimatePalette(HPALETTE hpal, UINT iStartindex, UINT cEntries, CONST PALETTEENTRY *ppe);

参数

diff --git a/src/docs/win32api/3/CancelDc.html b/src/docs/win32api/3/CancelDc.html index 0ee104c3..eb9c59e4 100644 --- a/src/docs/win32api/3/CancelDc.html +++ b/src/docs/win32api/3/CancelDc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数的功能是把设备上下文环境中悬而未决的操作取消。

函数原型

BOOL CancelDC(HDc hdc);

参数

diff --git a/src/docs/win32api/3/ChangeDisplaySettings.html b/src/docs/win32api/3/ChangeDisplaySettings.html index 6f47f629..c4ba7a0c 100644 --- a/src/docs/win32api/3/ChangeDisplaySettings.html +++ b/src/docs/win32api/3/ChangeDisplaySettings.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把缺省显示设备的设置改变为由lpDevMode设定的图形模式,要改变一个特定显示设备的设置,请使用ChangeDisplaySettingEx函数。

函数原型

LONG ChangeDisplaySettings (LPDEVMODE lpDevMode, DWORD dwflags);

参数

diff --git a/src/docs/win32api/3/ClientToscreen.html b/src/docs/win32api/3/ClientToscreen.html index d0c9a7fc..6b67b607 100644 --- a/src/docs/win32api/3/ClientToscreen.html +++ b/src/docs/win32api/3/ClientToscreen.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定点的用户坐标转换成屏幕坐标。

函数原型

BOOL ClientToScreen(HWND hWnd,LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/CombineTransform.html b/src/docs/win32api/3/CombineTransform.html index b6f310ab..c55407cb 100644 --- a/src/docs/win32api/3/CombineTransform.html +++ b/src/docs/win32api/3/CombineTransform.html @@ -1,6 +1,6 @@ - +

函数功能

该函数连接两个全局空间到页空间的转换。

函数原型

BOOL CombineTransform(LPXFORM lpxformResult, CONST XFORM *lpxform1, CONST XFORM *lpxform2);

参数

diff --git a/src/docs/win32api/3/CreatHalftonePalette.html b/src/docs/win32api/3/CreatHalftonePalette.html index 4cfb1fd3..13170fb1 100644 --- a/src/docs/win32api/3/CreatHalftonePalette.html +++ b/src/docs/win32api/3/CreatHalftonePalette.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个指定设备环境的半色调调色板。

函数原型

HPALETTE CreateHalftonePalette(HDC hdc);

参数

diff --git a/src/docs/win32api/3/CreateBrushlndirect.html b/src/docs/win32api/3/CreateBrushlndirect.html index 047d7b3a..b3c9cdf9 100644 --- a/src/docs/win32api/3/CreateBrushlndirect.html +++ b/src/docs/win32api/3/CreateBrushlndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以创建具有指定风格、颜色和模式的逻辑刷子。

函数原型

HBRUSH CreateBrushlndirect(CONST LOGBRUSH *lplb);

参数

diff --git a/src/docs/win32api/3/CreateDIBPatternBrush.html b/src/docs/win32api/3/CreateDIBPatternBrush.html index 18119fed..839425fb 100644 --- a/src/docs/win32api/3/CreateDIBPatternBrush.html +++ b/src/docs/win32api/3/CreateDIBPatternBrush.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个逻辑刷子,该刷子的模式由指定的DIB(与设备无关位图)位图来指定。该刷子可以连续地选入到任何与支持光栅操作的设备相关的设备环境中。

函数原型

HBRUSHCreateDIBPattermBrush(HGLOBALhglbDIBPacked, UINTfuColorSpec);

参数

diff --git a/src/docs/win32api/3/CreateDIBPatternBrushPt.html b/src/docs/win32api/3/CreateDIBPatternBrushPt.html index c184a142..306badf1 100644 --- a/src/docs/win32api/3/CreateDIBPatternBrushPt.html +++ b/src/docs/win32api/3/CreateDIBPatternBrushPt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以创建一个具有DIB(与设备无在的位图)指定模式的逻辑刷子。

函数原型

HBRUSH CreateDIBPattemBrushPt(CONST VOID *lpPackedDIB, UINT iUsage);

参数

diff --git a/src/docs/win32api/3/CreateHatchBrush.html b/src/docs/win32api/3/CreateHatchBrush.html index d3f4b10d..d3cb3ccb 100644 --- a/src/docs/win32api/3/CreateHatchBrush.html +++ b/src/docs/win32api/3/CreateHatchBrush.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以创建一个具有指定阴影模式和颜色的逻辑刷子。

函数原型

HBRUSH CreateHatchBrush(int fnStyle, COLORREF clrref);

参数

diff --git a/src/docs/win32api/3/CreatePalette.html b/src/docs/win32api/3/CreatePalette.html index caf17462..6227fc18 100644 --- a/src/docs/win32api/3/CreatePalette.html +++ b/src/docs/win32api/3/CreatePalette.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个逻辑彩色调色板。

函数原型

HPALETTE CreatePalette(CONST LOGPALETTE *lplgpl);

参数

diff --git a/src/docs/win32api/3/CreatePatternBrush.html b/src/docs/win32api/3/CreatePatternBrush.html index 92e8ed02..6a833876 100644 --- a/src/docs/win32api/3/CreatePatternBrush.html +++ b/src/docs/win32api/3/CreatePatternBrush.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以创建具有指定位图模式的逻辑刷子,该位图不能是DIB类型的位图,DIB位图是由CreateDIBSection函数创建的。

函数原型

HBRUSH CreatePatternBrush(HBITMAP hbmp);

参数

diff --git a/src/docs/win32api/3/CreateSolidBrush.html b/src/docs/win32api/3/CreateSolidBrush.html index 992cf411..2a0b4edb 100644 --- a/src/docs/win32api/3/CreateSolidBrush.html +++ b/src/docs/win32api/3/CreateSolidBrush.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个具有指定颜色的逻辑刷子。
函数原理:HBRUSH CreateSolidBrush(COLORREF crColor);

参数

diff --git a/src/docs/win32api/3/DptoLP.html b/src/docs/win32api/3/DptoLP.html index d013675e..48091675 100644 --- a/src/docs/win32api/3/DptoLP.html +++ b/src/docs/win32api/3/DptoLP.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将设备坐标转变为逻辑坐标,转变依赖于设备的图形模式,窗口和坐标的起点及范围的设置,和转换的内容。

函数原型

BOOL DptoLP(HDC hdc, LPPOINT lpPoints, int nCount);

参数

diff --git a/src/docs/win32api/3/ExcludeClipRect.html b/src/docs/win32api/3/ExcludeClipRect.html index 93529576..688198e4 100644 --- a/src/docs/win32api/3/ExcludeClipRect.html +++ b/src/docs/win32api/3/ExcludeClipRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数的功能是创建一个新的剪切区域,该区域由一个现存的剪切区域减去一个特定的矩形区域而构成。

函数原型

int ExcludeClipRect(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);

参数

diff --git a/src/docs/win32api/3/ExtSelectClipRgn.html b/src/docs/win32api/3/ExtSelectClipRgn.html index aad2f02b..2406fb12 100644 --- a/src/docs/win32api/3/ExtSelectClipRgn.html +++ b/src/docs/win32api/3/ExtSelectClipRgn.html @@ -1,6 +1,6 @@ - +

函数功能

访函数通过特定的方式把一个特定的区域与当前的剪切区域合并在一起。

函数原型

int ExtSelectClipRgn (HDc hdc, HRGN hrgn, int fnMode);

参数

diff --git a/src/docs/win32api/3/FixBrushOrgEx.html b/src/docs/win32api/3/FixBrushOrgEx.html index 190e0480..ff78892a 100644 --- a/src/docs/win32api/3/FixBrushOrgEx.html +++ b/src/docs/win32api/3/FixBrushOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

在Win32API中没有实现FixBrushOrgEx函数,在这里提供出来是考虑与Win32的兼容性,如果调用它,那么该函数什么也不做,并且返回FALSE。 diff --git a/src/docs/win32api/3/GetBrushOrgEx.html b/src/docs/win32api/3/GetBrushOrgEx.html index b303639d..43a829cf 100644 --- a/src/docs/win32api/3/GetBrushOrgEx.html +++ b/src/docs/win32api/3/GetBrushOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可检索用于指定设备环境的当前刷子的起始点,该函数替代了函数GetBrush Org。

函数原型

BOOL GetBrushOrgEx(HDC hdc, LPPOINT lppt);

参数

diff --git a/src/docs/win32api/3/GetClipBox.html b/src/docs/win32api/3/GetClipBox.html index 42a22141..0e68790c 100644 --- a/src/docs/win32api/3/GetClipBox.html +++ b/src/docs/win32api/3/GetClipBox.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到一个能够完包含当前可见区域的最小矩形的大小。该可见区域由当前的剪切区域定义或由剪切路径所定义或者由任何重迭的窗口所定义。

函数原型

int GetClipBox(HDC hdc, LPRECT lprc);

参数

diff --git a/src/docs/win32api/3/GetClipRgn.html b/src/docs/win32api/3/GetClipRgn.html index 31efc2f6..0c2facab 100644 --- a/src/docs/win32api/3/GetClipRgn.html +++ b/src/docs/win32api/3/GetClipRgn.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到一个句柄,该句柄标识了由当前应用定义的剪切区域。

函数原型

int GetClipRgn(HDC hdc, HRGN hrgn);

参数

diff --git a/src/docs/win32api/3/GetColorAdjustment.html b/src/docs/win32api/3/GetColorAdjustment.html index fb8b6ae8..38872c9a 100644 --- a/src/docs/win32api/3/GetColorAdjustment.html +++ b/src/docs/win32api/3/GetColorAdjustment.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取指定设备环境的颜色调整值。

函数原型

BOOL GetColorAdjustment(HDC hdc, LPCOLORADJUSTMENT lpca);

参数

diff --git a/src/docs/win32api/3/GetCurrentPositionEx.html b/src/docs/win32api/3/GetCurrentPositionEx.html index 87428a9e..9f6f5434 100644 --- a/src/docs/win32api/3/GetCurrentPositionEx.html +++ b/src/docs/win32api/3/GetCurrentPositionEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取逻辑坐标中的当前位置。

函数原型

BOOL GetCurrentPositionEx(HDC hdc, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/GetGraphicsMode.html b/src/docs/win32api/3/GetGraphicsMode.html index 8d0c0df6..252439af 100644 --- a/src/docs/win32api/3/GetGraphicsMode.html +++ b/src/docs/win32api/3/GetGraphicsMode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为规定的设备环境获取当前的绘图模式。

函数原型

int GetGraphicsMode(HDC hdc);

参数

diff --git a/src/docs/win32api/3/GetMapMode.html b/src/docs/win32api/3/GetMapMode.html index 962b783d..b06eda96 100644 --- a/src/docs/win32api/3/GetMapMode.html +++ b/src/docs/win32api/3/GetMapMode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取当前映射方式。
函数原理:int GetMapMode(HDC hdc);

参数

diff --git a/src/docs/win32api/3/GetMetaRgn.html b/src/docs/win32api/3/GetMetaRgn.html index 9489fefb..e6f79afc 100644 --- a/src/docs/win32api/3/GetMetaRgn.html +++ b/src/docs/win32api/3/GetMetaRgn.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到特定设备环境的当前元区域。

函数原型

int GetMetaRgn(HDC hdc, HRGN hrgn);

参数

diff --git a/src/docs/win32api/3/GetNearestColor.html b/src/docs/win32api/3/GetNearestColor.html index d53ae1a4..893e1cc4 100644 --- a/src/docs/win32api/3/GetNearestColor.html +++ b/src/docs/win32api/3/GetNearestColor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回一个颜色值,该值和系统调色板的一个颜色相一致,当使用一个特定的颜色值时,该颜色被显示。

函数原型

COLORREF GetNearColor (HDC hdc, COLORREF crColor);

参数

diff --git a/src/docs/win32api/3/GetNearestPaletteIndex.html b/src/docs/win32api/3/GetNearestPaletteIndex.html index 3ebc3bdb..8a707afe 100644 --- a/src/docs/win32api/3/GetNearestPaletteIndex.html +++ b/src/docs/win32api/3/GetNearestPaletteIndex.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取指定逻辑调色板入口的索引,以与一个特定的颜色值相匹配。

函数原型

UINT GetNearestPaletteIndex(HPALETTE hpal, COLORREF crColor);

参数

diff --git a/src/docs/win32api/3/GetPaletteEntries.html b/src/docs/win32api/3/GetPaletteEntries.html index b17e7d66..d2cb41e2 100644 --- a/src/docs/win32api/3/GetPaletteEntries.html +++ b/src/docs/win32api/3/GetPaletteEntries.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从给定的逻辑调色板中提出指定范围的调色板项目。

函数原型

UINT GetPaletteEntries(HPALETTE hpal, UINT iStartIndex, UINT nEntries, LPPALETTEENTRY lppe);

参数

diff --git a/src/docs/win32api/3/GetSysColorBrush.html b/src/docs/win32api/3/GetSysColorBrush.html index 687affff..16946545 100644 --- a/src/docs/win32api/3/GetSysColorBrush.html +++ b/src/docs/win32api/3/GetSysColorBrush.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以检索标识逻辑刷子的句柄,该刷子对应指定的颜色索引值。

函数原型

HBRUSH GetSysColorBrush(int nIndex);

参数

diff --git a/src/docs/win32api/3/GetSystemPaletteUse.html b/src/docs/win32api/3/GetSystemPaletteUse.html index 3e0b53ee..74e42392 100644 --- a/src/docs/win32api/3/GetSystemPaletteUse.html +++ b/src/docs/win32api/3/GetSystemPaletteUse.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取特定设备环境的系统调色板的当前状态。

函数原型

UINT GetSystemPaletteUse(HDc hdc);

参数

diff --git a/src/docs/win32api/3/GetSystempaletteEntries.html b/src/docs/win32api/3/GetSystempaletteEntries.html index 7290beee..a05b36fd 100644 --- a/src/docs/win32api/3/GetSystempaletteEntries.html +++ b/src/docs/win32api/3/GetSystempaletteEntries.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从与指定设备环境有关系的系统调色板中检取调色板入口点的范围。

函数原型

UINT GetSystemPaletteEntries(HDC hdc, UINT iStartIndex, UINT nEntries, LPPALETTEENTRY lppe);

参数

diff --git a/src/docs/win32api/3/GetViewportExtEx.html b/src/docs/win32api/3/GetViewportExtEx.html index 4f74d308..a7f64b7a 100644 --- a/src/docs/win32api/3/GetViewportExtEx.html +++ b/src/docs/win32api/3/GetViewportExtEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取指定的设置环境的当前坐标的X和Y的范围。

函数原型

BOOL GetViewportExtEx(HDC hdc, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/3/GetViewportOrgEx.html b/src/docs/win32api/3/GetViewportOrgEx.html index 6995e38b..8603221e 100644 --- a/src/docs/win32api/3/GetViewportOrgEx.html +++ b/src/docs/win32api/3/GetViewportOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定设备环境获取坐标原点的X坐标和Y坐标。

函数原型

BOOL GetViewportOrgEx(HDC hdc, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/GetWindowOrgEx.html b/src/docs/win32api/3/GetWindowOrgEx.html index 26389cda..7274175e 100644 --- a/src/docs/win32api/3/GetWindowOrgEx.html +++ b/src/docs/win32api/3/GetWindowOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定的设备环境获取窗口原点的X坐标和Y坐标。

函数原型

BOOL GetWindowOrgEx(HDC hdc, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/GetWindowsExtEx.html b/src/docs/win32api/3/GetWindowsExtEx.html index 86ccbb81..09582eb9 100644 --- a/src/docs/win32api/3/GetWindowsExtEx.html +++ b/src/docs/win32api/3/GetWindowsExtEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定的设备环境获取窗口的X和Y的范围。

函数原型

BOOL GetWindowsExtEx(HDC hdc, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/3/GetWorldTransform.html b/src/docs/win32api/3/GetWorldTransform.html index 591b354c..144f1d81 100644 --- a/src/docs/win32api/3/GetWorldTransform.html +++ b/src/docs/win32api/3/GetWorldTransform.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取当前全局空间到页面空间的转换。

函数原型

BOOL GetWorldTransform(HDC hdc, LPXFORM lpXform);

参数

diff --git a/src/docs/win32api/3/HTUI_ColorAdjustment.html b/src/docs/win32api/3/HTUI_ColorAdjustment.html index 76462ef1..db8dfa85 100644 --- a/src/docs/win32api/3/HTUI_ColorAdjustment.html +++ b/src/docs/win32api/3/HTUI_ColorAdjustment.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示中间色调色彩调整的缺省用户接口。

函数原型

LOGN APIENTRY HTUI_ColorAdjustment(LPWSTR pCallertitle, HANDLE hDefDIB, LPWSTR pDefDIBTitle, PCOLORADJUSTMENT pColorAdjustment, BOOL ShowMonochromeOnly, BOOL UpdatePermission);

参数

diff --git a/src/docs/win32api/3/HTUI_DeviceColorAdjustment.html b/src/docs/win32api/3/HTUI_DeviceColorAdjustment.html index c2181eb0..b127249d 100644 --- a/src/docs/win32api/3/HTUI_DeviceColorAdjustment.html +++ b/src/docs/win32api/3/HTUI_DeviceColorAdjustment.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示一个指定设备的调整颜色的用户界面,例如打印机。

函数原型

LONG APIENTRY HTUI_DeviceColorAdjustment(LPSTR pDeviceName, PDEVHTADJDATA pDevHTAdjData);

参数

diff --git a/src/docs/win32api/3/IntersectClipRect.html b/src/docs/win32api/3/IntersectClipRect.html index 3299247e..968673d6 100644 --- a/src/docs/win32api/3/IntersectClipRect.html +++ b/src/docs/win32api/3/IntersectClipRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建了一个新的剪切区域,该区域是当前剪切区域和一个特定矩形的交集。

函数原型

int IntersectClipRect(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);

参数

diff --git a/src/docs/win32api/3/LptoDP.html b/src/docs/win32api/3/LptoDP.html index eb1997fa..1a3736af 100644 --- a/src/docs/win32api/3/LptoDP.html +++ b/src/docs/win32api/3/LptoDP.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把逻辑坐标转换为设备坐标,此转换依赖于设备环境的映射方式,原点的设置、窗口和观察口的范围及全局转换。

函数原型

BOOL LptoDP(LPPOINT lpPoints, int nCount, HDC hdc);

参数

diff --git a/src/docs/win32api/3/MapWindowPoints.html b/src/docs/win32api/3/MapWindowPoints.html index 09dd88da..bb13a28c 100644 --- a/src/docs/win32api/3/MapWindowPoints.html +++ b/src/docs/win32api/3/MapWindowPoints.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把相对于一个窗口的坐标空间的一组点映射成相对于另一窗口的坐标空 的一组点。

函数原型

int MapwindowPoints(HWND hWndFrom, HWND hWndTo,LPPOINT lpPoints, UINT cPoints);

参数

diff --git a/src/docs/win32api/3/Modify_WorldTransform.html b/src/docs/win32api/3/Modify_WorldTransform.html index d7530ed2..7b4aedbc 100644 --- a/src/docs/win32api/3/Modify_WorldTransform.html +++ b/src/docs/win32api/3/Modify_WorldTransform.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的方式修改与设备环境有关的全局转换。

函数原型

BOOL ModifyWorldTransform(HDc hdc, CONST XFORM *lpXform, DWORD iMode);

参数

diff --git a/src/docs/win32api/3/OffsetClipRgn.html b/src/docs/win32api/3/OffsetClipRgn.html index a89b0ac8..18738081 100644 --- a/src/docs/win32api/3/OffsetClipRgn.html +++ b/src/docs/win32api/3/OffsetClipRgn.html @@ -1,6 +1,6 @@ - +

函数功能

该函数按指定的位移,移动设备上下文环境的剪切区域。

函数原型

int OffsetClipRgn(HDC hdc, int nXOffset, int nYOffset);

参数

diff --git a/src/docs/win32api/3/OffsetViewportOrgEx.html b/src/docs/win32api/3/OffsetViewportOrgEx.html index ac56f926..370e831a 100644 --- a/src/docs/win32api/3/OffsetViewportOrgEx.html +++ b/src/docs/win32api/3/OffsetViewportOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的水平位移和垂直位移改变设备环境的观察窗原点。

函数原型

BOOL OffsetViewportOrgEx(HDC hdc, int nXOffset, int nYOffset, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/OffsetWindowOrgEx.html b/src/docs/win32api/3/OffsetWindowOrgEx.html index 01856d12..5ab7a312 100644 --- a/src/docs/win32api/3/OffsetWindowOrgEx.html +++ b/src/docs/win32api/3/OffsetWindowOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的水平位移和垂直位移改变设备环境的窗口原点。

函数原型

BOOL OffsetWindowOrgEx(HDC hdc, int nXOffset, int nYOffset, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/PatBlt.html b/src/docs/win32api/3/PatBlt.html index 931ce79a..09363546 100644 --- a/src/docs/win32api/3/PatBlt.html +++ b/src/docs/win32api/3/PatBlt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使用当前选入指定设备环境中的刷子绘制给定的矩形区域。通过使用给出的光栅操作来对该刷子的颜色和表面颜色进行组合。

函数原型

BOOL PatBlt(HDC hdc, int nXLeft, int nYLeft, int nWidth, int nHeight, DWORD dwRop);

参数

diff --git a/src/docs/win32api/3/PtVisible.html b/src/docs/win32api/3/PtVisible.html index 8d5f950f..412927fb 100644 --- a/src/docs/win32api/3/PtVisible.html +++ b/src/docs/win32api/3/PtVisible.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定的点是否在设备环境的剪切区域之内。

函数原型

BOOL PtVisible(HDC hdc, int X, int Y);

参数

diff --git a/src/docs/win32api/3/RealizePalette.html b/src/docs/win32api/3/RealizePalette.html index fa9dc8bf..5c626495 100644 --- a/src/docs/win32api/3/RealizePalette.html +++ b/src/docs/win32api/3/RealizePalette.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从当前逻辑调色板中映射调色板入口点到系统调色板中。

函数原型

UINT RealizePalette(HDC hdc);

参数

diff --git a/src/docs/win32api/3/RectVisible.html b/src/docs/win32api/3/RectVisible.html index 44934c81..24705393 100644 --- a/src/docs/win32api/3/RectVisible.html +++ b/src/docs/win32api/3/RectVisible.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定矩形的任何部分是否在设备上下文环境的剪切区域之内。

函数原型

BOOL RectVisible(HDC hdc, CONSTRECT *lprc);

参数

diff --git a/src/docs/win32api/3/ResizePalette.html b/src/docs/win32api/3/ResizePalette.html index d587bf01..83c7f874 100644 --- a/src/docs/win32api/3/ResizePalette.html +++ b/src/docs/win32api/3/ResizePalette.html @@ -1,6 +1,6 @@ - +

函数功能

该函数增大或减小基于指定值的逻辑调色板的大小。

函数原型

BOOL ResizePalette(HPALETTE hpal, UINT nEntries);

参数

diff --git a/src/docs/win32api/3/ScaleViewportExtEx.html b/src/docs/win32api/3/ScaleViewportExtEx.html index 5f6ed07d..03bb1bb9 100644 --- a/src/docs/win32api/3/ScaleViewportExtEx.html +++ b/src/docs/win32api/3/ScaleViewportExtEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的乘数与除数按比例修改设备环境的视窗。

函数原型

BOOL ScaleViewportExtEx(HDC hdc, int Xnum, int Xdenom, int Ynum, int Ydenom, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/3/ScaleWindowExtEx.html b/src/docs/win32api/3/ScaleWindowExtEx.html index 85565a4b..87a14668 100644 --- a/src/docs/win32api/3/ScaleWindowExtEx.html +++ b/src/docs/win32api/3/ScaleWindowExtEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的乘数和除数按比例来改变设备环境窗口。

函数原型

BOOL ScaleWindowExtEx(HDC hdc, int Xnum, int Xdenom, int Ynum, int Ydenom, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/3/ScreenToClient.html b/src/docs/win32api/3/ScreenToClient.html index 452f8557..26440bd6 100644 --- a/src/docs/win32api/3/ScreenToClient.html +++ b/src/docs/win32api/3/ScreenToClient.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把屏幕上指定点的屏幕坐标转换成用户坐标。

函数原型

BOOL ScreenToClient(HWND hWnd, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/SelectClipPath.html b/src/docs/win32api/3/SelectClipPath.html index 88526d67..dfdb58d5 100644 --- a/src/docs/win32api/3/SelectClipPath.html +++ b/src/docs/win32api/3/SelectClipPath.html @@ -1,6 +1,6 @@ - +

函数功能

该函数选择当前的路径作为设备环境的一个剪切区域。通过使用特定的模式把新的区域与任何存在的剪切区域合并。

函数原型

BOOL SelectClipPath(HDC hdc, int iMode);

参数

diff --git a/src/docs/win32api/3/SelectClipRgn.html b/src/docs/win32api/3/SelectClipRgn.html index 939b23d3..19d8319a 100644 --- a/src/docs/win32api/3/SelectClipRgn.html +++ b/src/docs/win32api/3/SelectClipRgn.html @@ -1,6 +1,6 @@ - +

函数功能

该函数选择一个区域作为指定设备环境的当前剪切区域。

函数原型

int SelectClipRgn(HDc hdc, HRGN hrgn);

参数

diff --git a/src/docs/win32api/3/SelectPalette.html b/src/docs/win32api/3/SelectPalette.html index 79e74794..fcdabaf8 100644 --- a/src/docs/win32api/3/SelectPalette.html +++ b/src/docs/win32api/3/SelectPalette.html @@ -1,6 +1,6 @@ - +

函数功能

该函数选择指定的逻辑调色板到一个设备环境中。

函数原型

HPALETTE SelectPalette(HDC hdc, HPALETTE hpal, BOOL bForceBackground);

参数

diff --git a/src/docs/win32api/3/SetBrushOrgEx.html b/src/docs/win32api/3/SetBrushOrgEx.html index 689ef0a3..e138c81e 100644 --- a/src/docs/win32api/3/SetBrushOrgEx.html +++ b/src/docs/win32api/3/SetBrushOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置刷子起始点,GDI将该起始点赋给应用程序选入指定设备环境的下一个刷子。

函数原型

BOOL SetBrushOrgEx(HDC hdc, int nXOrg, int nYOrg, LPPOINT lppt);

参数

diff --git a/src/docs/win32api/3/SetColorAdjustment.html b/src/docs/win32api/3/SetColorAdjustment.html index 02cde4fc..8e39d279 100644 --- a/src/docs/win32api/3/SetColorAdjustment.html +++ b/src/docs/win32api/3/SetColorAdjustment.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为一个使用指定值的设备环境设置颜色调整值。

函数原型

BOOL SetColorAdjustment(HDC hdc, CONST COLORADJUSTMENT *lpca);

参数

diff --git a/src/docs/win32api/3/SetGraphicsMode.html b/src/docs/win32api/3/SetGraphicsMode.html index 7991c9eb..7a573830 100644 --- a/src/docs/win32api/3/SetGraphicsMode.html +++ b/src/docs/win32api/3/SetGraphicsMode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定的设备环境设置图形模式。

函数原型

int SetGraphicsMode(HDC hdc, int iMode);

参数

diff --git a/src/docs/win32api/3/SetMapMode.html b/src/docs/win32api/3/SetMapMode.html index 573cb754..678d1ba1 100644 --- a/src/docs/win32api/3/SetMapMode.html +++ b/src/docs/win32api/3/SetMapMode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置指定设备环境的映射方式,映射方式定义了将逻辑单位转换为设备单位的度量单位,并定义了设备的X、Y轴的方向。

函数原型

int SetMapMode(HDC hdc, int fnMapMode);

参数

diff --git a/src/docs/win32api/3/SetMetaRgn.html b/src/docs/win32api/3/SetMetaRgn.html index 92cad766..e0c449fb 100644 --- a/src/docs/win32api/3/SetMetaRgn.html +++ b/src/docs/win32api/3/SetMetaRgn.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使指定设备环境的当前剪切区域与当前的元区域产生一个交集,并把该交集区域保存为指定设备环境的新的元区域。剪切区域被重置为空区域。

函数原型


参数

diff --git a/src/docs/win32api/3/SetPaletteEntrles.html b/src/docs/win32api/3/SetPaletteEntrles.html index 55f76cff..47714d16 100644 --- a/src/docs/win32api/3/SetPaletteEntrles.html +++ b/src/docs/win32api/3/SetPaletteEntrles.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为一个逻辑调色板的入口点数组设置RGB颜色值和标志。

函数原型

UINT SetPaletteEntries(HPALETTE hpal, UINT iStart, UINT cEntries, CONST PALETTEENTRY *lppe);

参数

diff --git a/src/docs/win32api/3/SetSystemPaletteUse.html b/src/docs/win32api/3/SetSystemPaletteUse.html index 6444def8..81f1b4fc 100644 --- a/src/docs/win32api/3/SetSystemPaletteUse.html +++ b/src/docs/win32api/3/SetSystemPaletteUse.html @@ -1,6 +1,6 @@ - +

函数功能

该函数允许一个应用指定系统调色板包含2个或20个静态颜色。缺省的系统调色板包含20个静态颜色(为一个应用映射一个逻辑调色板时,静态颜色不发生变化)。

函数原型

UINT SetSystemPaletteUse(HDC hdc, UINT uUsage);

参数

diff --git a/src/docs/win32api/3/SetViewportExtEx.html b/src/docs/win32api/3/SetViewportExtEx.html index 068f6c58..a70e15cc 100644 --- a/src/docs/win32api/3/SetViewportExtEx.html +++ b/src/docs/win32api/3/SetViewportExtEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的值来设置指定设备环境坐标的X轴、Y轴范围。

函数原型

BOOL SetViewportExtEx(HDC hdc, int nXExtent, int nYExtent, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/3/SetWorldTransform.html b/src/docs/win32api/3/SetWorldTransform.html index c4ba5b8e..3894eb3a 100644 --- a/src/docs/win32api/3/SetWorldTransform.html +++ b/src/docs/win32api/3/SetWorldTransform.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定的设备环境设置全局空间和页面空间之间的二维的线性转变,此转换可用于比例缩放、旋转、剪切或翻译图形的输出。

函数原型

BOOL SetWorldTransform(HDC hdc, CONST XFORM *lpXform);
hdc:指向设备环境的句柄。
diff --git a/src/docs/win32api/3/SetwindowOrgEx.html b/src/docs/win32api/3/SetwindowOrgEx.html index 948234af..b5a33c58 100644 --- a/src/docs/win32api/3/SetwindowOrgEx.html +++ b/src/docs/win32api/3/SetwindowOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的坐标设置设备环境的窗口原点。

函数原型

BOOL SetWindowOrgEx(HDC hdc, int X, int Y, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/3/UnrealizeObject.html b/src/docs/win32api/3/UnrealizeObject.html index 7dd0af8c..12991ab8 100644 --- a/src/docs/win32api/3/UnrealizeObject.html +++ b/src/docs/win32api/3/UnrealizeObject.html @@ -1,6 +1,6 @@ - +

函数功能

该函数重置一个逻辑调色板。它指导系统去映射调色板,虽然它以前并没有被映射过,下一次该应用为一个指定的调色板调用函数时,该系统把该逻辑调色板完全重新映射到系统调色板中。

函数原型

BOOL UnrealizeObject(HGDIOBJ hgdiobj);

参数

diff --git a/src/docs/win32api/3/UpdateColors.html b/src/docs/win32api/3/UpdateColors.html index 2acf8c58..851b1be6 100644 --- a/src/docs/win32api/3/UpdateColors.html +++ b/src/docs/win32api/3/UpdateColors.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过把客户区域的当前颜色重新映射到发前被映射过的逻辑调色板,来更新指定设备环境的客户区域。

函数原型

BOOL UpdateColors(HDC hdc);

参数

diff --git a/src/docs/win32api/3/剪切函数(Clipping).html b/src/docs/win32api/3/剪切函数(Clipping).html index c59fc262..767d865b 100644 --- a/src/docs/win32api/3/剪切函数(Clipping).html +++ b/src/docs/win32api/3/剪切函数(Clipping).html @@ -1,6 +1,6 @@ - + 剪切函数(Clipping) diff --git a/src/docs/win32api/3/坐标空间与变换函数(Coordinate Space Transformation).html b/src/docs/win32api/3/坐标空间与变换函数(Coordinate Space Transformation).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/3/坐标空间与变换函数(Coordinate Space Transformation).html +++ b/src/docs/win32api/3/坐标空间与变换函数(Coordinate Space Transformation).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/3/笔刷函数(Brush).html b/src/docs/win32api/3/笔刷函数(Brush).html index 58333c1c..edbead82 100644 --- a/src/docs/win32api/3/笔刷函数(Brush).html +++ b/src/docs/win32api/3/笔刷函数(Brush).html @@ -1,6 +1,6 @@ - + 笔刷函数(Brush) diff --git a/src/docs/win32api/3/设备环境函数(Device context).html b/src/docs/win32api/3/设备环境函数(Device context).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/3/设备环境函数(Device context).html +++ b/src/docs/win32api/3/设备环境函数(Device context).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/3/颜色函数(Color).html b/src/docs/win32api/3/颜色函数(Color).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/3/颜色函数(Color).html +++ b/src/docs/win32api/3/颜色函数(Color).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/4/AddfFontResource.html b/src/docs/win32api/4/AddfFontResource.html index 29fe4592..d4a43c45 100644 --- a/src/docs/win32api/4/AddfFontResource.html +++ b/src/docs/win32api/4/AddfFontResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从指定的文件里增加字体资源到系统字体表,这些字体可随后被任何基于Win32的应用程序用来作正文输出。

函数原型

int AddFontResource(LPCTSTR lpszFilename);

参数

diff --git a/src/docs/win32api/4/ChangeDisplaySettingsEx.html b/src/docs/win32api/4/ChangeDisplaySettingsEx.html index 75f53607..32e6c0ee 100644 --- a/src/docs/win32api/4/ChangeDisplaySettingsEx.html +++ b/src/docs/win32api/4/ChangeDisplaySettingsEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把显示设备在lpszDeviceName参数中定义的设置,改变为在lpDevMode参数中定义的图形模式。

函数原型

LONG ChangeDisplaySettingsEx(LPCSTR lpszDeviceName, LPDEVMODE lpDevMode, HWND hwnd, DWORD dwflags LPVOID lParam);

参数

diff --git a/src/docs/win32api/4/Chord.html b/src/docs/win32api/4/Chord.html index 6efd0235..226d8ab8 100644 --- a/src/docs/win32api/4/Chord.html +++ b/src/docs/win32api/4/Chord.html @@ -1,6 +1,6 @@ - +

函数功能

该函数画一段圆弧,圆弧是由一个椭圆和一条线段(称之为割线)相交限定的闭合区域。此弧由当前的画笔画轮廓,由当前的画刷填充。

函数原型

BOOL Chord(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, int nXRadial1, int nYRadial1, int nXRadial2, int nYRadial2);

参数

diff --git a/src/docs/win32api/4/CreateCompatibleDC.html b/src/docs/win32api/4/CreateCompatibleDC.html index 05447710..0931ffc4 100644 --- a/src/docs/win32api/4/CreateCompatibleDC.html +++ b/src/docs/win32api/4/CreateCompatibleDC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个与指定设备兼容的内存设备上下文环境(DC)。

函数原型

HDC CreateCompatibleDC(HDC hdc);

参数

diff --git a/src/docs/win32api/4/CreateDc.html b/src/docs/win32api/4/CreateDc.html index 2dccae1e..5689edd0 100644 --- a/src/docs/win32api/4/CreateDc.html +++ b/src/docs/win32api/4/CreateDc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过使用指定的名字为一个设备创建设备上下文环境。

函数原型

HDC CreateDC(LPCTSTR lpszDrive, LPCTSTR lpszDevice, LPCTSTR lpszOutput, CONST DEVMODE *lplnitData);

参数

diff --git a/src/docs/win32api/4/CreateFont.html b/src/docs/win32api/4/CreateFont.html index dc5b439d..ad2b0cf2 100644 --- a/src/docs/win32api/4/CreateFont.html +++ b/src/docs/win32api/4/CreateFont.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一种有特殊性的逻辑字体,此逻辑字体可以在后面被任何设备选择。

函数原型

HFONT CreateFont(int nHeight, int nWidth, int nEscapement, int nOrientation, int fnWeight, DWORD fdwltalic, DWORD fdwUnderline, DWORD fdwStrikeOut, DWORD fdwCharSet, DWORD fdwOutputPrecision, DWORD fdwClipPrecision, DWORD fdwQuality, DWORD fdwPitchAndFamily, LPCTSTR lpszFace);

参数

diff --git a/src/docs/win32api/4/CreateFontIndirect.html b/src/docs/win32api/4/CreateFontIndirect.html index 9fd46fe8..c45853e0 100644 --- a/src/docs/win32api/4/CreateFontIndirect.html +++ b/src/docs/win32api/4/CreateFontIndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一种在指定结构定义其特性的逻辑字体。这种字体可在后面的应用中被任何设备环境选作字体。

函数原型

HFONT CreateFontIndirect(CONST LOGFONT *lplf);

参数

diff --git a/src/docs/win32api/4/CreateIC.html b/src/docs/win32api/4/CreateIC.html index 25ee1ac2..1a263f22 100644 --- a/src/docs/win32api/4/CreateIC.html +++ b/src/docs/win32api/4/CreateIC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定设备创建一个信息描述表,该信息描述表能在不创建设备上下文环境的情况下提供一种快速得到设备信息的方法。

函数原型

HDC CreatelC(LPCTSTR lpszDriver, LPCTSTR lpszDevice, LPCTSTR lpszOutput, CONST DEVMODE *lpdvmlnit);

参数

diff --git a/src/docs/win32api/4/CreateScalableFontResource.html b/src/docs/win32api/4/CreateScalableFontResource.html index 5f87e143..ae770f31 100644 --- a/src/docs/win32api/4/CreateScalableFontResource.html +++ b/src/docs/win32api/4/CreateScalableFontResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为一种可升级的字体创建一个字体资源文件。

函数原型

BOOL CreateScalablefontResource(DWORD fdwHidden, LPCTSTR lpszFontRes, LPCTSTR lpszFontFile, LPCTSTR lpszCurrentPath);

参数

diff --git a/src/docs/win32api/4/DeleteDc.html b/src/docs/win32api/4/DeleteDc.html index 0fd147e9..621258ba 100644 --- a/src/docs/win32api/4/DeleteDc.html +++ b/src/docs/win32api/4/DeleteDc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数删除指定的设备上下文环境(Dc)。

函数原型

BOOL DeleteDC(HDC hdc);

参数

diff --git a/src/docs/win32api/4/DeleteObject.html b/src/docs/win32api/4/DeleteObject.html index a7ac7f4d..a52ba548 100644 --- a/src/docs/win32api/4/DeleteObject.html +++ b/src/docs/win32api/4/DeleteObject.html @@ -1,6 +1,6 @@ - +

函数功能

该函数删除一个逻辑笔、画笔、字体、位图、区域或者调色板,释放所有与该对象有关的系统资源,在对象被删除之后,指定的句柄也就失效了。

函数原型

BOOL DeleteObject(HGDIOBJ hObject);

参数

diff --git a/src/docs/win32api/4/DeviceCapabilities.html b/src/docs/win32api/4/DeviceCapabilities.html index baeb4df2..930c998d 100644 --- a/src/docs/win32api/4/DeviceCapabilities.html +++ b/src/docs/win32api/4/DeviceCapabilities.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索打印机设备驱动器的性能。

函数原型

DWORD DeviceCapabilities(LPCTSTR pDevice, LPCTSTR pPort, WORD fwCapability, LPTSTR pOutput, CONST DEVMODE *pDevMode);

参数

diff --git a/src/docs/win32api/4/DrawEscape.html b/src/docs/win32api/4/DrawEscape.html index 8f811bc6..d28918b9 100644 --- a/src/docs/win32api/4/DrawEscape.html +++ b/src/docs/win32api/4/DrawEscape.html @@ -1,6 +1,6 @@ - +

函数功能

该函数存取视频显示的画图能力,该视频显示不能直接通过图形设备接口(GDI)使用。

函数原型

int DrawEscape(HDC hdc, int nEscape, int cblnput, LPCSTR lpszlnData);

参数

diff --git a/src/docs/win32api/4/DrawText.html b/src/docs/win32api/4/DrawText.html index 53175615..c244597c 100644 --- a/src/docs/win32api/4/DrawText.html +++ b/src/docs/win32api/4/DrawText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定的矩形里写入格式化文本,根据指定的方法对文本格式化(扩展的制表符,字符对齐、折行等)。

函数原型

int DrawText(HDC, hdc, LPCTSTR lpString, int nCount, LPREST lpRect, UINT uFormat);

参数

diff --git a/src/docs/win32api/4/DrawtextEx.html b/src/docs/win32api/4/DrawtextEx.html index 667492fa..5b07f24a 100644 --- a/src/docs/win32api/4/DrawtextEx.html +++ b/src/docs/win32api/4/DrawtextEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定的矩形内绘制正文。

函数原型

int DrawTextEx(HDC, hdc, LPTSTR lpchText, int cchText, LPRECT lprc, UINT dwDTFormat, LPDRAWTEXTPARAMS lpDTParams);

参数

diff --git a/src/docs/win32api/4/Ellipse.html b/src/docs/win32api/4/Ellipse.html index ce8a277f..dcc1318a 100644 --- a/src/docs/win32api/4/Ellipse.html +++ b/src/docs/win32api/4/Ellipse.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于画一个椭圆,椭圆的中心是限定矩形的中心,使用当前画笔画椭圆,用当前的画刷填充椭圆。

函数原型

BOOL Ellipse(HDC hdc, int nLeftRect, int nTopRect, nRightRect, int nBottomRect);

参数

diff --git a/src/docs/win32api/4/EnumDisplayDevices.html b/src/docs/win32api/4/EnumDisplayDevices.html index 7ac25846..fa0e9885 100644 --- a/src/docs/win32api/4/EnumDisplayDevices.html +++ b/src/docs/win32api/4/EnumDisplayDevices.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可得到系统中显示设备的信息。

函数原型

BOOL Enumdisplaydevices(PVOID Unused, DWORD iDevNum, PDISPLAY_DEVICE lpDisplayDevice, DWORD dwFlags);

参数

diff --git a/src/docs/win32api/4/EnumDisplaySettings.html b/src/docs/win32api/4/EnumDisplaySettings.html index c8313c2c..58288a02 100644 --- a/src/docs/win32api/4/EnumDisplaySettings.html +++ b/src/docs/win32api/4/EnumDisplaySettings.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到显示设备的一个图形模式设备,通过对该函数一系列的调用可以得到显示设备所有的图形模式信息。

函数原型

BOOL EnumDisplaySettings(LPCTSTR lpszDeviceName, DWORD iModeNum, LPDEVMODE lpDevMode);

参数

diff --git a/src/docs/win32api/4/EnumFontFamExProc.html b/src/docs/win32api/4/EnumFontFamExProc.html index 8da944d4..d6232020 100644 --- a/src/docs/win32api/4/EnumFontFamExProc.html +++ b/src/docs/win32api/4/EnumFontFamExProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是和函数EnumFontFamiliesEx一起使用的应用程序定义的回调函数,它用来处理字体。为每一种列举的字体调用一次,类型FONTENUMPROC定义了一个指向此回调函数的指针,EnumFontExProc是这个应用程序定义的函数的名字的占位符。

函数原型

int CALLBACK EnumFontFamExProc(ENUMLOGFONTEX *lpelfe, NEWTEXTMETRICEX *lpntme, int FontType, LPARAM lParam);

参数

diff --git a/src/docs/win32api/4/EnumFontFamiliesEx.html b/src/docs/win32api/4/EnumFontFamiliesEx.html index 978c5f72..338a07a3 100644 --- a/src/docs/win32api/4/EnumFontFamiliesEx.html +++ b/src/docs/win32api/4/EnumFontFamiliesEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数列举系统里所有符合由LOGFONT结构指定的字体特性的字体。此函数基于字样名或字符集或两者来枚举字体。

函数原型

int EnumFontFamiliesEx(HDC hdc, LPLOGFONT lpLogfont, FONTENUMPROC lpEnumFontFamExProc, LPARAM lParam, DWORD dwFlags);

参数

diff --git a/src/docs/win32api/4/EnumObjects.html b/src/docs/win32api/4/EnumObjects.html index af718df3..e7543dd4 100644 --- a/src/docs/win32api/4/EnumObjects.html +++ b/src/docs/win32api/4/EnumObjects.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定的设备上下文环境枚举可用的笔或画笔,对于每个可用对象,该函数调用应用程序定义的回调函数,提供数据描述该对象。Enumobjects继续调用回调函数直到回调函数返回零或所有的对象都已枚举为止。

函数原型

int EnumObjects(HDC hdc, int nObjectType, GOBJENUMPROC lpObjectFunc, LPARAM lParam);

参数

diff --git a/src/docs/win32api/4/EnumObjectsProc.html b/src/docs/win32api/4/EnumObjectsProc.html index 4911de37..d04a2c1c 100644 --- a/src/docs/win32api/4/EnumObjectsProc.html +++ b/src/docs/win32api/4/EnumObjectsProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是应用程序定义的回调函数,为EnumObjects函数一起使用。此函数用来处理对象数据,GOBJECTENUMPROC类型定义了指向该回调函数的指针,EnumObjectsProc是应用程序定义函数名字的一个占位符。

函数原型

VOID CALLBACK EnumObjectsProc(PVOID lpLogObject, LPARAM lpData);

参数

diff --git a/src/docs/win32api/4/ExtTextOut.html b/src/docs/win32api/4/ExtTextOut.html index b3481603..0709771a 100644 --- a/src/docs/win32api/4/ExtTextOut.html +++ b/src/docs/win32api/4/ExtTextOut.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用当前选择的字体、背景颜色和正文颜色来绘制一个字符串。可以提供一个可选的矩形,用于裁剪或作不透明物或两者兼有。

函数原型

BOOL ExtTextOut(HDC hdc, int X, int Y, UINT fuOptions, CONST RECT *lprc, LPCTSTR lpString, UINT cbCount, CONST INT *lpDx);

参数

diff --git a/src/docs/win32api/4/FillRect.html b/src/docs/win32api/4/FillRect.html index 1e9b57e1..217164ad 100644 --- a/src/docs/win32api/4/FillRect.html +++ b/src/docs/win32api/4/FillRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的画刷填充矩形,此函数包括矩形的左上边界,但不包括矩形的右下边界。

函数原型

int FillRect(HDC hdc, CONST RECT *lprc, HBRUSH hbr);

参数

diff --git a/src/docs/win32api/4/FrameRect.html b/src/docs/win32api/4/FrameRect.html index 0628a607..f1e06dcb 100644 --- a/src/docs/win32api/4/FrameRect.html +++ b/src/docs/win32api/4/FrameRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用指定的画刷为指定的矩形画边框。边框的宽和高总是一个逻辑单元。

函数原型

int frameRect(HDC hdc, CONST RECT *lprc, HBRUSH hbr);

参数

diff --git a/src/docs/win32api/4/GetAspectRatioFilterEx.html b/src/docs/win32api/4/GetAspectRatioFilterEx.html index 95896560..9745114f 100644 --- a/src/docs/win32api/4/GetAspectRatioFilterEx.html +++ b/src/docs/win32api/4/GetAspectRatioFilterEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得当前纵横比过滤器的设置。

函数原型

BOOL GetAspectRatioFilterEx(HDC hdc, LPSIZE lpAspectRatio);

参数

diff --git a/src/docs/win32api/4/GetCharABCWidths.html b/src/docs/win32api/4/GetCharABCWidths.html index e41c498e..c20bfd44 100644 --- a/src/docs/win32api/4/GetCharABCWidths.html +++ b/src/docs/win32api/4/GetCharABCWidths.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从当前TrueType字体里取得给定范围的连续字符的逻辑单位宽度,此函数仅对TrueType字体适用。

函数原型


参数

diff --git a/src/docs/win32api/4/GetCharABCWidthsFloat.html b/src/docs/win32api/4/GetCharABCWidthsFloat.html index fc5e5da8..aa13d82d 100644 --- a/src/docs/win32api/4/GetCharABCWidthsFloat.html +++ b/src/docs/win32api/4/GetCharABCWidthsFloat.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得当前字体里在一个指定范围里的连续字符的逻辑单位宽度。

函数原型

BOOL GetCharABCWidthsFloat(HDC hdc, UINT iFirstChar, UINT iLastChar, LPABCFLOAT lpABCF);

参数

diff --git a/src/docs/win32api/4/GetCharWidth32.html b/src/docs/win32api/4/GetCharWidth32.html index 20f40491..9a16c35c 100644 --- a/src/docs/win32api/4/GetCharWidth32.html +++ b/src/docs/win32api/4/GetCharWidth32.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于取得当前字体在一个指定范围内的连续字符的逻辑坐标宽度。

函数原型

BOOL GetCharWidth32(HDC hdc, UINT iFirstChar, UINT iLastChar, LPINT lpBuffer);

参数

diff --git a/src/docs/win32api/4/GetCharWidthFloat.html b/src/docs/win32api/4/GetCharWidthFloat.html index 39259857..b2b5ae53 100644 --- a/src/docs/win32api/4/GetCharWidthFloat.html +++ b/src/docs/win32api/4/GetCharWidthFloat.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于得到当前字体在一个指定范围内的连续字符的逻辑坐标宽度。

函数原型

BOOL GetCharWidth32(HDC hdc, UINT iFirstChar, UINT iLastChar, LPINT lpBuffer);

参数

diff --git a/src/docs/win32api/4/GetCharacterPlacement.html b/src/docs/win32api/4/GetCharacterPlacement.html index 3eb112a1..ba5d7bf9 100644 --- a/src/docs/win32api/4/GetCharacterPlacement.html +++ b/src/docs/win32api/4/GetCharacterPlacement.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到一个字符串的参数,如字符宽度、脱字符号定位、字符串的定序和字符翻译,返回信息的类型依赖于参数dwFlags和在给定显示环境里的当前选择字体,此函数将信息复制到指定的GCP_RESULTS结构里或一个或多个由此结构指定的数组里。

函数原型

DWORD GetCharacterPlacement(HDC hdc, LPCTSTR lpString, int nCount, int nMaxExtent, LPGCP_RESULTS lpResults, DWORD dwFlags);

参数

diff --git a/src/docs/win32api/4/GetCurrentObject.html b/src/docs/win32api/4/GetCurrentObject.html index 499df2f3..5c331852 100644 --- a/src/docs/win32api/4/GetCurrentObject.html +++ b/src/docs/win32api/4/GetCurrentObject.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到一个从特定类型中选定目标的设备对象句柄。

函数原型

HGDIOBJ GetCurrentObject(HDC hdc, UINT uObjectType);

参数

diff --git a/src/docs/win32api/4/GetDC.html b/src/docs/win32api/4/GetDC.html index df6b85c3..b2aabbbd 100644 --- a/src/docs/win32api/4/GetDC.html +++ b/src/docs/win32api/4/GetDC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索一指定窗口的客户区域或整个屏幕的显示设备上下文环境的句柄,以后可以在GDI函数中使用该句柄来在设备上下文环境中绘图。
GetDCEx函数是GetDC的一个扩展,它能使应用程序更多地控制在客户区域内如何或是否发生剪切。

函数原型

HDC GetDC(HWND hWnd);
diff --git a/src/docs/win32api/4/GetDCBrushColor.html b/src/docs/win32api/4/GetDCBrushColor.html index 45ed9339..e8438ff1 100644 --- a/src/docs/win32api/4/GetDCBrushColor.html +++ b/src/docs/win32api/4/GetDCBrushColor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确认将要返回画笔颜色的设备上下文环境(DC)。

函数原型

GetDCBrushColor(HDC hdc);

参数

diff --git a/src/docs/win32api/4/GetDCEx.html b/src/docs/win32api/4/GetDCEx.html index 59890c4b..dffdb3d8 100644 --- a/src/docs/win32api/4/GetDCEx.html +++ b/src/docs/win32api/4/GetDCEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索指定窗口客户区域或整个屏幕的显示设备上下文环境的句柄,在随后的GDI函数中可以使用该句柄在设备上下文环境中绘图。

函数原型

HDC GetDCEx(HWND hWnd, HRGN hrgnClip, DWORD flags);

参数

diff --git a/src/docs/win32api/4/GetDCOrgEx.html b/src/docs/win32api/4/GetDCOrgEx.html index e2ec82e7..45c6e1f2 100644 --- a/src/docs/win32api/4/GetDCOrgEx.html +++ b/src/docs/win32api/4/GetDCOrgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到设备上下文环境的最终转换原点,最终转换原点指定了一个位移。系统使用该位移把设备转换成客户坐标。

函数原型

BOOL GetDCOrgEx(HDC hdc, LPPOINT lpPoint);

参数

diff --git a/src/docs/win32api/4/GetDCPenColor.html b/src/docs/win32api/4/GetDCPenColor.html index d7a7f449..4705db09 100644 --- a/src/docs/win32api/4/GetDCPenColor.html +++ b/src/docs/win32api/4/GetDCPenColor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置当前DC笔颜色为指定颜色,如果设备不能提供指定颜色值,将返回最近的物理颜色。

函数原型

GetDCPenColor(HDC hdc);

参数

diff --git a/src/docs/win32api/4/GetDeviceCaps.html b/src/docs/win32api/4/GetDeviceCaps.html index b405a07d..6faea148 100644 --- a/src/docs/win32api/4/GetDeviceCaps.html +++ b/src/docs/win32api/4/GetDeviceCaps.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索指定设备的设备指定信息。

函数原型

int GetDeviceCaps(HDC hdc, int nlndex);

参数

diff --git a/src/docs/win32api/4/GetFontData.html b/src/docs/win32api/4/GetFontData.html index b2e19015..08ea318e 100644 --- a/src/docs/win32api/4/GetFontData.html +++ b/src/docs/win32api/4/GetFontData.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到一种字体的度量数据。

函数原型

DWORD GetFontData(HDC hdc, DWORD dwTable, DWORD dwOffset, LPVOID lpvBuffer, DWORD cbData);

参数

diff --git a/src/docs/win32api/4/GetFontLanguageInfo.html b/src/docs/win32api/4/GetFontLanguageInfo.html index 95beb288..24184e9e 100644 --- a/src/docs/win32api/4/GetFontLanguageInfo.html +++ b/src/docs/win32api/4/GetFontLanguageInfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回指定的设备环境里所选字体的信息。应用程序通常用这些信息和GetCharacterPlacement来准备用于显示的字符串。

函数原型

DWORD GetFontLanguageInfo(HDC hdc);

参数

diff --git a/src/docs/win32api/4/GetFontUnicodeRange.html b/src/docs/win32api/4/GetFontUnicodeRange.html index b90c0a63..0f79b3a7 100644 --- a/src/docs/win32api/4/GetFontUnicodeRange.html +++ b/src/docs/win32api/4/GetFontUnicodeRange.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回关于一种字体支持哪些字符的信息,这些信息以GLYPHSET结构返回。

函数原型

WINGDIAPI DWORD WINAPI GetFontUnicodeRanges(HDC hdc, LPGLYPHSET lpgs);

参数

diff --git a/src/docs/win32api/4/GetGlyphIndices.html b/src/docs/win32api/4/GetGlyphIndices.html index 64f272b1..909dffcb 100644 --- a/src/docs/win32api/4/GetGlyphIndices.html +++ b/src/docs/win32api/4/GetGlyphIndices.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个字符串转为字形下标的数组。此函数可用来确定一种字体里是否存在某个字形。

函数原型

WINGDIAPI DWORD WINAPI GetGlyphIndices(HDC hdc, LPCTSTR lpstr, int c, LPWORD pgi, DWORD fl);

参数

diff --git a/src/docs/win32api/4/GetGlyphOutline.html b/src/docs/win32api/4/GetGlyphOutline.html index d81b12e8..bb13a1f8 100644 --- a/src/docs/win32api/4/GetGlyphOutline.html +++ b/src/docs/win32api/4/GetGlyphOutline.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得被选进指定设备环境的TrueType字体的字符轮廓或位图。

函数原型

DWORD GetGlyphOutline(HDC hdc, UINT uChar, UINT uFormat, LPGLYPHMETRICS lpgm, DWORD cbBuffer, LPVOID lpvBuffer, CONST MAT2 *lpmat2);

参数

diff --git a/src/docs/win32api/4/GetKerningPairs.html b/src/docs/win32api/4/GetKerningPairs.html index 73c960ec..7ec59f12 100644 --- a/src/docs/win32api/4/GetKerningPairs.html +++ b/src/docs/win32api/4/GetKerningPairs.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得指定设备环境里的当前选择字体的字符紧缩对。

函数原型

DWORD GetKemingPairs(HDC hdc, DWORD nNumPairs, LPKERNINGPAIR lpkmpair);

参数

diff --git a/src/docs/win32api/4/GetObject.html b/src/docs/win32api/4/GetObject.html index 9ffc0e23..f74a697b 100644 --- a/src/docs/win32api/4/GetObject.html +++ b/src/docs/win32api/4/GetObject.html @@ -1,6 +1,6 @@ - +

函数功能

该函数得到指定图形对象的信息,根据图形对象,函数把填满的或结构,或表项(用于逻辑调色板)数目放入一个指定的缓冲区。

函数原型

int GetObject(HGDIOBJ hgdiobj, int cbBuffer, LPVOID lpvObject);

参数

diff --git a/src/docs/win32api/4/GetObjectType.html b/src/docs/win32api/4/GetObjectType.html index cb6c4eda..9a4c4fe6 100644 --- a/src/docs/win32api/4/GetObjectType.html +++ b/src/docs/win32api/4/GetObjectType.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定对象的类型。

函数原型

DWORD GetObjectType(HGDIOBJ h);

参数

diff --git a/src/docs/win32api/4/GetOutlineTextMetrics.html b/src/docs/win32api/4/GetOutlineTextMetrics.html index 26b6fd31..aa8d9d1d 100644 --- a/src/docs/win32api/4/GetOutlineTextMetrics.html +++ b/src/docs/win32api/4/GetOutlineTextMetrics.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得TrueType字体的正文度量。

函数原型

UINT GetOutline TextMetrics(HDC hdc, UINT cbData, LPOUTLINETEXTMETRIC lpOTM);

参数

diff --git a/src/docs/win32api/4/GetRasterizerCaps.html b/src/docs/win32api/4/GetRasterizerCaps.html index d44504de..5be3f477 100644 --- a/src/docs/win32api/4/GetRasterizerCaps.html +++ b/src/docs/win32api/4/GetRasterizerCaps.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回表示系统中是否安装有TrueType字体的标志。

函数原型

BOOL GetRasterizerCaps(LPRASTERIZER_STATUS lprs, UINT cb);

参数

diff --git a/src/docs/win32api/4/GetStockObject.html b/src/docs/win32api/4/GetStockObject.html index c014e129..1900b1cb 100644 --- a/src/docs/win32api/4/GetStockObject.html +++ b/src/docs/win32api/4/GetStockObject.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索预定义的备用笔、刷子、字体或者调色板的句柄。

函数原型

HGDIOBJ GetStockObject(int fnObject);

参数

diff --git a/src/docs/win32api/4/GetTabbedTextExtent.html b/src/docs/win32api/4/GetTabbedTextExtent.html index 550381a1..3ba88841 100644 --- a/src/docs/win32api/4/GetTabbedTextExtent.html +++ b/src/docs/win32api/4/GetTabbedTextExtent.html @@ -1,6 +1,6 @@ - +

函数功能

该函数计算一个字符串的宽度和高度。如果字符串含有一个或多个制表符,则字符串的宽度基于指定的制表位。GetTabbedTextExtent用当前所选的字体来计算字符串的尺寸。
函数原理:DWORD GetTabbedTextExtent(HDC hdc, LPCTSTR lpString, nCount, nTabPositions, LPINT lpnTabStopPositions);

参数

diff --git a/src/docs/win32api/4/GetTextAlign.html b/src/docs/win32api/4/GetTextAlign.html index e9322ca1..84c93691 100644 --- a/src/docs/win32api/4/GetTextAlign.html +++ b/src/docs/win32api/4/GetTextAlign.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获得指定的设备环境下的文字对齐方式的设置。

函数原型

UINT GetTextAlign(HDC hdc);

参数

diff --git a/src/docs/win32api/4/GetTextCharacterExtra.html b/src/docs/win32api/4/GetTextCharacterExtra.html index 83169b4c..834344ff 100644 --- a/src/docs/win32api/4/GetTextCharacterExtra.html +++ b/src/docs/win32api/4/GetTextCharacterExtra.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得指定设备环境中当前字符间隔。

函数原型

int GetTextCharacterExtra(HDC hdc);

参数

diff --git a/src/docs/win32api/4/GetTextColor.html b/src/docs/win32api/4/GetTextColor.html index 5fa076b3..0b588c60 100644 --- a/src/docs/win32api/4/GetTextColor.html +++ b/src/docs/win32api/4/GetTextColor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得指定设备环境的当前正文颜色。

函数原型

COLORREF GetTextColor(HDC hdc);

参数

diff --git a/src/docs/win32api/4/GetTextExtentExPoint.html b/src/docs/win32api/4/GetTextExtentExPoint.html index f484f42e..b3bb0fee 100644 --- a/src/docs/win32api/4/GetTextExtentExPoint.html +++ b/src/docs/win32api/4/GetTextExtentExPoint.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得一个指定字符串里的字符数,该字符串将符合一个指定的空间,并且将其中每一个字符的范围放入一个数组。(一个正文的范围是指空间开始处到一个字符的间距)。此函数对自动换行的计算非常有用。

函数原型

BOOL GetTextExtentPoint(HDC hdc, LPCTSTR lpszStr, int cchString, int nMaxExten, LPINT lpnFit, LPINT alpDx, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/4/GetTextExtentPoint32.html b/src/docs/win32api/4/GetTextExtentPoint32.html index 527f3075..db6c6747 100644 --- a/src/docs/win32api/4/GetTextExtentPoint32.html +++ b/src/docs/win32api/4/GetTextExtentPoint32.html @@ -1,6 +1,6 @@ - +

函数功能

该函数计算指定的正文字符串的高度和宽度。

函数原型

BOOL GetTextExtentPoint32(HDC hdc, LPCTSTR lpString, int cbString, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/4/GetTextFace.html b/src/docs/win32api/4/GetTextFace.html index 56a824aa..23428e6e 100644 --- a/src/docs/win32api/4/GetTextFace.html +++ b/src/docs/win32api/4/GetTextFace.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得被选进指定设备环境的字体字样名。

函数原型

int GetTextFace(HDC hdc, int nCount, LPTSTR lpFaceName);

参数

diff --git a/src/docs/win32api/4/GetTextMetrics.html b/src/docs/win32api/4/GetTextMetrics.html index 14838466..c243c0a6 100644 --- a/src/docs/win32api/4/GetTextMetrics.html +++ b/src/docs/win32api/4/GetTextMetrics.html @@ -1,6 +1,6 @@ - +

函数功能

该函数给指定的缓冲区里填入当前选择字体的度量值。

函数原型

BOOL GetTextMetrics(HDC hdc, LPTEXTMETRIC lptm);

参数

diff --git a/src/docs/win32api/4/InvertRect.html b/src/docs/win32api/4/InvertRect.html index 02322d40..5e450c85 100644 --- a/src/docs/win32api/4/InvertRect.html +++ b/src/docs/win32api/4/InvertRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过对矩形内部的像素点进行逻辑NOT操作而将窗口中的矩形反转。

函数原型

BOOL Invertrect(HDC hdc, CONST RECT *lprc);

参数

diff --git a/src/docs/win32api/4/Pie.html b/src/docs/win32api/4/Pie.html index a4abf1a0..207803ff 100644 --- a/src/docs/win32api/4/Pie.html +++ b/src/docs/win32api/4/Pie.html @@ -1,6 +1,6 @@ - +

函数功能

该函数画一个由椭圆和两条半径相交闭合而成的饼状楔形图,此饼图由当前画笔画轮廓,由当前画刷填充。

函数原型

BOOL Pie(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, int nXRadial1, int nYRadial1, int nXRadial2, int nYRadial2);

参数

diff --git a/src/docs/win32api/4/PolyPolygon.html b/src/docs/win32api/4/PolyPolygon.html index 8218471d..113d399e 100644 --- a/src/docs/win32api/4/PolyPolygon.html +++ b/src/docs/win32api/4/PolyPolygon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数画一系列的多边形,每一个多边形都用当前的画笔画轮廓,用当前的画刷和多边形填充模式画填充。此函数画的多边形可以重叠。

函数原型

BOOL PolyPolygon(HDC hdc, CONST POINT *lpPoints, CONST INT *lpPolyCounts, int nCount);

参数

diff --git a/src/docs/win32api/4/PolyTextOut.html b/src/docs/win32api/4/PolyTextOut.html index a64be890..e1ab6793 100644 --- a/src/docs/win32api/4/PolyTextOut.html +++ b/src/docs/win32api/4/PolyTextOut.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定设备环境下以当前所选的字体和正文颜色绘制多个字符串。

函数原型

BOOL PolyTextOut(HDC hdc, CONST POLYTEXT *pptxt, int cStrings);

参数

diff --git a/src/docs/win32api/4/Polygon.html b/src/docs/win32api/4/Polygon.html index 493b3f32..222f3b63 100644 --- a/src/docs/win32api/4/Polygon.html +++ b/src/docs/win32api/4/Polygon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数画一个由直线相闻的两个以上顶点组成的多边形,用当前画笔画多边形轮廓,用当前画刷和多边形填充模式填充多边形。

函数原型

BOOL Polygon(HDC hdc, CONST POINT *lpPoints, int nCount);

参数

diff --git a/src/docs/win32api/4/Rectangle.html b/src/docs/win32api/4/Rectangle.html index 39e27657..62fba48e 100644 --- a/src/docs/win32api/4/Rectangle.html +++ b/src/docs/win32api/4/Rectangle.html @@ -1,6 +1,6 @@ - +

函数功能

该函数画一个矩形,用当前的画笔画矩形轮廓,用当前画刷进行填充。

函数原型

BOOL Rectangle(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);

参数

diff --git a/src/docs/win32api/4/ReleaseDC.html b/src/docs/win32api/4/ReleaseDC.html index 366a6fb2..fc53338b 100644 --- a/src/docs/win32api/4/ReleaseDC.html +++ b/src/docs/win32api/4/ReleaseDC.html @@ -1,6 +1,6 @@ - +

函数功能

函数释放设备上下文环境(DC)供其他应用程序使用。函数的效果与设备上下文环境类型有关。它只释放公用的和设备上下文环境,对于类或私有的则无数。

函数原型

int ReleaseDC(HWND hWnd, HDC hdc);

参数

diff --git a/src/docs/win32api/4/RemoveFontResource.html b/src/docs/win32api/4/RemoveFontResource.html index c73b03a4..40210489 100644 --- a/src/docs/win32api/4/RemoveFontResource.html +++ b/src/docs/win32api/4/RemoveFontResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从系统字体表中除去在指定文件里的字体。

函数原型

BOOL RemoveFontResource(LPCTSTR lpFileName);

参数

diff --git a/src/docs/win32api/4/ResetDC.html b/src/docs/win32api/4/ResetDC.html index b20832dc..35fd14a6 100644 --- a/src/docs/win32api/4/ResetDC.html +++ b/src/docs/win32api/4/ResetDC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数根据指定结构中的信息更新给定打印机或绘图仪的设备上下文环境。

函数原型

HDC ResetDC(HDC hdc, CONST DEVMODE *lpInitData);

参数

diff --git a/src/docs/win32api/4/RestoreDC.html b/src/docs/win32api/4/RestoreDC.html index 20acf619..23221b3e 100644 --- a/src/docs/win32api/4/RestoreDC.html +++ b/src/docs/win32api/4/RestoreDC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数恢复设备上下文环境(DC)到指定状态,该设备上下文环境的恢复是通过使状态信息出栈而进行的。该堆栈由先前调用SaveDC函数时创建的。

函数原型

BOOL RestoreDC(HDC hdc, int nSavedDC);

参数

diff --git a/src/docs/win32api/4/RoundRect.html b/src/docs/win32api/4/RoundRect.html index f0d24e30..58244a74 100644 --- a/src/docs/win32api/4/RoundRect.html +++ b/src/docs/win32api/4/RoundRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数画一个带圆角的矩形,此矩形由当前画笔画轮廊,由当前画刷填充。

函数原型

BOOL RoundRect(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, int nWidth, int nHeight);

参数

diff --git a/src/docs/win32api/4/SaveDC.html b/src/docs/win32api/4/SaveDC.html index 4845f446..b7cd6688 100644 --- a/src/docs/win32api/4/SaveDC.html +++ b/src/docs/win32api/4/SaveDC.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过把数据描述选定对象和图形模式(如位图、画笔、调色板、字体、笔、区域、绘图模式、映射模式)拷贝到描述表推栈中为保存,指定设备上下文环境的当前状态。

函数原型

int SaveDC(HDC hdc);

参数

diff --git a/src/docs/win32api/4/SelectObject.html b/src/docs/win32api/4/SelectObject.html index da983bd2..cccac536 100644 --- a/src/docs/win32api/4/SelectObject.html +++ b/src/docs/win32api/4/SelectObject.html @@ -1,6 +1,6 @@ - +

函数功能

该函数选择一对象到指定的设备上下文环境中,该新对象替换先前的相同类型的对象。

函数原型

HGDIOBJ SelectObject(HDC hdc, HGDIOBJ hgdiobj);

参数

diff --git a/src/docs/win32api/4/SetCBrushColor.html b/src/docs/win32api/4/SetCBrushColor.html index 536acfb5..35e40988 100644 --- a/src/docs/win32api/4/SetCBrushColor.html +++ b/src/docs/win32api/4/SetCBrushColor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把当前设备上下文环境(DC)画笔颜色设置为指定颜色值。如果设备不能提供指定的颜色值,那么就把颜色设为最近的物理颜色。

函数原型

COLORREF SetDCBrushColor(HDC hdc, COLORREF crColor);

参数

diff --git a/src/docs/win32api/4/SetDCPenColor.html b/src/docs/win32api/4/SetDCPenColor.html index 5c2983ae..1eab8f75 100644 --- a/src/docs/win32api/4/SetDCPenColor.html +++ b/src/docs/win32api/4/SetDCPenColor.html @@ -1,6 +1,6 @@ - + 函数功能;该函数把当前设备上下文环境(DC)的笔颜色设置为指定颜色值。如果设备不能提供指定的颜色值,颜色就设为最近的物理颜色。

函数原型

COLORREF SetDCPenColor(HDC hdc, COLORREF crColor);

参数

diff --git a/src/docs/win32api/4/SetMapperFlags.html b/src/docs/win32api/4/SetMapperFlags.html index 78b207ec..31b4fa0b 100644 --- a/src/docs/win32api/4/SetMapperFlags.html +++ b/src/docs/win32api/4/SetMapperFlags.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变字体映射程序用于将逻辑字体映射为物理字体的算法。

函数原型

;DWORD SetMapperFlags(HDC hdc, DWORD dwFlag);

参数

diff --git a/src/docs/win32api/4/填充形态函数(Filled shape).html b/src/docs/win32api/4/填充形态函数(Filled shape).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/4/填充形态函数(Filled shape).html +++ b/src/docs/win32api/4/填充形态函数(Filled shape).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/4/字体和正文函数(Font and Text).html b/src/docs/win32api/4/字体和正文函数(Font and Text).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/4/字体和正文函数(Font and Text).html +++ b/src/docs/win32api/4/字体和正文函数(Font and Text).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/5/EnumFontFamProc.html b/src/docs/win32api/5/EnumFontFamProc.html index e74efe2b..c0900637 100644 --- a/src/docs/win32api/5/EnumFontFamProc.html +++ b/src/docs/win32api/5/EnumFontFamProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是由应用程序定义的与函数EnumFontFamilies一起使用的回调函数,它接收用于描述与可用字体的数据。类型FONTENUMPROC定义了一个指向此回调函数的指针,EnumFontFamProc是应用程序定义的函数的名字的占位符。

函数原型

int CALLBACK EnumFontFamProc(ENUMLOGFONT FAR *lpelf, NEWTEXTMETRIC FAR *lpntm, int FontType, LPARAM lParam);

参数

diff --git a/src/docs/win32api/5/EnumFontFamilies.html b/src/docs/win32api/5/EnumFontFamilies.html index 3c22de5f..440dab8f 100644 --- a/src/docs/win32api/5/EnumFontFamilies.html +++ b/src/docs/win32api/5/EnumFontFamilies.html @@ -1,6 +1,6 @@ - +

函数功能

该函数列举指定设备环境下的指定字体族里的字体。

函数原型

int EnumFontFamilies (HDC hdc, LPCTSTR lpszFamily, FONTENUMPROC lpEnumFontFamProc, LPARAM lParam);

参数

diff --git a/src/docs/win32api/5/EnumFontsProc.html b/src/docs/win32api/5/EnumFontsProc.html index b9f6df2d..1dc90d83 100644 --- a/src/docs/win32api/5/EnumFontsProc.html +++ b/src/docs/win32api/5/EnumFontsProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个应用程序定义的回调函数,处理由EnumFonts获得的字体数据。EnumFontsProc是应用程序定义的函数的名字的占位符。

函数原型

int CALLBACK EnumFontsProc(lplf lplf, lptm lptm, DWORD dwType, LPARAM lpData);

参数

diff --git a/src/docs/win32api/5/Enumfonts.html b/src/docs/win32api/5/Enumfonts.html index 724a4115..fc768840 100644 --- a/src/docs/win32api/5/Enumfonts.html +++ b/src/docs/win32api/5/Enumfonts.html @@ -1,6 +1,6 @@ - +

函数功能

该函数列举一个指定设备可用的字体,对那些有指定字样名的字体,EnumFonts取得该字体的信息,并将信息传给应用程序定义的回调函数。回调函数可以按期望处理字体信息。当再没有字体可列举或回调函数返回零时,列举停止。

函数原型

int EnumFonts(HDC hdc, LPCTSTR lpFaceName, FONTNUMPROC lpFontfunc, LPARAM lParam);

参数

diff --git a/src/docs/win32api/5/GetCharWidth.html b/src/docs/win32api/5/GetCharWidth.html index a8b1bd44..eff5164f 100644 --- a/src/docs/win32api/5/GetCharWidth.html +++ b/src/docs/win32api/5/GetCharWidth.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得当前字体在一个指定范围内的连续字符的逻辑坐标宽度。

函数原型

BOOL GetCharWidth(HDC hdc, UINT iFirstChar, UINT iLastChar, LPINT lpBuffer);

参数

diff --git a/src/docs/win32api/5/GetTextExtenPoint.html b/src/docs/win32api/5/GetTextExtenPoint.html index c22049e1..72addec9 100644 --- a/src/docs/win32api/5/GetTextExtenPoint.html +++ b/src/docs/win32api/5/GetTextExtenPoint.html @@ -1,6 +1,6 @@ - +

函数功能

该函数计算指定的正文字符串的宽度和高度。

函数原型

BOOL GetTextExtentPoint(HDC hdc, LPCTSTR lpString, LPSIZE lpSize);

参数

diff --git a/src/docs/win32api/5/SetTextAlign.html b/src/docs/win32api/5/SetTextAlign.html index d86ef5a7..e95acd54 100644 --- a/src/docs/win32api/5/SetTextAlign.html +++ b/src/docs/win32api/5/SetTextAlign.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为指定设备环境设置文字对齐标志。

函数原型

UINT SetTextAlign(HDC hdc, UINT fMode);

参数

diff --git a/src/docs/win32api/5/SetTextCharacterExtra.html b/src/docs/win32api/5/SetTextCharacterExtra.html index beff976a..9109ad5b 100644 --- a/src/docs/win32api/5/SetTextCharacterExtra.html +++ b/src/docs/win32api/5/SetTextCharacterExtra.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置字符间隔,字符间隔加到每一个字符上,包括间隔字符,只要系统在写一个正文行。

函数原型

int SetTextCharacterExtra(HDC hdc, nCharExtra);

参数

diff --git a/src/docs/win32api/5/SetTextJustification.html b/src/docs/win32api/5/SetTextJustification.html index d2ecfdd6..5e9a4223 100644 --- a/src/docs/win32api/5/SetTextJustification.html +++ b/src/docs/win32api/5/SetTextJustification.html @@ -1,6 +1,6 @@ - +

函数功能

该函数指定一定数量的空间,让系统增加到一个正文字符串的间隔字符上,当应用程序调用TextOut或ExtTextOut时,空间就地加进去。

函数原型

BOOL SetTextJustification(HDC hdc, int nBreakExtra, int nBreakCount);

参数

diff --git a/src/docs/win32api/5/TabbedTextOut.html b/src/docs/win32api/5/TabbedTextOut.html index 95002d5e..2015c094 100644 --- a/src/docs/win32api/5/TabbedTextOut.html +++ b/src/docs/win32api/5/TabbedTextOut.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个字符串写到指定的位置,并按制表位位置数组里的值展开制表符。正文以当前选择的字体、背景色和字体写入。

函数原型

;LONG TabbedTextOut(HDC hdc, int X, int Y, LPCTSTR lpString, int nCount, int nTabPositions, LPINT lpn TabStopPositions, int nTabOrigin);

参数

diff --git a/src/docs/win32api/5/TextOut.html b/src/docs/win32api/5/TextOut.html index 991c942e..de945430 100644 --- a/src/docs/win32api/5/TextOut.html +++ b/src/docs/win32api/5/TextOut.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用当前选择字符、背景颜色和正文颜色将一个字符串写到指定位置。

函数原型

BOOL TextOut (HDC hdc, int nXStart, int nYStart, LPCTSTR lpString, int cbString);

参数

diff --git a/src/docs/win32api/ActivateKeyboadLayout.html b/src/docs/win32api/ActivateKeyboadLayout.html index 921c2282..4bbd38b5 100644 --- a/src/docs/win32api/ActivateKeyboadLayout.html +++ b/src/docs/win32api/ActivateKeyboadLayout.html @@ -1,6 +1,6 @@ - +

函数功能

激活键盘布局。该函数Windows NT和Windows 95中的实现有很大不同。本参考页中首先给出了完整的Windows NT的实现,下来又给出了Windows 95版本的实现,以便大家更好地了解二者的区别。在Windows NT中ActivateKeyboadLayout函数激活一种不同的键盘布局,同时在整个系统中而不仅仅是调用该函数的进程中将该键盘布局设为活动的。

函数原型

HKL ActivateKeyboardLayout( HKL hkl,UINT Flags);

参数

diff --git a/src/docs/win32api/AppendMenu.html b/src/docs/win32api/AppendMenu.html index 9193b2af..cc9b5430 100644 --- a/src/docs/win32api/AppendMenu.html +++ b/src/docs/win32api/AppendMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定的菜单条、下拉式菜单、子菜单或快捷菜单的末尾追加一个新菜单项。此函数可指定菜单项的内容、外观和性能。函数AppendMenu己被lnsertMenultem取代。但如果不需要lnsertMenultem的扩展特性,仍可使用AppendMenu。

函数原型

BOOL AppendMenu(hMenu hMenu,UINT uFlags,UINT uIDNewltem,LPCTSTR lpNewltem);

参数

diff --git a/src/docs/win32api/CCHookProc.html b/src/docs/win32api/CCHookProc.html index f71b3973..91f8ef46 100644 --- a/src/docs/win32api/CCHookProc.html +++ b/src/docs/win32api/CCHookProc.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是一个应用程序或库定义的回调函数。ChooseColor函数与此函数一起使用挂钩函数贮存信息或通告,此信息和通告应用于Color公共对话框的缺省对话框函数。
LPCEHOOPROC类型定义了一个指向此回调函数的指针。CCHOOkProc是一个应用程序定义的函数名的位置占有者。

函数原型

UINT CALLBACK CCHookProc(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);
diff --git a/src/docs/win32api/CFHookProc.html b/src/docs/win32api/CFHookProc.html index c06c8726..1a7e5f60 100644 --- a/src/docs/win32api/CFHookProc.html +++ b/src/docs/win32api/CFHookProc.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是一个应用程序定义的或库定义的回调函数,此回调函数与ChooseFont函数一起使用。挂钩函数接收用于Font公共对话框的缺省对话框函数的消息和通告。
LPCFHOOKPROC类型定义了一个指向这种回调函数的指针。CFHOOKProc是一个由应用程序定义的函数名的位置占有者。

函数原型

UINT CALLBACK CFHookProc(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);
diff --git a/src/docs/win32api/CheckDlgButton.html b/src/docs/win32api/CheckDlgButton.html index 23405398..46d1bc19 100644 --- a/src/docs/win32api/CheckDlgButton.html +++ b/src/docs/win32api/CheckDlgButton.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改变按钮控制的选中状态。

函数原型

BOOL CheckDlgButton(HWNDhDlg,int nlDButton,UINT uCheck);

参数

diff --git a/src/docs/win32api/CheckMenuRadlol.html b/src/docs/win32api/CheckMenuRadlol.html index a08a551e..236f4565 100644 --- a/src/docs/win32api/CheckMenuRadlol.html +++ b/src/docs/win32api/CheckMenuRadlol.html @@ -1,6 +1,6 @@ - +

函数功能

该函数校校一个指定的菜单项并使其成为一个圆按钮项。同时不校核相关组里的其他菜单项并清除这些项的国按钮的类型标志。

函数原型

BOOL CheckMenuRadioltem(HMEN hMENU,UINT idFirst,UINT idLast,UINT uFlags);

参数

diff --git a/src/docs/win32api/CheckMenultem.html b/src/docs/win32api/CheckMenultem.html index 737ba3f2..bd8c3f97 100644 --- a/src/docs/win32api/CheckMenultem.html +++ b/src/docs/win32api/CheckMenultem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置指定菜单项的校核标记属性为选取或不选取。该函数已被函数SetMenultemlnfo取代。但若不需要SetMenultemlnfo的扩展特性,仍可使用CheckMenultem。

函数原型

DWORD CheckMenultem(HMENU hMenu,UINT ulDCheckltem,UINT uCheck);

参数

diff --git a/src/docs/win32api/CheckRadioButton.html b/src/docs/win32api/CheckRadioButton.html index cc770587..f4dbefb9 100644 --- a/src/docs/win32api/CheckRadioButton.html +++ b/src/docs/win32api/CheckRadioButton.html @@ -1,6 +1,6 @@ - +

函数功能

该函数给一组单选按钮中的一个指定按钮加上选中标志,并且清除组中其他按钮的选中标志。

函数原型

BOOL CheckRadioButtoh(HWNDhDlg, intnlDFirstButton, intnlDLastBUtton, intnlDCheckButton);

参数

diff --git a/src/docs/win32api/ChooseColor.html b/src/docs/win32api/ChooseColor.html index 2f64f920..eb6ff288 100644 --- a/src/docs/win32api/ChooseColor.html +++ b/src/docs/win32api/ChooseColor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个能使用户从中选择颜色的通用颜色对话框。

函数原型

BOOL ChooseColor(LPCHOOSECOLOR IpCC);

参数

diff --git a/src/docs/win32api/ChooseFont.html b/src/docs/win32api/ChooseFont.html index c2a45c75..ec616106 100644 --- a/src/docs/win32api/ChooseFont.html +++ b/src/docs/win32api/ChooseFont.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个使用户选择逻辑字体属性的对话框,这些属性包括字体名称、字体风格(如粗体、斜体或正常体)、字号、效果(如强调线,下划线或字体颜色)和手写体(或字符集)。

函数原型

BOOL ChooseFont(LPCHOOSEFONT Ipcf);

参数

diff --git a/src/docs/win32api/ClipCursor.html b/src/docs/win32api/ClipCursor.html index 7a4b1550..58338564 100644 --- a/src/docs/win32api/ClipCursor.html +++ b/src/docs/win32api/ClipCursor.html @@ -1,6 +1,6 @@ - + 函数功能;该函数把光标限制在屏幕上的一个矩形区域内,如果调用SetCursor或用鼠标设置的一个随后的光标位置在该矩形区域的外面,则系统自动调整该位置以保持光标在矩形区域之内。

函数原型

BOOL CliepCursor(CONST RECT★ lpRect);

参数

diff --git a/src/docs/win32api/CommDlgExtendedEorror.html b/src/docs/win32api/CommDlgExtendedEorror.html index 2d2fb6a9..97125ad5 100644 --- a/src/docs/win32api/CommDlgExtendedEorror.html +++ b/src/docs/win32api/CommDlgExtendedEorror.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回一个对话框错误代码,此代码显示出在执行下列对话框函数时要出现的最近的错误:ChooseColor,GetOpenFileName,ChooseFont,GetSaveFileName,FindText,PrintDlg,ReplaceText,PageSetpDlg。

函数原型

DWORD CommDlgExtendedError(VOID)

参数

无。
diff --git a/src/docs/win32api/CopyAcceleratorTable.html b/src/docs/win32api/CopyAcceleratorTable.html index 3edb610e..f3936c00 100644 --- a/src/docs/win32api/CopyAcceleratorTable.html +++ b/src/docs/win32api/CopyAcceleratorTable.html @@ -1,6 +1,6 @@ - +

函数功能

拷贝加速键表。拷贝加速键表函数拷贝指定的加速键表。此函数用于获得与一加速键表句柄相对应的加速键表数据,或用于确定加速键表数据的大小。

函数原型

int CopyAcceleratorTable(HACCEL hAccelSrc,LPACCEL IpAcceIDst,int cAccelEntries);

参数

diff --git a/src/docs/win32api/CopyCursor.html b/src/docs/win32api/CopyCursor.html index e2808632..a0490e32 100644 --- a/src/docs/win32api/CopyCursor.html +++ b/src/docs/win32api/CopyCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数复制一光标。

函数原型

HCURSOR CopyCursor(HCURSOR pcur);

参数

diff --git a/src/docs/win32api/Copylcon.html b/src/docs/win32api/Copylcon.html index 2a071380..deee9f22 100644 --- a/src/docs/win32api/Copylcon.html +++ b/src/docs/win32api/Copylcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从另外的模块向当前模块复制指定的图标。

函数原型

HICON Copylcon(HICON hlcon);

参数

diff --git a/src/docs/win32api/CreateAcceleratorTable.html b/src/docs/win32api/CreateAcceleratorTable.html index cbb66721..b98a7062 100644 --- a/src/docs/win32api/CreateAcceleratorTable.html +++ b/src/docs/win32api/CreateAcceleratorTable.html @@ -1,6 +1,6 @@ - +

函数功能

创建加速键表。该函数创建一个加速键表。

函数原型

HACCEL CreateAcceleratorTable(LPACCEL lpaccl,int cEntries);

参数

diff --git a/src/docs/win32api/CreateCaret.html b/src/docs/win32api/CreateCaret.html index 7f758dc2..2dc366fb 100644 --- a/src/docs/win32api/CreateCaret.html +++ b/src/docs/win32api/CreateCaret.html @@ -1,6 +1,6 @@ - + 函数功能;该函数为系统插入标记创建一个新的形状,并且将插入标记的属主关系指定给特定的窗口。插入标记的形状。可以是线、块或位图。

函数原型

BOOL CreateCaret(HWND hWnd,HBIBMAP hBitmap,int nHeight);

参数

diff --git a/src/docs/win32api/CreateCursor.html b/src/docs/win32api/CreateCursor.html index 832a6c90..04541a8b 100644 --- a/src/docs/win32api/CreateCursor.html +++ b/src/docs/win32api/CreateCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个指定大小、位模式和热点的光标。

函数原型

HCURSOR CreateCursor(HINSTANCE htnst,int xHotSpot;int yHotSpot;int nWidth;iut nHeight,CONST VOID ★pvANDPlane,CONST VOID ★pvXORPlane);

参数

diff --git a/src/docs/win32api/CreateDialog.html b/src/docs/win32api/CreateDialog.html index c6a219a7..d5a21b78 100644 --- a/src/docs/win32api/CreateDialog.html +++ b/src/docs/win32api/CreateDialog.html @@ -1,6 +1,6 @@ - +

函数功能

CreateDialog宏从一个对话框模板资源创建一个无模式的对话框,CreateDiaog宏使用CreateDialogParam函数。

函数原型

HWND CreateDialog(HINSTANCE hlnstance,LPCTSTR lpTemplate,HWND hWndParent,DLGPROC IpDialogFunc);

参数

diff --git a/src/docs/win32api/CreateDialogParam.html b/src/docs/win32api/CreateDialogParam.html index 69f80c12..0692ff65 100644 --- a/src/docs/win32api/CreateDialogParam.html +++ b/src/docs/win32api/CreateDialogParam.html @@ -1,6 +1,6 @@ - +

函数功能

该函数根据对话框模板资源创建一个无模式的对话框。在显示对话框之前,函数把一个应用程序定义的值作为WM_INITDIALOG消息IParam参数传到对话框过程应用程序可用此值来初始化对话框控制。

函数原型

HWND CreateDialogParam(HINSTANCE hlnstancem,LPCTSTR IpTemplateName,HWND hWndParent,DLGPROCIpDialogFunc, LPARAM dwlniParam);

参数

diff --git a/src/docs/win32api/CreateDialoglndirect.html b/src/docs/win32api/CreateDialoglndirect.html index 263ca621..c6e4f9b3 100644 --- a/src/docs/win32api/CreateDialoglndirect.html +++ b/src/docs/win32api/CreateDialoglndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该宏在内存中从对话框模板上创建一个无模式对话框。此宏使用CreateDialoglndirectparam 函数。

函数原型

HWND CreateDialoglndirect(HINSTANCE hlnstance,LPCDLGTEMPLATE IPTemplate,HWNDhWndParent,DLGPROC IPDialogFunc);

参数

diff --git a/src/docs/win32api/CreateDialoglndirectParam.html b/src/docs/win32api/CreateDialoglndirectParam.html index 036d5c6e..e3baaa64 100644 --- a/src/docs/win32api/CreateDialoglndirectParam.html +++ b/src/docs/win32api/CreateDialoglndirectParam.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从内存中的对话框模板上创建一个无模式对话框,在显示对话框之前,函数把应用程序定义的值作为WM_INITDIALOG消息的IParam参数传送到对话框过程。应用程序可用此值初始化对话框控制。

函数原型

HWND CreateDialoglndirectParam(HINSTANCE hlnstance,LPCDLGTEMPLAT IPTemPIate,HWNDhWndParent,DLGPROC IpDialogFunc,LPARAM IParamlnlt);

参数

diff --git a/src/docs/win32api/CreateMenu.html b/src/docs/win32api/CreateMenu.html index 87d3fc94..76be9a3f 100644 --- a/src/docs/win32api/CreateMenu.html +++ b/src/docs/win32api/CreateMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个菜单。此菜单最初是空的,但可用函数InserMenultem,AppendMenu,和lnsertMenu来填入菜单项。

函数原型

HMENU CreateMenu(VOID)

参数

无。
diff --git a/src/docs/win32api/CreatePopupMenu.html b/src/docs/win32api/CreatePopupMenu.html index da2e05bc..8b0a47c3 100644 --- a/src/docs/win32api/CreatePopupMenu.html +++ b/src/docs/win32api/CreatePopupMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个下拉式菜单、子菜单或快捷菜单。此案单最初是空的,但可用函数InserMenultem来插入或追加菜单项。也可用函数InsertMenu来插人菜单项,用AppendMenu来追加菜单项。

函数原型

HMENU CreatePopupMenu(VOID)

参数

无。
diff --git a/src/docs/win32api/Create_cpm_mdorect_ZIWe.html b/src/docs/win32api/Create_cpm_mdorect_ZIWe.html index b45b2ccd..4dc7538f 100644 --- a/src/docs/win32api/Create_cpm_mdorect_ZIWe.html +++ b/src/docs/win32api/Create_cpm_mdorect_ZIWe.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从ICONINFO结构创建目标或光标。

函数原型

HICON Createlconlndirect(PICONINFO)piconirfo);

参数

diff --git a/src/docs/win32api/Createlcon.html b/src/docs/win32api/Createlcon.html index 5aad7146..76c4eafe 100644 --- a/src/docs/win32api/Createlcon.html +++ b/src/docs/win32api/Createlcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数按指定的大小、彩色、位创建图标。

函数原型

HCON Createlcon(HINSTANCE hlnstance,int nWidth,int nHeight,BYTE cPlanes,BYTE cBitsPixe,CONSTBYTE*IpbANDbits,CONST BYET*IpbXORbits);

参数

diff --git a/src/docs/win32api/CreatelconFromResource.html b/src/docs/win32api/CreatelconFromResource.html index e26d4574..2e3845ec 100644 --- a/src/docs/win32api/CreatelconFromResource.html +++ b/src/docs/win32api/CreatelconFromResource.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过描述图标的资源位创建图标或光标。

函数原型

HICON CreatelconFuomResource(PBYTE presbits,DWORD dwResSize,BOOL flcon,DWORD dwVer);
DresDits:包含图标或光标资源位缓冲区的指针典型应用,可通过调用LOOKuplconldFromDirectory 或LoadResource 函数载入这些位(在Windows95也可调用LookuplconldFromDirectorvEx)。
diff --git a/src/docs/win32api/CreatelconFromResourceEx.html b/src/docs/win32api/CreatelconFromResourceEx.html index 7ede9784..5d3e4894 100644 --- a/src/docs/win32api/CreatelconFromResourceEx.html +++ b/src/docs/win32api/CreatelconFromResourceEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过描述图标的资源位创建图标或光标。

函数原型

HICON CreatelconFromResourceEx(PBYTE pblconBits,DWORD cblconBits,BOOL flcon,DWORd dwVersion,intcxDesired,int cyDesired,UINT uFlags);

参数

diff --git a/src/docs/win32api/DefDlgProc.html b/src/docs/win32api/DefDlgProc.html index 175b0446..c842ebe8 100644 --- a/src/docs/win32api/DefDlgProc.html +++ b/src/docs/win32api/DefDlgProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为属于应用程序定义的对话框类的窗口过程提供缺省的消息处理。

函数原型

LRESULT DefDlgProc(HWND hDlg,UINT Msg,WPARAM wParam, LPARAM Param);

参数

diff --git a/src/docs/win32api/DeleteMenu.html b/src/docs/win32api/DeleteMenu.html index 89d28dc5..138bc90e 100644 --- a/src/docs/win32api/DeleteMenu.html +++ b/src/docs/win32api/DeleteMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从指定菜单里删除一个菜单项。如果此菜单项打开了一个菜单或子菜单,则此函数销毁该菜单或子菜单的句柄,并释放该菜单或子菜单使用的存储器。

函数原型

BOOL DelefeMenu(HMENU hMenu,UINT uPosition,UINT uFlags);

参数

diff --git a/src/docs/win32api/DestroyAcceleratorTable.html b/src/docs/win32api/DestroyAcceleratorTable.html index d3f1a20d..68e3a85a 100644 --- a/src/docs/win32api/DestroyAcceleratorTable.html +++ b/src/docs/win32api/DestroyAcceleratorTable.html @@ -1,6 +1,6 @@ - +

函数功能

撤消加速键表。该函数撤消一个加速键表。在关闭应用程序之前,必须使用该函数撤消所有由DestroyAcceleratorTable函数创建的加速键表。
函数原型: BOOL DestroyAcceleratorTable(HACCEL hAccel);

参数

diff --git a/src/docs/win32api/DestroyCaret.html b/src/docs/win32api/DestroyCaret.html index 06485986..f042065e 100644 --- a/src/docs/win32api/DestroyCaret.html +++ b/src/docs/win32api/DestroyCaret.html @@ -1,6 +1,6 @@ - +

函数功能

该函数清除插入标记的当前形状,从窗口中释放插入标记,并且删除屏幕上的插入标记。如果插入标记的形状是基于位图的,那么DestroyCaret不释放该位图。
函数原型:BOOL DestroyCaret(VOLD)
参数:无。
diff --git a/src/docs/win32api/DestroyCursor.html b/src/docs/win32api/DestroyCursor.html index dc8ae5f1..a9ac7421 100644 --- a/src/docs/win32api/DestroyCursor.html +++ b/src/docs/win32api/DestroyCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数销毁一个光标并释放它占用的任何内存,不要使用该函数去消毁一个共享光标。

函数原型

8OOL DestroyCUrsor(HCURSOR hCursor);

参数

diff --git a/src/docs/win32api/DestroyMenu.html b/src/docs/win32api/DestroyMenu.html index 0e14e130..c4b6e8f2 100644 --- a/src/docs/win32api/DestroyMenu.html +++ b/src/docs/win32api/DestroyMenu.html @@ -1,6 +1,6 @@ - + 函数动能:该函数销毁指定的菜单,并释放此菜单占用的存储器。

函数原型

BOOL DestroyMenu(HMENU hMenu);

参数

diff --git a/src/docs/win32api/Destroylcon.html b/src/docs/win32api/Destroylcon.html index ff2f1e11..d5aa8919 100644 --- a/src/docs/win32api/Destroylcon.html +++ b/src/docs/win32api/Destroylcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数清除图标和释放任何被图标占用的存储空间。

函数原型

BOOL Destroylcon(HICON hlcon);

参数

diff --git a/src/docs/win32api/DialogBox.html b/src/docs/win32api/DialogBox.html index 5e239192..12fc4c9e 100644 --- a/src/docs/win32api/DialogBox.html +++ b/src/docs/win32api/DialogBox.html @@ -1,6 +1,6 @@ - +

函数功能

该宏根据对话框模板资源创建一个模态的对话框。DialogBOX函数直到指定的回调函数通过调用EndDialog函数中止模态的对话框才能返回控制。该宏使用DialogBoxParam函数。

函数原型

int DialogBox(HINSTANCE hlnstance,LPCTSTRIpTemplate,HWND hWndParent,DLGPROC IpDialogFunc);

参数

diff --git a/src/docs/win32api/DialogBoxParam.html b/src/docs/win32api/DialogBoxParam.html index 79a88a7c..3b49bbfa 100644 --- a/src/docs/win32api/DialogBoxParam.html +++ b/src/docs/win32api/DialogBoxParam.html @@ -1,6 +1,6 @@ - +

函数功能

该函数根据对话框模板资源创建一个模态的对话框。在显示对话框之前,函数把一个应用程序定义的值作为WM_INITDIALOG消息的IParam参数传到对话框过程,应用程序可用此值来初始化对话框控制。

函数原型

int DialogBoxParam(HINSTANCE hlnstance,LPCTSTR IpTemplateName,HWND hWndParent, DLGPROCIPDialogFunc,LPARAM dwlnitParam);

参数

diff --git a/src/docs/win32api/DialogBoxlndirect.html b/src/docs/win32api/DialogBoxlndirect.html index 5c16d8f4..549b898c 100644 --- a/src/docs/win32api/DialogBoxlndirect.html +++ b/src/docs/win32api/DialogBoxlndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该宏根据内存中的对话框模板资源创建一个模态的对话框。DialogBoxlndirect宏直到指定的回调函数通过调用EndDialog函数中止模态的对话框才能返回。DiaogBoxlndirect宏使用DialogBoxParam函数。

函数原型

int DialogBoxlndirect(HINSTANCE hlnstance,LPDLGTEMPLATE IpTemplate,HWND hWndParent,DLGPROClpDialogFunc);

参数

hlnstance:标识一个模块的事例,该模块创建对话框。
diff --git a/src/docs/win32api/DialogBoxlndirectParam.html b/src/docs/win32api/DialogBoxlndirectParam.html index 33d78b7d..6d60d815 100644 --- a/src/docs/win32api/DialogBoxlndirectParam.html +++ b/src/docs/win32api/DialogBoxlndirectParam.html @@ -1,6 +1,6 @@ - + 函数功能;该函数根据内存中对话框模板创建一个模态的对话框。在显示对话框之前,函数把一个应用程序定义的值作为WM_INITDIALOG消息的IParam参数传到对话框过程,应用程序可用此值来初始化对话框控制。
函数原型:int DialogBoxlndirectParam(HINSTANCE hlnstance,LPCDLGTEMPLATE hDialogTemplate, HWND hWndParent,DLGPROC IpDiaIogFunc,LPARAM dwlnitParam);

参数

diff --git a/src/docs/win32api/DialogProc.html b/src/docs/win32api/DialogProc.html index ce9e9e0b..1db52d81 100644 --- a/src/docs/win32api/DialogProc.html +++ b/src/docs/win32api/DialogProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数为一个应用程序定义可与DialogBOX函数一起使用的回调函数。它处理发送到一个模态的或无模式对话框的消息。DLGPROC类型定义了一个指向此回调函数的指针。DialogProc函数是应用程序定义函数名的一个占位符。

函数原型

BOOL CALLBACK DialogProc(HWND hwndDlg,UINT UMsg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/DlgDirList.html b/src/docs/win32api/DlgDirList.html index a4f12987..09b5bb5f 100644 --- a/src/docs/win32api/DlgDirList.html +++ b/src/docs/win32api/DlgDirList.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用与指定的文件名匹配的所有文件的名字填充列表框。

函数原型

int DlgDirList(HWND hDlg,LPTSTR lpPathSpec,int nlDListBox,int nlDStaticPath,UINT uFileType);

参数

diff --git a/src/docs/win32api/DlgDirListComboBox.html b/src/docs/win32api/DlgDirListComboBox.html index d7407945..e9a43a0a 100644 --- a/src/docs/win32api/DlgDirListComboBox.html +++ b/src/docs/win32api/DlgDirListComboBox.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用一个目录列表来填充指定的组合框

函数原型

int DlgDirListComboBox(HWND hDlg,LPTSTR lpPathSpec,int nlDComboBox,int nlDStaticPath,UINT uFiletype);

参数

diff --git a/src/docs/win32api/DlgDirSelectComboBoxEx.html b/src/docs/win32api/DlgDirSelectComboBoxEx.html index 0b8d4f9a..2fabe094 100644 --- a/src/docs/win32api/DlgDirSelectComboBoxEx.html +++ b/src/docs/win32api/DlgDirSelectComboBoxEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从由DlgDirlistcomboBox函数填充的组合框中检取当前选择。选择内容为一个驱动器字母、文件名或目录名。

函数原型

BOOL DlgDirSelectComboBox(HWND hDlg,LPTSTR lpString,int nCount,int nlDComboBox);

参数

diff --git a/src/docs/win32api/DlgDirSelectEx(2).html b/src/docs/win32api/DlgDirSelectEx(2).html index 478c02dc..bcb1a766 100644 --- a/src/docs/win32api/DlgDirSelectEx(2).html +++ b/src/docs/win32api/DlgDirSelectEx(2).html @@ -1,6 +1,6 @@ - +

函数功能

该函数从单选列表框中检取当前选择。假定列表框已被DlgDirList函数填充,并且该选择为一个驱动器符,文件名,或目录名。
函数原型:BOOL DlgDirSelectEx(HWND hDlg,LPTSTR lpString,int nCount,int nlDlistBox);

参数

diff --git a/src/docs/win32api/DlgDirSelectEx.html b/src/docs/win32api/DlgDirSelectEx.html index b7a3c939..ef2e4dd4 100644 --- a/src/docs/win32api/DlgDirSelectEx.html +++ b/src/docs/win32api/DlgDirSelectEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从单选列表框中检取当前选择,列表框已经由DlgDirlist函数填充,并且选择内容为一个驱动器字母,文件名或目录名。

函数原型

BOOL DlgDirSelectEx(HWND hDlg,LPTSTR lpString,int nCount,int nlDListBox);

参数

diff --git a/src/docs/win32api/DrawMenuBar.html b/src/docs/win32api/DrawMenuBar.html index 77bbdf3a..34996b88 100644 --- a/src/docs/win32api/DrawMenuBar.html +++ b/src/docs/win32api/DrawMenuBar.html @@ -1,6 +1,6 @@ - +

函数功能

该函数重画指定菜单的菜单条。如果系统创建窗口以后菜单条被修改,则必须调用此函数来画修改了的菜单条。

函数原型

BOOL DrawMenuBar(HWND hWnd);

参数

diff --git a/src/docs/win32api/Drawlcon.html b/src/docs/win32api/Drawlcon.html index 0076e749..820ee7a7 100644 --- a/src/docs/win32api/Drawlcon.html +++ b/src/docs/win32api/Drawlcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在限定的设备上下文窗口的客户区域绘制图标。

函数原型

BOOL Drawlcon(HDC hDC,int X,nit Y HICON hlcon );

参数

diff --git a/src/docs/win32api/DrawlconEx.html b/src/docs/win32api/DrawlconEx.html index a2b733bc..beecb218 100644 --- a/src/docs/win32api/DrawlconEx.html +++ b/src/docs/win32api/DrawlconEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在限定的设备上下文窗口的客户区域绘制图标,执行限定的光栅操作,并按特定要求伸长或压缩图标或光标。

函数原型

B00L DrawlconEX(HDC hdc,int xLeft,int yTOp,HICON hlcon,int cxWidth,int cyWidth UINT isteplfAniCur,HBRUSH hbrFlickerFreeDraw,UINT diFlags);

参数

diff --git a/src/docs/win32api/EditWordBreakproc.html b/src/docs/win32api/EditWordBreakproc.html index a94bbaff..96f84ca1 100644 --- a/src/docs/win32api/EditWordBreakproc.html +++ b/src/docs/win32api/EditWordBreakproc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是由应用程序定义的回调函数,该函数与EM_SETWORDBREAKPROC信号一起使用,一个多行编辑控制每当必须中断文本行时都调用EditwordBreakProc函数。EditwordBreakProc函数定义了一个指向此回调函数的指针,EditwordBreakProc是一个应用程序定义的函数名的占位符。

函数原型

int CALLBACK EditWordBreakkPrOC(LPTSTR lpCh,int ichCurrent,int CCh int code);
参数;
diff --git a/src/docs/win32api/EnableMenultem.html b/src/docs/win32api/EnableMenultem.html index 93931047..6062fa90 100644 --- a/src/docs/win32api/EnableMenultem.html +++ b/src/docs/win32api/EnableMenultem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使指定的菜单项有效、无效或变灰。

函数原型

BOOL EnableMenutem(HMENU hMenu,UINT ulDEnablttem,UINT uEnable;
参数
diff --git a/src/docs/win32api/EnableWindow.html b/src/docs/win32api/EnableWindow.html index f9df576a..463f03c6 100644 --- a/src/docs/win32api/EnableWindow.html +++ b/src/docs/win32api/EnableWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数允许/禁止指定的窗口或控制接受鼠标和键盘的输入,当输入被禁止时,窗口不响应鼠标和按键的输入,输入允许时,窗口接受所有的输入。

函数原型

BOOL EnableWindow(HWND hWnd,BOOL bEnable);

参数

diff --git a/src/docs/win32api/EndDialog.html b/src/docs/win32api/EndDialog.html index 6f967819..ed9fb319 100644 --- a/src/docs/win32api/EndDialog.html +++ b/src/docs/win32api/EndDialog.html @@ -1,6 +1,6 @@ - +

函数功能

该函数清除一个模态对话框,并使系统中止对对话框的任何处理。

函数原型

BOOL EndDialog(HWND hDlg,int nResult);

参数

diff --git a/src/docs/win32api/ExtractAssociatedlcon.html b/src/docs/win32api/ExtractAssociatedlcon.html index 32e66c77..4e8b022b 100644 --- a/src/docs/win32api/ExtractAssociatedlcon.html +++ b/src/docs/win32api/ExtractAssociatedlcon.html @@ -1,6 +1,6 @@ - + 函数功能;该函数返回存在于文件中的索引图标或存在于相关联可执行文件中的图标句柄。

函数原型

HICON ExtractAssociatedlcon(HINSTANCE hlnst,LPTSTR lplconPath);

参数

diff --git a/src/docs/win32api/Extractlcon.html b/src/docs/win32api/Extractlcon.html index 24f17b62..c12e24ac 100644 --- a/src/docs/win32api/Extractlcon.html +++ b/src/docs/win32api/Extractlcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从限定的可执行文件,动态链接库(DLL);或者图标文件中恢复图标句柄.为恢复大或小的图标句柄数组,使用ExtractlconEx函数。

函数原型

HICON EXtractlcon(HINSTANCE hlnst,LPCTSTR lpszExeFileName,UINT nlconlndex);

参数

diff --git a/src/docs/win32api/ExtractlconEx.html b/src/docs/win32api/ExtractlconEx.html index 9d485ea0..ff555790 100644 --- a/src/docs/win32api/ExtractlconEx.html +++ b/src/docs/win32api/ExtractlconEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从限定的可执行文件;动态链接库(DLL),或者图标文件中生成图标句柄数组。

函数原型

UINT EXtractlcohEX(LPCTSTR IpSZFile,int nlconlndex,HICON FAR*PhiCORLarge,HICON FAR'*phiconSmall,UINT nlcons);

参数

diff --git a/src/docs/win32api/FRHookProc.html b/src/docs/win32api/FRHookProc.html index 95950e7a..ea9dc44c 100644 --- a/src/docs/win32api/FRHookProc.html +++ b/src/docs/win32api/FRHookProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是由应用程序定义或库定义的回调函数。它和FindText函数或Replace Text函数一定使用。挂钩函数接收用于Find或Replace公共对话框的缺省对话框函数的消息和通告。
LPFRHOOKPROC类型定义了一个指向此回调函数的指针,FRHookProc是一个应用程序定义的函数名的位置持有者。数原型:UINT CALLBACK FRHookProc(HWND hdlg,UINT uiMsg WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/FindText.html b/src/docs/win32api/FindText.html index 142ad674..be35ccd2 100644 --- a/src/docs/win32api/FindText.html +++ b/src/docs/win32api/FindText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个系统定义的无模式Find对话框,为使用户指定一个串来查找文本内的文字。

函数原型

HWND FindText(LPFINDREPLACE lpfr);

参数

diff --git a/src/docs/win32api/GetActiveWindows.html b/src/docs/win32api/GetActiveWindows.html index 5c33ad73..06e0a83d 100644 --- a/src/docs/win32api/GetActiveWindows.html +++ b/src/docs/win32api/GetActiveWindows.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以获得与调用线程的消息队列相关的活动窗口的窗口句柄。

函数原型

HWND GetActiveWindow(VOID)

参数

无。
diff --git a/src/docs/win32api/GetAsyncKeyState.html b/src/docs/win32api/GetAsyncKeyState.html index e538cc63..2ff7997c 100644 --- a/src/docs/win32api/GetAsyncKeyState.html +++ b/src/docs/win32api/GetAsyncKeyState.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于确定函数被调用时,相应按键是处于按下状态,还是处于弹起状态;并且按下此键前否调用过GetAsyncKeystate函数。

函数原型

SHORT GetAyncKeystate(int vKey);

参数

diff --git a/src/docs/win32api/GetCaretBlinkTime.html b/src/docs/win32api/GetCaretBlinkTime.html index 51c9a339..37016805 100644 --- a/src/docs/win32api/GetCaretBlinkTime.html +++ b/src/docs/win32api/GetCaretBlinkTime.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回一个公用的时间,单位为毫秒。该时间是转化插入标记的像素而需要的时间。用户可以使用控制面板来设置这个值。

函数原型

UINT GetCaretBlinkTime(VOLD)

参数

无。
diff --git a/src/docs/win32api/GetCaretPos.html b/src/docs/win32api/GetCaretPos.html index f0a747dd..8c13fb22 100644 --- a/src/docs/win32api/GetCaretPos.html +++ b/src/docs/win32api/GetCaretPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将插入标记的位置(按客户区坐标)信息拷贝到指定的POINT结构中。

函数原型

BOOL GetCaretPos(LPP0lNT IpPoint);

参数

diff --git a/src/docs/win32api/GetClipCursor.html b/src/docs/win32api/GetClipCursor.html index 8648d203..6d5d4475 100644 --- a/src/docs/win32api/GetClipCursor.html +++ b/src/docs/win32api/GetClipCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取一个矩形区域的屏幕坐标,光标被限制在该矩形区域之内。

函数原型

BOOL GetClipCursor(LPRECT IpRect);

参数

diff --git a/src/docs/win32api/GetCursor.html b/src/docs/win32api/GetCursor.html index 83d30fce..b62f98f4 100644 --- a/src/docs/win32api/GetCursor.html +++ b/src/docs/win32api/GetCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取当前光标的句柄。

函数原型

HCURSOR GetCursor(VOID);

参数

无。
diff --git a/src/docs/win32api/GetCursorpos.html b/src/docs/win32api/GetCursorpos.html index 7949cf00..0fd6f12d 100644 --- a/src/docs/win32api/GetCursorpos.html +++ b/src/docs/win32api/GetCursorpos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取光标的位置,以屏幕坐标表示。

函数原型

BOOL GetCursorPos(LPPOlNT IpPoint);

参数

diff --git a/src/docs/win32api/GetDialogBaseUnits.html b/src/docs/win32api/GetDialogBaseUnits.html index e3eedead..c3b2a7ca 100644 --- a/src/docs/win32api/GetDialogBaseUnits.html +++ b/src/docs/win32api/GetDialogBaseUnits.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回系统的对话基本单位,该基本单位为系统字体字符的平均宽度和高度。对于使用系统字体的对话框,可以用这些值在对话框模板之间转换,比如在对话框模板和像素之间。对于不使用系统字体的对话框,从对话框模板单位到像素的转换要根据对话框使用的字体而定。对于对话框的其中一种类型用MaPDialogRect函数很容易地来执行转换,MaPDialogRect考虑字体且正确的把一个长方形模板单位转换为此像素。

函数原型

LONG GetDialogBaseUnits(VOID);

参数

无。
diff --git a/src/docs/win32api/GetDigCtrllD.html b/src/docs/win32api/GetDigCtrllD.html index 03930490..86687d79 100644 --- a/src/docs/win32api/GetDigCtrllD.html +++ b/src/docs/win32api/GetDigCtrllD.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回指定控制的标识符。

函数原型

Int GetDlgCtrllD(HWND hwndCtl);

参数

diff --git a/src/docs/win32api/GetDigltem.html b/src/docs/win32api/GetDigltem.html index b8d1abe8..888aea1a 100644 --- a/src/docs/win32api/GetDigltem.html +++ b/src/docs/win32api/GetDigltem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索指定的对话框中的控制句柄。

函数原型

HWND GetDlgltem(HWND hDlg,int nlDDlgltem);

参数

diff --git a/src/docs/win32api/GetDlgltemText.html b/src/docs/win32api/GetDlgltemText.html index f2ca41fa..15621b95 100644 --- a/src/docs/win32api/GetDlgltemText.html +++ b/src/docs/win32api/GetDlgltemText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取对话框中与控制有关的文本或标题。

函数原型

UINT GetDlgltemText(HWND hDlg,int nlDDlltem,LPTSTR IpString int nMazCount);

参数

diff --git a/src/docs/win32api/GetDlgltemlnt.html b/src/docs/win32api/GetDlgltemlnt.html index 39479550..51fe9a55 100644 --- a/src/docs/win32api/GetDlgltemlnt.html +++ b/src/docs/win32api/GetDlgltemlnt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把对话框中指定控制的文本转变为一个整型值。

函数原型

UINT GetDlgltemlnt(HWND hDlg,int nlDDlgltem,BOOL ★IpTranslated,BOOL bSigned);

参数

diff --git a/src/docs/win32api/GetFileTitle.html b/src/docs/win32api/GetFileTitle.html index b6eabe17..2048977c 100644 --- a/src/docs/win32api/GetFileTitle.html +++ b/src/docs/win32api/GetFileTitle.html @@ -1,6 +1,6 @@ - +

函数功能

该函数返回由IpszFile参数标识的文件名。

函数原型

short GetFTitle(LPCTSTR LPTSTR IpszTitle,WORD cbBuf);

参数

diff --git a/src/docs/win32api/GetFocus.html b/src/docs/win32api/GetFocus.html index b6f5b4ab..3d69e6f6 100644 --- a/src/docs/win32api/GetFocus.html +++ b/src/docs/win32api/GetFocus.html @@ -1,6 +1,6 @@ - +

函数功能

该函数获取与调用线程消息队列相关的窗口的句柄,该窗口拥有输入焦点。

函数原型

HWND GetFocus(VOID)

参数

无。
diff --git a/src/docs/win32api/GetKBCodePage.html b/src/docs/win32api/GetKBCodePage.html index fc637126..446ab184 100644 --- a/src/docs/win32api/GetKBCodePage.html +++ b/src/docs/win32api/GetKBCodePage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数已过时。可以使用GetOEMCP函数检取系统的OEM代码页标识符。GetKBCodePage函数返回当前代码页。

函数原型

UINT GetKBCodePage(VOID)
参数:无。
diff --git a/src/docs/win32api/GetKeyNameText.html b/src/docs/win32api/GetKeyNameText.html index 2980da13..7dd5f2ff 100644 --- a/src/docs/win32api/GetKeyNameText.html +++ b/src/docs/win32api/GetKeyNameText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取表示键名的字符串。

函数原型

int GetKeyNameText(LONG IParam,LPTSTR IpString,int nSize);

参数

diff --git a/src/docs/win32api/GetKeyState.html b/src/docs/win32api/GetKeyState.html index c2bfd0df..1e75bf84 100644 --- a/src/docs/win32api/GetKeyState.html +++ b/src/docs/win32api/GetKeyState.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检取指定虚拟键的状态。该状态指定此键是UP状态,DOWN状态,还是被触发的(开关每次按下此键时进行切换)。

函数原型

SHORT GetKeyState(int nVirtKey);
函数:
diff --git a/src/docs/win32api/GetKeyboardLayout.html b/src/docs/win32api/GetKeyboardLayout.html index 6b01635c..e4e4dcee 100644 --- a/src/docs/win32api/GetKeyboardLayout.html +++ b/src/docs/win32api/GetKeyboardLayout.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以获得指定线程的活动键盘布局。若dwLayout参数为零,将返回活动线程的键盘布局。

函数原型

HKL GetKeyboardLayout(DWORD dwLayout);

参数

diff --git a/src/docs/win32api/GetKeyboardLayoutList.html b/src/docs/win32api/GetKeyboardLayoutList.html index 27a9b170..dae0ac51 100644 --- a/src/docs/win32api/GetKeyboardLayoutList.html +++ b/src/docs/win32api/GetKeyboardLayoutList.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以获得与系统中输入点的当前集相对应的键盘布局句柄。该函数将句柄拷贝到指定的缓冲区中。

函数原型

UINT GetKeyboardLayoutList(int nBuff,HKL FAR★IpList)

参数

diff --git a/src/docs/win32api/GetKeyboardLayoutName.html b/src/docs/win32api/GetKeyboardLayoutName.html index a1892d1e..61822815 100644 --- a/src/docs/win32api/GetKeyboardLayoutName.html +++ b/src/docs/win32api/GetKeyboardLayoutName.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以获得活动键盘布局的名字。

函数原型

BOOL GetKeyboardLayoutName(LPTSTR pwszKLID);
函数:
diff --git a/src/docs/win32api/GetKeyboardState.html b/src/docs/win32api/GetKeyboardState.html index 1e9a7ce1..c4a10e91 100644 --- a/src/docs/win32api/GetKeyboardState.html +++ b/src/docs/win32api/GetKeyboardState.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将256个虚拟键的状态拷贝到指定的缓冲区中。

函数原型

BOOL GetKeyboardState(PBYTE IpKeyState);

参数

diff --git a/src/docs/win32api/GetMenu.html b/src/docs/win32api/GetMenu.html index b1633712..a3060b96 100644 --- a/src/docs/win32api/GetMenu.html +++ b/src/docs/win32api/GetMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得分配给指定窗口的菜单的句柄。

函数原型

HMENU GetMenu(HWND hWnd);

参数

diff --git a/src/docs/win32api/GetMenuCheckMarkDimensions.html b/src/docs/win32api/GetMenuCheckMarkDimensions.html index f56333a7..24939afb 100644 --- a/src/docs/win32api/GetMenuCheckMarkDimensions.html +++ b/src/docs/win32api/GetMenuCheckMarkDimensions.html @@ -1,6 +1,6 @@ - +

函数功能

返回缺省选取标记位图的尺寸。系统在选取的菜单项旁边显示该位图。调用SetMenultemBitmaPs为菜单项放置选取标记为图前,应用程序必须调用GetMenuCheckMarkDimensions来确定恰当的位图大小。

函数原型

LONG GetMenuCheckMarkDimensions(VOID)

参数

无。
diff --git a/src/docs/win32api/GetMenuDefaultltem.html b/src/docs/win32api/GetMenuDefaultltem.html index 93972024..5aab7c54 100644 --- a/src/docs/win32api/GetMenuDefaultltem.html +++ b/src/docs/win32api/GetMenuDefaultltem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定菜单上的缺省项。

函数原型

UINT GetMenuDefaultltem(HMENY hMenu,UINT fByPos,UINT gmdiFlags);

参数

diff --git a/src/docs/win32api/GetMenuState.html b/src/docs/win32api/GetMenuState.html index 7f77176c..67062148 100644 --- a/src/docs/win32api/GetMenuState.html +++ b/src/docs/win32api/GetMenuState.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得与指定菜单项相联系的菜单标志。如果该菜单项打开了一个子菜单,该函数也返回子菜单里的菜单项数。

函数原型

UINT GetMenuState(HMENU hMenu,UINT uld,UINT uFlags);

参数

diff --git a/src/docs/win32api/GetMenuString.html b/src/docs/win32api/GetMenuString.html index e3170e82..c4ad1160 100644 --- a/src/docs/win32api/GetMenuString.html +++ b/src/docs/win32api/GetMenuString.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定菜单项的正文字符串拷贝到指定缓冲区。

函数原型

int GetMenuString(HMENU hMenu,UINT uIDItem,LPTSTR lpString,int nMaxCount,UINT uFlag);

参数

diff --git a/src/docs/win32api/GetMenultemRect.html b/src/docs/win32api/GetMenultemRect.html index 7282e0ed..7d3f3956 100644 --- a/src/docs/win32api/GetMenultemRect.html +++ b/src/docs/win32api/GetMenultemRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得指定菜单项的边界矩形。

函数原型

BOOL GetMenultemRect(HWND hWnd,HMENU hMenu,UINT ultem,LPRECT lprcltem);

参数

diff --git a/src/docs/win32api/GetMenultemlD.html b/src/docs/win32api/GetMenultemlD.html index 73f5ec39..13b3ed50 100644 --- a/src/docs/win32api/GetMenultemlD.html +++ b/src/docs/win32api/GetMenultemlD.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定菜单里的菜单项个数。

函数原型

int GetMenultemCount(HMENU hMenu);

参数

diff --git a/src/docs/win32api/GetMenultemlnfo.html b/src/docs/win32api/GetMenultemlnfo.html index 269ef524..b61960de 100644 --- a/src/docs/win32api/GetMenultemlnfo.html +++ b/src/docs/win32api/GetMenultemlnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得一个菜单项的信息。

函数原型

BOOL GetMenultemlnfo(HMENU hMenu,UINT ultem,BOOL fByPosition, LPMENUITEMINFOlpmii);

参数

diff --git a/src/docs/win32api/GetNexTDlgTabltem.html b/src/docs/win32api/GetNexTDlgTabltem.html index f7ad79a4..865e2d2f 100644 --- a/src/docs/win32api/GetNexTDlgTabltem.html +++ b/src/docs/win32api/GetNexTDlgTabltem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索有WS_GROUP类型的第一个控制的句柄,该WS_GROUP类型控制跟随指定的控制。

函数原型

HWND GetNextDlgTabltem(HWND hDlg,HWND hCtl,BOOL bPrevious);

参数

diff --git a/src/docs/win32api/GetNextDlgGroupltem.html b/src/docs/win32api/GetNextDlgGroupltem.html index 83e61c3f..b3de672b 100644 --- a/src/docs/win32api/GetNextDlgGroupltem.html +++ b/src/docs/win32api/GetNextDlgGroupltem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数检索控制组的第一个控制的句柄,该控制组跟随对话框中指定的控制。

函数原型

HWND GetNextDlgGroupltem(HWND hDlg,HWND hctl,BOOL bPrevious);

参数

diff --git a/src/docs/win32api/GetOpenFileName.html b/src/docs/win32api/GetOpenFileName.html index 05e336e1..b91e9606 100644 --- a/src/docs/win32api/GetOpenFileName.html +++ b/src/docs/win32api/GetOpenFileName.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个Open公共对话框,使用户指定驱动器、目录和文件名、或使用户打开文件。

函数原型

BOOL GetOpenFileName(LPOPENFILENAME Ipofn);

参数

diff --git a/src/docs/win32api/GetSaveFileName.html b/src/docs/win32api/GetSaveFileName.html index ac0e9f89..3499ba9e 100644 --- a/src/docs/win32api/GetSaveFileName.html +++ b/src/docs/win32api/GetSaveFileName.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个Save公共对话框,以便用户指定驱动器、目录和文件名。

函数原型

BOOL GetSaveFileName(LPOPENFILENAME Ipofn);

参数

diff --git a/src/docs/win32api/GetSystemMenu.html b/src/docs/win32api/GetSystemMenu.html index acd7f1db..59e6e91b 100644 --- a/src/docs/win32api/GetSystemMenu.html +++ b/src/docs/win32api/GetSystemMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数允许应用程序为复制或修改而访问窗口菜单(系统菜单或控制菜单)。

函数原型

HMENU GetSystemMenu(HWND hWnd,BOOL bRevert);

参数

diff --git a/src/docs/win32api/Getlconlnfo.html b/src/docs/win32api/Getlconlnfo.html index 89aa313c..fcf1ae51 100644 --- a/src/docs/win32api/Getlconlnfo.html +++ b/src/docs/win32api/Getlconlnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数恢复限定的图标或光标的信息。

函数原型

BOOL Getlconlnfo(HICON hlcon,PICONINFO piconinfo);

参数

diff --git a/src/docs/win32api/HideCaret.html b/src/docs/win32api/HideCaret.html index 1064e41a..d636c361 100644 --- a/src/docs/win32api/HideCaret.html +++ b/src/docs/win32api/HideCaret.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将屏幕上的插入标记清除。实际上是隐藏插入标记,并不是删除其当前形状或使插入点无效。

函数原型

B00L HideCaret(HWND hWnd);

参数

diff --git a/src/docs/win32api/HlllteMenultem.html b/src/docs/win32api/HlllteMenultem.html index 4885a57f..09d29d8c 100644 --- a/src/docs/win32api/HlllteMenultem.html +++ b/src/docs/win32api/HlllteMenultem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对菜单条中的菜单项加亮或清除亮度。

函数原型

BOOL HiliteMenultem(HWND hwnd,HMENU hMenu,UINT ultemHilite,UINT uHilite);

参数

diff --git a/src/docs/win32api/InsertMenu.html b/src/docs/win32api/InsertMenu.html index 89c04930..d47aed7e 100644 --- a/src/docs/win32api/InsertMenu.html +++ b/src/docs/win32api/InsertMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数插入一个新菜单项到菜单里,并使菜单里其他项下移。

函数原型

BOOL InsertMenu(HMENU hMenu,UINt uPosition,UINT uFlags,UINT uIDNewltem,LPCTSTR lpNewltem);

参数

diff --git a/src/docs/win32api/InsertMenultem.html b/src/docs/win32api/InsertMenultem.html index f9558872..bccc6d89 100644 --- a/src/docs/win32api/InsertMenultem.html +++ b/src/docs/win32api/InsertMenultem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在菜单的指定位置插入一个新菜单项。

函数原型

BOOL WINAPI InsertMenutem(HMENU hMenu,UINT ultem,BOOL fByPosition,LPMENUITEMINFO lpmii );
参数:
diff --git a/src/docs/win32api/IsDialogMessage.html b/src/docs/win32api/IsDialogMessage.html index 90d0e177..06a14e71 100644 --- a/src/docs/win32api/IsDialogMessage.html +++ b/src/docs/win32api/IsDialogMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数决定一个消息是否指定给指定的对话框,如果是,则处理消息。

函数原型

BOOL IsDialogMessage(HWND hDlg,LPMSG IpMsg); 参数: diff --git a/src/docs/win32api/IsDlgButtonChecked.html b/src/docs/win32api/IsDlgButtonChecked.html index a8593f94..988902b4 100644 --- a/src/docs/win32api/IsDlgButtonChecked.html +++ b/src/docs/win32api/IsDlgButtonChecked.html @@ -1,6 +1,6 @@ - +

函数功能

该函数可以确定某个按钮控制是否有选中标志,或者三态按钮控制是否为灰色的、选中的、或两者都不是。

函数原型

UINT IsDlgButtonChecked(HWND hDlg,Int nlDBUtton);

参数

diff --git a/src/docs/win32api/IsMenu.html b/src/docs/win32api/IsMenu.html index 6c230c46..e2137948 100644 --- a/src/docs/win32api/IsMenu.html +++ b/src/docs/win32api/IsMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定一个句柄是否为菜单句柄。

函数原型

BOOL lsMenu(HMENU hMenu);

参数

diff --git a/src/docs/win32api/IsWindowEnabled.html b/src/docs/win32api/IsWindowEnabled.html index f53fe5eb..e62d6149 100644 --- a/src/docs/win32api/IsWindowEnabled.html +++ b/src/docs/win32api/IsWindowEnabled.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于判断指定的窗口是否允许接受键盘或鼠标输入。

函数原型

BOOL IsWindowEnabled(HWND hWnd);

参数

diff --git a/src/docs/win32api/LoadAccelerators.html b/src/docs/win32api/LoadAccelerators.html index 53e561a7..4379a3b9 100644 --- a/src/docs/win32api/LoadAccelerators.html +++ b/src/docs/win32api/LoadAccelerators.html @@ -1,6 +1,6 @@ - +

函数功能

调入加速键表。该函数调入指定的加速键表。

函数原型

HACCEL LoadAccelerators(HINSTANCE hlnstance,LPCTSTR lpTableName);

参数

diff --git a/src/docs/win32api/LoadCursor.html b/src/docs/win32api/LoadCursor.html index 3a95ef00..8cd5bda6 100644 --- a/src/docs/win32api/LoadCursor.html +++ b/src/docs/win32api/LoadCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从一个与应用事例相关的可执行文件(EXE文件)中载入指定的光标资源。该函数已被Loadlmage函数替代。

函数原型

HCURSOR LoadCursor(HINSTANCE hlnstance,LPCTSTR lpCursorName);

参数

diff --git a/src/docs/win32api/LoadCursorFromFile.html b/src/docs/win32api/LoadCursorFromFile.html index 9142f9db..68cb9b7a 100644 --- a/src/docs/win32api/LoadCursorFromFile.html +++ b/src/docs/win32api/LoadCursorFromFile.html @@ -1,6 +1,6 @@ - +

函数功能

该函数根据一个文件中所含的数据创建光标。该文件由它的名字所指定或由一个系统光标鉴别器指定,该函数返回一个新建光标的句柄,文件所包含的光标数据可以是光标格式(CUR)或运动光标格式(.ANI)。

函数原型

HCURSOR LoadCursorFromFile(LPCTSTR IpFileName);

参数

diff --git a/src/docs/win32api/LoadKeyboardLayout.html b/src/docs/win32api/LoadKeyboardLayout.html index 5427298d..8540b11d 100644 --- a/src/docs/win32api/LoadKeyboardLayout.html +++ b/src/docs/win32api/LoadKeyboardLayout.html @@ -1,6 +1,6 @@ - +

函数功能

该函数给系统中装入一种新的键盘布局,可以同时装入几种不同的键盘布局,任一时刻仅有一个进程是活动的,装入多个键盘布局使得在多种布局间快速切换。

函数原型

HKLLoadKeyboardLayout(LPCTSTR pwszKLID,UINT Flags);

参数

diff --git a/src/docs/win32api/LoadMenu.html b/src/docs/win32api/LoadMenu.html index 802ef0a2..e1fe32eb 100644 --- a/src/docs/win32api/LoadMenu.html +++ b/src/docs/win32api/LoadMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从与应用事例相联系的可执行文件(.EXE)中加载指定的菜单资源。

函数原型

HMENU LoadMenu(HINSTANCE hlnstance,LPCTSTR lpMenuName);

参数

diff --git a/src/docs/win32api/LoadMenulndirect.html b/src/docs/win32api/LoadMenulndirect.html index 62d7d2eb..edcc1f40 100644 --- a/src/docs/win32api/LoadMenulndirect.html +++ b/src/docs/win32api/LoadMenulndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数加载指定的菜单模板到内存。

函数原型

HMENU LoadMenulndirect(CONST MENUTEMPLATE”lpMenuTemplate);

参数

diff --git a/src/docs/win32api/Loadlcon.html b/src/docs/win32api/Loadlcon.html index d196aa88..cf09b765 100644 --- a/src/docs/win32api/Loadlcon.html +++ b/src/docs/win32api/Loadlcon.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从与应用事例关联的可执行文件(EXE)中装载限定的图标资源。

函数原型

HICON Loadlcon(HINSTANCE hlnstance,LPCTSTR lplconName);

参数

diff --git a/src/docs/win32api/LookuplconldFrom.html b/src/docs/win32api/LookuplconldFrom.html index 74d81c7c..9b859cc8 100644 --- a/src/docs/win32api/LookuplconldFrom.html +++ b/src/docs/win32api/LookuplconldFrom.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过图标或光标数据搜索最适合当前显示设备的图标或光标。

函数原型

int LookuPlconldFromDirectoryEx(PBYTE presbits,BOOL flcon,int cxDesired,int cyDesired,UINT Flags);

参数

diff --git a/src/docs/win32api/LookuplconldFromDirectory.html b/src/docs/win32api/LookuplconldFromDirectory.html index 1177174a..7562b6a9 100644 --- a/src/docs/win32api/LookuplconldFromDirectory.html +++ b/src/docs/win32api/LookuplconldFromDirectory.html @@ -1,6 +1,6 @@ - +

函数功能

该函数通过图标或光标数据搜索最适合当前显示设备的图标或光标。

函数原型

int LookuplconldFromiDirectory(PBYTE presbits,BOOL flcon);

参数

diff --git a/src/docs/win32api/MapDialogRect.html b/src/docs/win32api/MapDialogRect.html index cd44884f..17f799ba 100644 --- a/src/docs/win32api/MapDialogRect.html +++ b/src/docs/win32api/MapDialogRect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把指定的对话框单位映射成屏幕单位(像素)。函数MapDialogRect用变换坐标替换指定的RECT结构中的坐标,这就使得该结构可以用来创建对话框或定位对话框内的控制。

函数原型

BOOL MapDialogRect(HWND hDlg,LPRECT IpRect);

参数

diff --git a/src/docs/win32api/MapVirtualKey.html b/src/docs/win32api/MapVirtualKey.html index a0504122..0fd7fd99 100644 --- a/src/docs/win32api/MapVirtualKey.html +++ b/src/docs/win32api/MapVirtualKey.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一虚拟键码翻译(映射)成一扫描码或一字符值,或者将一扫描码翻译成一虚拟键码。

函数原型

UINT MaoVirtualKey(UINT uCode,UINT uMapType);

参数

diff --git a/src/docs/win32api/MapVlrtualKeyEx.html b/src/docs/win32api/MapVlrtualKeyEx.html index d9aa223b..8fc6faa9 100644 --- a/src/docs/win32api/MapVlrtualKeyEx.html +++ b/src/docs/win32api/MapVlrtualKeyEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将虚拟键码翻译为扫描码或字符值,或者将扫描码翻译为虚拟键码。该函数使用由给她键盘布局句柄标识的物理键盘和输入语言来翻译这些代码。

函数原型

UINT MapVirtualKeyEx(UINT uCode,UINT uMapType,HKL dwhkl);

参数

diff --git a/src/docs/win32api/MenultemFromPo.html b/src/docs/win32api/MenultemFromPo.html index ca8ade22..ddfffb76 100644 --- a/src/docs/win32api/MenultemFromPo.html +++ b/src/docs/win32api/MenultemFromPo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定指定位置的菜单项(如果存在)。

函数原型

UINT WINAPI MenultemFromPoint(HWND hWnd,HMENU hMenu,POINT ptScreen);

参数

diff --git a/src/docs/win32api/MessageBox.html b/src/docs/win32api/MessageBox.html index ca4bc955..95dacd49 100644 --- a/src/docs/win32api/MessageBox.html +++ b/src/docs/win32api/MessageBox.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建、显示、和操作一个消息框。消息框含有应用程序定义的消息和标题,加上预定义图标与Push(下按)按钮的任何组合。

函数原型

int MessageBox(HWND hWnd,LPCTSTR IpCaption,UINT UType);

参数

diff --git a/src/docs/win32api/MessageBoxEx.html b/src/docs/win32api/MessageBoxEx.html index 5fbdbca5..f860633d 100644 --- a/src/docs/win32api/MessageBoxEx.html +++ b/src/docs/win32api/MessageBoxEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建、显示、和操作一个消息框。消息框含有一个应用程序定义的消息和标题,加上预定义目标与pus(下推)按钮的任何组合。wLanguageld参数指定哪一个语言资源集被用于预定义的下推按钮。有关MessageBoxEX函数其他参数的完整描述,请参见MessageBoxEx函数。

函数原型

int MessageBoxEXHWND hwnd,LPCTSTR IPText, LPCTSTR IpCaPtion, UINT UTye, WORD wLanguageld);

参数

diff --git a/src/docs/win32api/MessageBoxlndirect.html b/src/docs/win32api/MessageBoxlndirect.html index 3ed09d84..020ce3a2 100644 --- a/src/docs/win32api/MessageBoxlndirect.html +++ b/src/docs/win32api/MessageBoxlndirect.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建、显示和操作一个消息框。消息框含有应用程序定义的消息文本和标题,任何位图和预定义的push(下推)按钮的任意组合。

函数原型

int MessageBoxlndirect(LPMSGBoXPARAMs IpMsgBoxParams);

参数

diff --git a/src/docs/win32api/ModifyMenu.html b/src/docs/win32api/ModifyMenu.html index 574d1836..1c9e9a3f 100644 --- a/src/docs/win32api/ModifyMenu.html +++ b/src/docs/win32api/ModifyMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该参数修改已存在的菜单项,并指定菜单项的内容、外观和性能。

函数原型

BOOL ModifyMenu(HMENU hMnu,UINT uPosition,UINT uFlags,UINT uIDNewltem,LPCTSTR IpNewltem);

参数

diff --git a/src/docs/win32api/OFNGookProc.html b/src/docs/win32api/OFNGookProc.html index 1deeb63c..072b04bb 100644 --- a/src/docs/win32api/OFNGookProc.html +++ b/src/docs/win32api/OFNGookProc.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是应用程序定义的或库定义的回调函数,此回调函数与Explorer_Style和Save As公共对话框一起使用。函数贮存从公共对话框发送来的消息或通知LPOFNHOOKPROC类型定义一个指向回调函数指针,OFNHOOKProc是应用程序定义的或库定义的函数名的位置占有者,当创建一个Open或Save As公共对话框时,如果没有指定OFN_EXPLORER标志且需一个挂钩函数。必须用旧式的OFNHookProcOldSttyle挂钩函数。这种情况下对话框将显示旧式的用户界面。

函数原型

UINT CALLBACK OFNHookProc(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/OFNHookProcOldStyle.html b/src/docs/win32api/OFNHookProcOldStyle.html index 71bb6fb4..3d9f9f4b 100644 --- a/src/docs/win32api/OFNHookProcOldStyle.html +++ b/src/docs/win32api/OFNHookProcOldStyle.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是应用程序定义或库定义的回调函数。此回调函数与Open和Save AS公共话框一起使用。函数接收指定给对话框函数的消息或通告。LPOFNHOOKPROC类型定义了一个指向这种回调函数的指针。OFNHookProcOldStyle是应用程序定义的或库定义的函数名的位置占有者。当创建一个Open或Save As公共对话框时,如果指定OFN_EXPLORER标志且需一个挂钩函数,那么必须应用一个Explorer_style的OFNHookProc挂钩函数。

函数原型

UINT CALLBACK OFNHookProcOldStyle(HWND hdlg,UINT uiMsg WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/OemKeyScan.html b/src/docs/win32api/OemKeyScan.html index cd7d31bd..67dc9775 100644 --- a/src/docs/win32api/OemKeyScan.html +++ b/src/docs/win32api/OemKeyScan.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将0-0x0FF的OEM ASCII代码映射为OEM扫描码及其转换状态。该函数通过模拟键盘输入来提供信息,使得一个程序可将OEM文本传送到另一程序。

函数原型

DWORD OemKeyScan(WORD wOemChar);

参数

diff --git a/src/docs/win32api/PagePaintHook.html b/src/docs/win32api/PagePaintHook.html index af0ee229..e821ea56 100644 --- a/src/docs/win32api/PagePaintHook.html +++ b/src/docs/win32api/PagePaintHook.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是一个由应用程序或库定义的回调函数,该回调函数与PageSetup函数一起使用。该函数接收制作PageSetup对话框中样本页绘图的消息。LLPPAGEPAINTHOOK类型定义了一个指向此回调函数的指针。PagePaintHook是由应用程序或库定义的函数名的位置持有者。

函数原型

UINT CALLBACK PagePaintHook(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/PageSetupDlg.html b/src/docs/win32api/PageSetupDlg.html index c2bc7ddb..657f7c95 100644 --- a/src/docs/win32api/PageSetupDlg.html +++ b/src/docs/win32api/PageSetupDlg.html @@ -1,6 +1,6 @@ - +

函数功能

该函数创建一个PageSetup对话框,此对话框能使用户指定打印页的属性。这些属性包括纸张大小和来源,送纸方向和页边距。

函数原型

BOOL PageSetupDlg(LPPAGESETUPDLGI ppsd);

参数

diff --git a/src/docs/win32api/PrintDlg.html b/src/docs/win32api/PrintDlg.html index 78638f5c..c49f468a 100644 --- a/src/docs/win32api/PrintDlg.html +++ b/src/docs/win32api/PrintDlg.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示打印对话框或打印设置对话框。打印对话框使用户指定特殊的打印工作的特点。
打印设置对话框不能应用在新应用程序中,它已经被PageSetupDlg函数创建的打印设置公共对话框所替代。

函数原型

BOOL PrintDIg(LPPRINTDLG Ippd);
diff --git a/src/docs/win32api/PrintHookProc.html b/src/docs/win32api/PrintHookProc.html index 4adf6e8f..2aa4f217 100644 --- a/src/docs/win32api/PrintHookProc.html +++ b/src/docs/win32api/PrintHookProc.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是一个由应用程序或库定义的回调函数,此回调函数与PrintDlg函数一起使用。
函数接收指定给Print公共对话框的缺省对话框函数的消息和通知。LPPWTHOOKPROC类型定义了一个指向此回调函数的指针。PrintHookProc为由应用程序或库定义的函数名的位置占有者。

函数原型

UINT CALLBACK PrintHookProc(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);
diff --git a/src/docs/win32api/PrintdlgEx.html b/src/docs/win32api/PrintdlgEx.html index 2da11197..b6e887ea 100644 --- a/src/docs/win32api/PrintdlgEx.html +++ b/src/docs/win32api/PrintdlgEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示一个Print属性页。该属性页使用户指定特定的打印工作的特性,一个Print属性页有一个控制的General页。该控制与Print中的对话框相似。属性页也有另外紧随General页的指定的应用程序和指定的驱动器特性页。

函数原型

HRESULT PrintDlgEx(LPPRINTDLGEX Ippd);

参数

diff --git a/src/docs/win32api/RegisterHotKey.html b/src/docs/win32api/RegisterHotKey.html index caec9e42..f3406669 100644 --- a/src/docs/win32api/RegisterHotKey.html +++ b/src/docs/win32api/RegisterHotKey.html @@ -1,6 +1,6 @@ - +

函数功能

该函数定义一个系统范围的热键。

函数原型

BOOL RegisterHotKey(HWND hWnd,intid,UINT fsModifiers,UINT vk);

参数

diff --git a/src/docs/win32api/RemoveMenu.html b/src/docs/win32api/RemoveMenu.html index 30581adf..1fbfb503 100644 --- a/src/docs/win32api/RemoveMenu.html +++ b/src/docs/win32api/RemoveMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数从指定菜单删除一个菜单项或分离一个子菜单。如果菜单项打开一个下拉式菜单或子菜单,RemoveMenu不消毁该菜单或其句柄,允许菜单被重用。在调用此函数前,函数GetSubMenu应当取得下拉式菜单或子菜单的句柄。

函数原型

BOOL RemoveMenu(HMENU hMenu,UINT uPosition,UINT uFlgs);

参数

diff --git a/src/docs/win32api/ReplaceText.html b/src/docs/win32api/ReplaceText.html index ffe76a1a..8f35094d 100644 --- a/src/docs/win32api/ReplaceText.html +++ b/src/docs/win32api/ReplaceText.html @@ -1,6 +1,6 @@ - + 函数功能。该函数创建一个系统定义的无模式对话框,此对话框使用户查找或替代一个串,或执行控制和替代操作。

函数原型

HWND Replace Text (LPFINDREPLACE Ipfr);

参数

diff --git a/src/docs/win32api/SendDlgltemMessage.html b/src/docs/win32api/SendDlgltemMessage.html index 58e549f4..657e19a3 100644 --- a/src/docs/win32api/SendDlgltemMessage.html +++ b/src/docs/win32api/SendDlgltemMessage.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把一个消息发送给指定的对话框中的控制。

函数原型

LONG SendDlgltemMessage(HWND hDlg,int nlDDlgltem,UINT Msg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/Sendlnput.html b/src/docs/win32api/Sendlnput.html index be082524..7a17ef26 100644 --- a/src/docs/win32api/Sendlnput.html +++ b/src/docs/win32api/Sendlnput.html @@ -1,6 +1,6 @@ - +

函数功能

该函数用于合成击键、鼠标移动、按钮按下等。

函数原型

UINT SendlnpUt(UINT nlnputs,LPINPUT plnputs,int cbSize);

参数

diff --git a/src/docs/win32api/SetActiveWindow.html b/src/docs/win32api/SetActiveWindow.html index 63cebb05..eb955563 100644 --- a/src/docs/win32api/SetActiveWindow.html +++ b/src/docs/win32api/SetActiveWindow.html @@ -1,6 +1,6 @@ - +

函数功能

该函数激活一个窗口。该窗口必须与调用线程的消息队列相关联。

函数原型

HWND SetActiveWindow(HWND hWnd);

参数

diff --git a/src/docs/win32api/SetCaretBlinkTime.html b/src/docs/win32api/SetCaretBlinkTime.html index 309704e7..3c938392 100644 --- a/src/docs/win32api/SetCaretBlinkTime.html +++ b/src/docs/win32api/SetCaretBlinkTime.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将插入标记的闪烁时间设置为一个指定的数目,该数目的单位为毫秒,闪烁时间就是转化插入标记像素所需的时间,单位为毫秒。

函数原型

BOOL SetCaretBlinkTime(UINT uMSeconds);

参数

diff --git a/src/docs/win32api/SetCaretPos.html b/src/docs/win32api/SetCaretPos.html index 2c27d653..d3fbe751 100644 --- a/src/docs/win32api/SetCaretPos.html +++ b/src/docs/win32api/SetCaretPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将插入标记移动到指定的坐标上。如果拥有该插人标记的窗口是使用CS_OWNDC类样式创建的,那么指定的坐标依据与该窗口相关的设备环境的映射模式而定。

函数原型

BOOL SetCaretPos(int X,int Y);

参数

diff --git a/src/docs/win32api/SetCursor.html b/src/docs/win32api/SetCursor.html index e0350b50..8823f82c 100644 --- a/src/docs/win32api/SetCursor.html +++ b/src/docs/win32api/SetCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数确定光标的形状。

函数原型

HCURSOR SetCursor(HCURSOR hCursor);

参数

diff --git a/src/docs/win32api/SetCursorPos.html b/src/docs/win32api/SetCursorPos.html index 11456199..c56e4526 100644 --- a/src/docs/win32api/SetCursorPos.html +++ b/src/docs/win32api/SetCursorPos.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把光标移到屏幕的指定位置。如果新位置不在由 ClipCursor函数设置的屏幕矩形区域之内,则系统自动调整坐标,使得光标在矩形之内。

函数原型

BOOL SetCursorPOS(int X,int Y);

参数

diff --git a/src/docs/win32api/SetDlgltemText.html b/src/docs/win32api/SetDlgltemText.html index 9fdadf82..308cf1cb 100644 --- a/src/docs/win32api/SetDlgltemText.html +++ b/src/docs/win32api/SetDlgltemText.html @@ -1,6 +1,6 @@ - +

函数功能

该函数设置对话框中控制的文本和标题。

函数原型

BOOL SetDlgltemText(HWND hDlg,int nlDDlgltem,LPCTSTR IpString);

参数

diff --git a/src/docs/win32api/SetDlgltemlnt.html b/src/docs/win32api/SetDlgltemlnt.html index d332d76e..280f620f 100644 --- a/src/docs/win32api/SetDlgltemlnt.html +++ b/src/docs/win32api/SetDlgltemlnt.html @@ -1,6 +1,6 @@ - +

函数功能

该函数把对话框中控制文本设置为用一个指定整型值的字符串表示。

函数原型

BOOL SetDlgltemlnt(HWND hDlg,int nLDDlgltem,UINT uValue,BOOL bSigned);

参数

diff --git a/src/docs/win32api/SetFocus.html b/src/docs/win32api/SetFocus.html index e39efb33..8d61b18b 100644 --- a/src/docs/win32api/SetFocus.html +++ b/src/docs/win32api/SetFocus.html @@ -1,6 +1,6 @@ - +

函数功能

该函数对指定的窗口设置键盘焦点。该窗口必须与调用线程的消息队列相关。

函数原型

HWND SetFocus(HWND hWnd);

参数

diff --git a/src/docs/win32api/SetKeyboardState.html b/src/docs/win32api/SetKeyboardState.html index 58165528..74d54b6b 100644 --- a/src/docs/win32api/SetKeyboardState.html +++ b/src/docs/win32api/SetKeyboardState.html @@ -1,6 +1,6 @@ - +

函数功能

该函数拷贝一个存放键盘键状态的256字节的数组到调用线程的键盘输入状态表中。该表与GetkeyboardState和GetkeyState函数访问的是同一个表。对该表的改变不会影响其他线程的键盘输入。

函数原型

BOOL SetkeyboardState(LPBYTE lpKeyState);

参数

diff --git a/src/docs/win32api/SetMenu.html b/src/docs/win32api/SetMenu.html index 149930b4..369d899a 100644 --- a/src/docs/win32api/SetMenu.html +++ b/src/docs/win32api/SetMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数分配一个新菜单到指定窗口。

函数原型

BOOL SetMenu(HWND hWnd,HMENU hMenu);

参数

diff --git a/src/docs/win32api/SetMenuDefaultltem.html b/src/docs/win32api/SetMenuDefaultltem.html index bf9e23f9..e2546679 100644 --- a/src/docs/win32api/SetMenuDefaultltem.html +++ b/src/docs/win32api/SetMenuDefaultltem.html @@ -1,6 +1,6 @@ - +

函数功能

该函数给指定的菜单设置缺省菜单项。

函数原型

BOOL SetMenuDefaultltem(HMENU hMenu,UINT ultem,UINT fByPo );

参数

diff --git a/src/docs/win32api/SetMenultemBitm.html b/src/docs/win32api/SetMenultemBitm.html index c95b9351..6c8049b4 100644 --- a/src/docs/win32api/SetMenultemBitm.html +++ b/src/docs/win32api/SetMenultemBitm.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的位图与一个菜单项相联系。无论该菜单项是否被选取,系统都将适当的位图显示在菜单项旁边。

函数原型

BOOL SetMenultemBitmaPs(HMENU hMenu,UINT uPosition,UINT uFlags,HBITMAP hBitmapUnchecked,HBITMAP hBitmspChecked);

参数

diff --git a/src/docs/win32api/SetMenultemlnfo.html b/src/docs/win32api/SetMenultemlnfo.html index fe60face..c2db4396 100644 --- a/src/docs/win32api/SetMenultemlnfo.html +++ b/src/docs/win32api/SetMenultemlnfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数改动一个菜单项的信息。

函数原型

BOOL SetMenultemlnfo(HMENU hMenu,UINT uitem,BOOL fByPosition,LPMENUITEMINFO lpmii);

参数

diff --git a/src/docs/win32api/SetSystemCursor.html b/src/docs/win32api/SetSystemCursor.html index f4f7ef38..92f14147 100644 --- a/src/docs/win32api/SetSystemCursor.html +++ b/src/docs/win32api/SetSystemCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使一个应用程序定制系统光标。它用hcur规定的光标内容代替id定义的系统光标内容,接着销毁hour。

函数原型

BOOL SetSystemCursor(HCURSOR hour,DWORD id);

参数

diff --git a/src/docs/win32api/SetupHookProc.html b/src/docs/win32api/SetupHookProc.html index bf691d71..f5f914db 100644 --- a/src/docs/win32api/SetupHookProc.html +++ b/src/docs/win32api/SetupHookProc.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数是一个由应用程序或库定义的回调函数,该回调函数与PrintDlg函数一起使用。
其他同函数19。

函数原型

UINT CALLBACK SetupHookProc(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);
diff --git a/src/docs/win32api/ShowCaret.html b/src/docs/win32api/ShowCaret.html index 3f4eb3a2..560ffb3b 100644 --- a/src/docs/win32api/ShowCaret.html +++ b/src/docs/win32api/ShowCaret.html @@ -1,6 +1,6 @@ - +

函数功能

该函数使插入标记在屏幕的当前位置上可见。当插入标记变为可见时,它自动开始闪烁。

函数原型

BOOL ShowCaret(HWND hWnd);

参数

diff --git a/src/docs/win32api/ShowCursor.html b/src/docs/win32api/ShowCursor.html index 389dd647..5279ca5a 100644 --- a/src/docs/win32api/ShowCursor.html +++ b/src/docs/win32api/ShowCursor.html @@ -1,6 +1,6 @@ - +

函数功能

该函数显示或隐藏光标。

函数原型

int ShowCursor(BOOL bShow);

参数

diff --git a/src/docs/win32api/SoundSentryProc.html b/src/docs/win32api/SoundSentryProc.html index b58bc7d2..6d8648c3 100644 --- a/src/docs/win32api/SoundSentryProc.html +++ b/src/docs/win32api/SoundSentryProc.html @@ -1,6 +1,6 @@ - +

函数功能

该函数是一个库定义的回调函数,当SOUNDSENTRY易用特性存在,并且一个基于win32的应用程序(或者在窗口内运行的应用程序)通过计算机的内置扬声器发声时,它产生一个控制的可视化消息。

函数原型

LRESULT CALLBACK SOUNDSENTRYProc(DWORD dwMillisec,DWORD fdwEffect);

参数

diff --git a/src/docs/win32api/SystemParametersinfo.html b/src/docs/win32api/SystemParametersinfo.html index 34cedb13..c0e88d8f 100644 --- a/src/docs/win32api/SystemParametersinfo.html +++ b/src/docs/win32api/SystemParametersinfo.html @@ -1,6 +1,6 @@ - +

函数功能

该函数查询或设置系统级参数。该函数也可以在设置参数中更新用户配置文件。

函数原型

B00L SystemParametersinfo(UINT uiAction,UINT uiParam,PVOID pvParam,UINT fWinlni);

参数

diff --git a/src/docs/win32api/ToAscii.html b/src/docs/win32api/ToAscii.html index 1582752c..70904a2a 100644 --- a/src/docs/win32api/ToAscii.html +++ b/src/docs/win32api/ToAscii.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的虚拟键码和键盘状态翻译为相应的字符或字符串。该函数使用由给定的键盘布局句柄标识的物理键盘布局和输入语言来翻译代码。

函数原型

int ToAscii(UINT uVirtKey,UINT uScanCode;PBYTE lpKeyState,LPWORD lpChar,UINT uFlags);

参数

diff --git a/src/docs/win32api/ToAsciiCx.html b/src/docs/win32api/ToAsciiCx.html index 8f70f61a..173d07e2 100644 --- a/src/docs/win32api/ToAsciiCx.html +++ b/src/docs/win32api/ToAsciiCx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将指定的虚拟键码和键盘状态翻译为相应的字符或字符串。该函数使用由给定的键盘布局句柄标识的物理键盘布局和输入语言来翻译代码。

函数原型

int ToAsciiEx(UINT uVirtKey,UINT uScanCode,PBYTE lpKeyState,LPWORD lpChar,UINT uFlags, HKL dwhkl);

参数

diff --git a/src/docs/win32api/ToUnicode.html b/src/docs/win32api/ToUnicode.html index 652d35ec..c9f99f9e 100644 --- a/src/docs/win32api/ToUnicode.html +++ b/src/docs/win32api/ToUnicode.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将给定的虚拟键码和键盘状态翻译成相应的字符或字符串。

函数原型

int ToUnicode(UINT wVirtKey,UINT wScanCode,PBYTE lpKeyState,LPWSTR pwszBuff,int cchBuff,UINTwFlags);

参数

diff --git a/src/docs/win32api/ToUnicodeEx.html b/src/docs/win32api/ToUnicodeEx.html index fbbc00d0..35d821fc 100644 --- a/src/docs/win32api/ToUnicodeEx.html +++ b/src/docs/win32api/ToUnicodeEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将给定的虚拟键码和键盘状态翻译成相应的字符或字符串。
函数原型: int ToUnicodeEx(UINT wVirtKey,UINT wScanCode,PBYTE lpKeyState,LPWSTR pwszBuff,int cchBuff,UINTwFlags,HKL dwhkl);
参数:
diff --git a/src/docs/win32api/TrackPopupMenu.html b/src/docs/win32api/TrackPopupMenu.html index 5a949319..11d99c5c 100644 --- a/src/docs/win32api/TrackPopupMenu.html +++ b/src/docs/win32api/TrackPopupMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定位置显示快捷菜单,并跟踪菜单项的选择。快捷菜单可出现在屏幕上的任何位置。

函数原型

BOOL TrackPopupMenu(HMENU hMenu,UINT uFlags,int x,int y,int nReserved,HWND hWnd,CONST RECT”prcRect);
参数
diff --git a/src/docs/win32api/TrackPopupMenuEx.html b/src/docs/win32api/TrackPopupMenuEx.html index 2ec71733..f930af63 100644 --- a/src/docs/win32api/TrackPopupMenuEx.html +++ b/src/docs/win32api/TrackPopupMenuEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数在指定位置显示快捷菜单,并跟踪菜单项的选择。快捷菜单可出现在屏幕上的任何位置。

函数原型

BOOL TrackPopupMenuEX(HMENU hMenu,UINT uFlags,int x,int y,HWND hWnd,LPTPMPARAMS lptpm);

参数

diff --git a/src/docs/win32api/TranslateAccelerator.html b/src/docs/win32api/TranslateAccelerator.html index 5776e33b..c6a2780f 100644 --- a/src/docs/win32api/TranslateAccelerator.html +++ b/src/docs/win32api/TranslateAccelerator.html @@ -1,6 +1,6 @@ - +

函数功能

翻译加速键表。该函数处理菜单命令中的加速键。该函数将一个WM-DEYDOUN或WM-SYSDEYDOWN消息翻译或一个WM-COMMAND或WM-SYSCOMMAND消息(如果在给定的加速键表中有该键的入口),然后将WM-COMMAND或WM-SYSCOMMAND消息直接送到相应的窗口处理过程。
TranslateAccelerator直到窗口过程处理完消息后才返回。

函数原型

int TranslateAccelerator(HWND hWnd,HACCEL hAccTable,LPMSG IpMsg);
diff --git a/src/docs/win32api/UnloadKeyboardL.html b/src/docs/win32api/UnloadKeyboardL.html index a11eb5d8..c711a27b 100644 --- a/src/docs/win32api/UnloadKeyboardL.html +++ b/src/docs/win32api/UnloadKeyboardL.html @@ -1,6 +1,6 @@ - +

函数功能

该函数移去一个键盘布局。

函数原型

BOOL UnloadKeyboardLayout( HKL hkl);

参数

diff --git a/src/docs/win32api/UnreglsterHotKey.html b/src/docs/win32api/UnreglsterHotKey.html index ba6f6308..5f3c2c03 100644 --- a/src/docs/win32api/UnreglsterHotKey.html +++ b/src/docs/win32api/UnreglsterHotKey.html @@ -1,6 +1,6 @@ - +

函数功能

该函数释放调用线程先前登记的热键。

函数原型

BOOL UnregisterHotKey(HWND hWnd,int id);

参数

diff --git a/src/docs/win32api/VkKeyScan.html b/src/docs/win32api/VkKeyScan.html index be401ce5..3a0ed85b 100644 --- a/src/docs/win32api/VkKeyScan.html +++ b/src/docs/win32api/VkKeyScan.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个字符翻译成相应的虚拟键码和对于当前键盘的转换状态。该函数己被VkKeyScanEx函数所替代。仍然可以使用VkKeyscan函数,但是不必再定义键盘布局。

函数原型

SHORT VkKeyScan(TCHARch);

参数

diff --git a/src/docs/win32api/Win32 API 简介.html b/src/docs/win32api/Win32 API 简介.html index ae31a2fb..fbaf2c29 100644 --- a/src/docs/win32api/Win32 API 简介.html +++ b/src/docs/win32api/Win32 API 简介.html @@ -1,6 +1,6 @@ - + Win32 API即为Microsoft 32位平台的应用程序编程接口(Application Programming Interface)。所有在Win32平台上运行的应用程序都可以调用这些函数。
使用Win32 API,应用程序可以充分挖掘Windows的32位操作系统的潜力。 Mircrosoft的所有32位平台都支持统一的API,包括函数、结构、消息、宏及接口。使用 Win32 API不但可以开发出在各种平台上都能成功运行的应用程序,而且也可以充分利用每个平台特有的功能和属性。
在具体编程时,程序实现方式的差异依赖于相应平台的底层功能的不同。最显著的差异是某些函数只能在更强大的平台上实现其功能。例如,安全函数只能在Windows NT操作系统下使用。另外一些主要差别就是系统限制,比如值的范围约束,或函数可管理的项目个数等等。
diff --git a/src/docs/win32api/getSubMenu.html b/src/docs/win32api/getSubMenu.html index 3513a87d..115938d8 100644 --- a/src/docs/win32api/getSubMenu.html +++ b/src/docs/win32api/getSubMenu.html @@ -1,6 +1,6 @@ - +

函数功能

该函数取得被指定菜单激活的下拉式菜单或子菜单的句柄。
函数原型:HMENU GetSubMenu(HMENU hMenu,int nPos);

参数

diff --git a/src/docs/win32api/keybd_event.html b/src/docs/win32api/keybd_event.html index 5675d2c3..cc18009b 100644 --- a/src/docs/win32api/keybd_event.html +++ b/src/docs/win32api/keybd_event.html @@ -1,6 +1,6 @@ - +

函数功能

该函数合成一次击键事件。系统可使用这种合成的击键事件来产生WM_KEYUP或WM_KEYDOWN消息,键盘驱动程序的中断处理程序调用keybd_event函数。在Windows NT中该函数己被使用Sendlhput来替代它。
函数原型;VOID keybd_event(BYTE bVk,BYTE bScan,DWORD dwFlags,DWORD dwExtralnfo);

参数

diff --git a/src/docs/win32api/pageSetupHook.html b/src/docs/win32api/pageSetupHook.html index 9be46b3b..2c8f19a1 100644 --- a/src/docs/win32api/pageSetupHook.html +++ b/src/docs/win32api/pageSetupHook.html @@ -1,6 +1,6 @@ - +

函数功能

该挂钩函数为由应用程序或库定义的回调函数。此回调函数与PageSetupDlg函数一起使用,它接收为PageSetup公用对话框设置缺省对话框的消息或通告。LPPAGESETUPHOOK类型定义了一个指向此回调函数的指针。PageSetupHook是由应用程序或库定义的函数名的位置持有者。

函数原型

UINT CALLBACK PageSetupHook(HWND hdlg,UINT uiMsg,WPARAM wParam,LPARAM IParam);

参数

diff --git a/src/docs/win32api/vkKeyScanEx.html b/src/docs/win32api/vkKeyScanEx.html index 75e2a1b2..530182f6 100644 --- a/src/docs/win32api/vkKeyScanEx.html +++ b/src/docs/win32api/vkKeyScanEx.html @@ -1,6 +1,6 @@ - +

函数功能

该函数将一个字符翻译成相应的虚拟键码和对于当前键盘的上挡状态。该函数使用由给定的键盘布局句柄标识的物理键盘布局和输入语言来翻译字符。

函数原型

SHORT VkKeyScanEx(TCHA ch,HKL dwhkf);

参数

diff --git a/src/docs/win32api/为什么使用 Wiu32 API.html b/src/docs/win32api/为什么使用 Wiu32 API.html index de4ef5ce..24a6976f 100644 --- a/src/docs/win32api/为什么使用 Wiu32 API.html +++ b/src/docs/win32api/为什么使用 Wiu32 API.html @@ -1,6 +1,6 @@ - + 在Windows程序设计领域处于发展初期时,Windows程序员可使用的编程工具唯有API函数。这些函数在程序员手中犹如"积木块"一样,可搭建出各种界面丰富、功能灵活的应用程序。不过,由于这些函数结构复杂,所以往往难以理解,而且容易误用。
随着软件技术的不断发展,在Windows平台上出现了很多优秀的可视化编程环境,程序员可以采用"所见即所得"的编程方式来开发具有精美用户界面和功能的应用程序。这些可视化编程环境操作简便、界面友好,比如:Visual C++,Delphi,Visual Basic等等。在这些工具中提供了大量的类库和各种控件,它们替代了API的神秘功能。事实上,这些类库和控件都是构筑在Windows API的基础上的,但它们使用方便,加速了Windows应用程序的开发,所以受到程序员的普遍采用。有了这些类库和控件,程序员们便可以把主要精力放在整体功能的设计上,而不必过于关注具体细节。不过,这也导致了非常多的程序员在类库面前"固步自封",对下层API函数的强大功能一无所知。
实际上。程序员要想开发出更灵活、更实用、更具效率的应用程序,必然要涉及到直接使用API函数。虽然类库和控件使应用程序的开发容易得多,但它们只提供Microsoft Windows的一般功能,对于一些比较复杂和特殊的功能来说,单使用类库和控件是难以实现的,必须直接使用API函数来编写。API函数是构筑整个Windows框架的基石,只有充分理解和利用API函数,才能深入到Windows的内部,充分发挥各种32位平台的强大功能和灵活性,才能成功地扩展和突破类库、控件和可视开发环境的限制。
diff --git a/src/docs/win32api/内容简介.html b/src/docs/win32api/内容简介.html index 483f7102..a64d54ca 100644 --- a/src/docs/win32api/内容简介.html +++ b/src/docs/win32api/内容简介.html @@ -1,6 +1,6 @@ - + 作为Microsoft 32位平台的应用程序编程接口,Win32 API是从事Windows应用程序开发所必备的。本书首先对Win32 API函数做完整的概述;然后收录五大类函数:窗口管理、图形设备接口、系统服务、国际特性以及网络服务;在附录部分,讲解如何在Visual Basic和Delphi中对其调用。
本书是从事Windows应用程序开发的软件工程师的必备参考手册。
diff --git a/src/docs/win32api/列表框函数(List boX).html b/src/docs/win32api/列表框函数(List boX).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/列表框函数(List boX).html +++ b/src/docs/win32api/列表框函数(List boX).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/前言.html b/src/docs/win32api/前言.html index 89481501..64b9b58b 100644 --- a/src/docs/win32api/前言.html +++ b/src/docs/win32api/前言.html @@ -1,6 +1,6 @@ - + Win32 API作为 Microsoft 32位平台(包括:Windows 9x,Windows NT3.1/4.0/5.0,WindowsCE)的应用程序编程接口,它是构筑所有32位Windows平台的基石,所有在Windows平台上运行的应用程序都可以调用这些函数。
从事Windows应用程序开发,离不开对Win32 API函数的调用。只有充分理解和利用API函数,才能深入到Windows的内部,充分挖掘系统提供的强大功能和灵活性。
近年来,随着Microsoft 32位平台的版本升级, Win32 API函数的构成、功能与调用方式都有很大的发展变化,然而,国内很少有相关的新版资料出版。为了满足广大开发人员的迫切需求,我们经过认真收集、整理素材,组织编写了这本与各种Microsoft 32位平台最新版本同步的Win32 API参考手册。
diff --git a/src/docs/win32api/国际特性.html b/src/docs/win32api/国际特性.html index 26fcbc46..457d48e6 100644 --- a/src/docs/win32api/国际特性.html +++ b/src/docs/win32api/国际特性.html @@ -1,6 +1,6 @@ - + 这些特性有助于用户编写国际化的应用程序。Unicode字符集使用16位的字符值来表示计算过程中所用的字符,比如各种符号,以及很多编程语言。国家语言支持(NLS)函数可帮助用户将应用程序本地化;输入方法编辑器(IME)函数(在Windows亚洲版中可用)用于帮助用户输入包含Unicode和DCBS字符的文本。
国际特性函数包括以下几类:
输入方法编辑器函数(Input Method Editor)
diff --git a/src/docs/win32api/图形设备接口.html b/src/docs/win32api/图形设备接口.html index be08b981..7e92385b 100644 --- a/src/docs/win32api/图形设备接口.html +++ b/src/docs/win32api/图形设备接口.html @@ -1,6 +1,6 @@ - + 图形设备接口(GDI)提供了一系列的函数和相关的结构,应用程序可以使用它们在显示器、打印机或其他设备上生成图形化的输出结果。使用GDI函数可以绘制直线、曲线、闭合图形、路径、文本以及位图图像。所绘制的图形的颜色和风格依赖于所创建的绘图对象,即画笔、笔刷和字体。你可以使用画笔来绘制直线和曲线,使用笔刷来填充闭合图形的内部,使用字体来书写文本。
应用程序通过创建设备环境(DC),可以直接向指定的设备进行输出。设备环境是一个GDI管理的结构。其中包含一些有关设备的信息,比如它的操作方式及当前的选择。应用程序可使用设备环境函数来创建DC。GDI将返回一个设备环境句柄,在随后的调用中,该句柄用于表示该设备。例如,应用程序可以使用该句柄来获取有关该设备性能的一些信息,诸如它的类型(显示器、打印机或其他设备),它的显示界面的尺寸和分辨率等。
应用程序可以直接向一个物理设备进行输出,比如显示器或打印机;也可以向一个"逻辑"设备进行输出,比如内存设备或元文件。逻辑设备向应用程序所提供的保存输出结果的格式,可以很容易地将其发送到物理设备上。一旦应用程序将输出结果记录到了一个元文件中,那么该元文件就可以被使用任意多次,并且该输出结果可以被发送到任意多个物理设备上。
diff --git a/src/docs/win32api/图标函数(Icon).html b/src/docs/win32api/图标函数(Icon).html index a8407495..37e573a7 100644 --- a/src/docs/win32api/图标函数(Icon).html +++ b/src/docs/win32api/图标函数(Icon).html @@ -1,6 +1,6 @@ - + 图标是一个图片,由一个位图图像组成,并和一个掩码组合构成该图片的透明区域。当提到图标时,可以是下列两种情况:
1)单个图标图像。资源类型为RT_ICON。
2)一组图标图像,系统或应用程序可从中选择。资源类型为RT_GROUP_JCON。
diff --git a/src/docs/win32api/对话框函数(Dialog Box).html b/src/docs/win32api/对话框函数(Dialog Box).html index 8d747d14..480e6341 100644 --- a/src/docs/win32api/对话框函数(Dialog Box).html +++ b/src/docs/win32api/对话框函数(Dialog Box).html @@ -1,6 +1,6 @@ - + 对话框是应用程序创建的一个临时窗口,用于获取用户的输入。应用程序通常使用对话框向用户显示一些命令提示信息。一个对话框一般由一个或多个控制(子窗口)组成,这些控制可用来输入文本、选择选项或执行命令动作。 diff --git a/src/docs/win32api/按钮函数(Button).html b/src/docs/win32api/按钮函数(Button).html index b59a13ee..b1066d26 100644 --- a/src/docs/win32api/按钮函数(Button).html +++ b/src/docs/win32api/按钮函数(Button).html @@ -1,6 +1,6 @@ - + Microsoft提供了对话框和控制来支持应用程序与用户之间的交互通讯。按钮就是一种控制,用户可通过点击按钮来向应用程序提供输入信息。 diff --git a/src/docs/win32api/插入标记(^)函数(Caret).html b/src/docs/win32api/插入标记(^)函数(Caret).html index b381985a..c7d26634 100644 --- a/src/docs/win32api/插入标记(^)函数(Caret).html +++ b/src/docs/win32api/插入标记(^)函数(Caret).html @@ -1,6 +1,6 @@ - + 一个插入标记是位于窗口绘图区中的一个闪动的直线、方块或图标。插入标记通常用于指示文本或图形将插入的位置。Win32应用程序可以使用插入标记函数来创建一个插入标记,改变它的闪动频率,显示、隐藏插入标记,或重新设置插入标记的位置。 diff --git a/src/docs/win32api/易用特性函数(Accessibility Features).html b/src/docs/win32api/易用特性函数(Accessibility Features).html index d5db1aa1..04ffef1c 100644 --- a/src/docs/win32api/易用特性函数(Accessibility Features).html +++ b/src/docs/win32api/易用特性函数(Accessibility Features).html @@ -1,6 +1,6 @@ - + Win32 API提供的一系列易用特性使得有残疾的人也能很容易的使用计算机,Win32 API提供了一些函数和结构来控制这些特性。
diff --git a/src/docs/win32api/标函数(Cursor).html b/src/docs/win32api/标函数(Cursor).html index 60bbe6ca..7279d1db 100644 --- a/src/docs/win32api/标函数(Cursor).html +++ b/src/docs/win32api/标函数(Cursor).html @@ -1,6 +1,6 @@ - + 光标是显示屏幕上的一个小图形,其所在的位置由指点设备比如鼠标、光笔或轨迹球等控制。当用户移动鼠标时,系统就会随之移动光标的位置。应用程序使用Win32光标函数可以创建、加载、显示、移动、限制和删除光标。 diff --git a/src/docs/win32api/窗口管理函数.html b/src/docs/win32api/窗口管理函数.html index 5960cb0c..47f3d3e9 100644 --- a/src/docs/win32api/窗口管理函数.html +++ b/src/docs/win32api/窗口管理函数.html @@ -1,7 +1,7 @@ - + 窗口管理函数向应用程序提供了一些创建和管理用户界面的方法。你可以使用窗口管理函数创建和使用窗口来显示输出、提示用户进行输入以及完成其他一些与用户进行交互所需的工作。大多数应用程序都至少要创建一个窗口。
应用程序通过创建窗口类及相应的窗口过程来定义它们所用窗日的外观和行为。窗口类可标识窗口的缺省属性,比如窗口是否接受双击鼠标按钮的操作。或是否带有菜单。窗口过程中包含的代码用于定义窗口的行为,完成所需的任务,以及处理用户的输入。
应用程序可使用GDI函数来产生窗口的输出。由于所有的窗口都共享显示屏幕,所以应用程序不接受对整个屏幕的访问。系统管理所有的输出内容,并对它们进行排列和剪裁,使其能够适合相应的窗口。应用程序可以在处理输入消息时,或为了响应系统的需求而在窗口中绘图。当窗口的大小或位置发生变化时,系统通常会向应用程序发送一个消息,要求它对该窗口中原来未显露的区域进行重画。
diff --git a/src/docs/win32api/系统服务.html b/src/docs/win32api/系统服务.html index 31550df6..dee387a7 100644 --- a/src/docs/win32api/系统服务.html +++ b/src/docs/win32api/系统服务.html @@ -1,6 +1,6 @@ - + 系统服务函数为应用程序提供了访问计算机资源以及底层操作系统特性的手段,比如访问内存、文件系统、设备、进程和线程。应用程序使用系统服务函数来管理和监视它所需要的资源。例如,应用程序可使用内存管理函数来分配和释放内存,使用进程管理和同步函数来启动和调整多个应用程序或在一个应用程序中运行的多个线程的操作。
系统服务函数提供了访问文件、目录以及输入输出(I/O)设备的手段。应用程序使用文件I/O函数可以访问保存在指定计算机以及网络计算机上的磁盘和其他存储设备上的文件和目录。这些函数支持各种文件系统,从FAT文件系统,CD-ROM文件系统(CDFS),到NTFS。
系统访问函数为应用程序提供了一些可以与其他应用程序共享代码或信息的方法。例如,可以将一些有用的过程放到DLL中,使它们对所有的应用程序都可用。应用程序只需使用DLL函数将动态链接库加载进来并获取各过程的地址,就可以使用这些过程了。通讯函数用于向通讯端口写入数据及从通讯端口读出数据,并控制这些端口的操作方式。有几种内部通讯(IPC)的方法,比如DDE、管道(Pipe)、邮槽(Mailslot)和文件映射。对于提供安全属性的操作系统来说,应用程序可使用安全函数来访问安全数据,并保护这些数据不会被有意或无意地访问或破坏。
diff --git a/src/docs/win32api/组合框函数(Combo box).html b/src/docs/win32api/组合框函数(Combo box).html index 2dfaf1ef..d79c3ccb 100644 --- a/src/docs/win32api/组合框函数(Combo box).html +++ b/src/docs/win32api/组合框函数(Combo box).html @@ -1,6 +1,6 @@ - + 组合框是由COMBOBOX类定义的一种控制,综合了列表框和编辑控制的很多功能。使用组合框函数可以在组合框中显示或获取不同类型的数据。 diff --git a/src/docs/win32api/编辑控制函数(Edit Control).html b/src/docs/win32api/编辑控制函数(Edit Control).html index f52cf9df..301da1be 100644 --- a/src/docs/win32api/编辑控制函数(Edit Control).html +++ b/src/docs/win32api/编辑控制函数(Edit Control).html @@ -1,6 +1,6 @@ - + 编辑控制是一个矩形窗口,通常用在对话框中,用户可通过键盘向编辑控制中输入和编辑文本。系统对Unicode文本(字符采用双字节编码)和ANSI(字符采用单字节编码)文本都支持。 diff --git a/src/docs/win32api/网络服务.html b/src/docs/win32api/网络服务.html index 15711003..eedca1ba 100644 --- a/src/docs/win32api/网络服务.html +++ b/src/docs/win32api/网络服务.html @@ -1,6 +1,6 @@ - + 网络函数允许网络上的不同计算机的应用程序之间进行通讯。
网络函数用于在网络中的各计算机上创建和管理共享资源的连接,例如共享目录和网络打印机。
网络接口包括Windows网络函数、Windows套接字(Socket)、NetBIOS、RAS、SNMP、Net函数,以及网络DDE。Windows 95只支持这些函数中的一部分。
diff --git a/src/docs/win32api/菜单函数(Menu).html b/src/docs/win32api/菜单函数(Menu).html index dfcd693d..a2927dbd 100644 --- a/src/docs/win32api/菜单函数(Menu).html +++ b/src/docs/win32api/菜单函数(Menu).html @@ -1,6 +1,6 @@ - + diff --git a/src/docs/win32api/键盘加速器函数(Keyboard Accelerator).html b/src/docs/win32api/键盘加速器函数(Keyboard Accelerator).html index 3623f83d..9b7ce86e 100644 --- a/src/docs/win32api/键盘加速器函数(Keyboard Accelerator).html +++ b/src/docs/win32api/键盘加速器函数(Keyboard Accelerator).html @@ -1,6 +1,6 @@ - + 键盘加速键(或简称为加速键)是一个按键操作或多个按键操作的组合,可向应用程序发送WM_COMMAND或WM_SYSCOMMAND消息。
使用键盘加速键函数可以拷贝、创建、加载或删除加速键表,* 图标是一个图片,由一个位图图像组成,并和一个掩码组合构成该图片的透明区域。当提到图标时,可以是下列两种情况:
1)单个图标图像。资源类型为RT_ICON。
diff --git a/src/docs/win32api/键盘输入函数(Keyboard Input).html b/src/docs/win32api/键盘输入函数(Keyboard Input).html index 3a27d31b..77718573 100644 --- a/src/docs/win32api/键盘输入函数(Keyboard Input).html +++ b/src/docs/win32api/键盘输入函数(Keyboard Input).html @@ -1,6 +1,6 @@ - + 键盘输入函数提供了接受和处理键盘输入的方法。