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
属性和其数字下标之间有着紧密的联系。数组内置的几个方法(例如 join
、slice
、indexOf
等)都会考虑 length
的值。另外还有一些方法(例如 push
、splice
等)还会改变 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 @@
-
+