OSDN Git Service

Clean up <wincon.h>; consolidate its version dependencies.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2018-10-29  Keith Marshall  <keith@users.osdn.me>
2
3         Clean up <wincon.h>; consolidate its version dependencies.
4
5         * include/wincon.h: Tidy layout; assert copyright.
6         [_WIN32_WINNT]: Always compare it symbolically, with respect to...
7         [_WIN32_WINNT_WIN2K, _WIN32_WINNT_WINXP, _WIN32_WINNT_VISTA]: ...each
8         of these; group and consolidate respective version dependencies.
9         (FOREGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_RED)
10         (FOREGROUND_INTENSITY, BACKGROUND_BLUE, BACKGROUND_GREEN)
11         (BACKGROUND_RED, BACKGROUND_INTENSITY, COMMON_LVB_LEADING_BYTE)
12         (COMMON_LVB_TRAILING_BYTE, COMMON_LVB_GRID_HORIZONTAL)
13         (COMMON_LVB_GRID_LVERTICAL, COMMON_LVB_GRID_RVERTICAL)
14         (COMMON_LVB_REVERSE_VIDEO, COMMON_LVB_UNDERSCORE, CTRL_C_EVENT)
15         (CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT)
16         (CTRL_SHUTDOWN_EVENT, ENABLE_LINE_INPUT, ENABLE_ECHO_INPUT)
17         (ENABLE_PROCESSED_INPUT, ENABLE_WINDOW_INPUT, ENABLE_MOUSE_INPUT)
18         (ENABLE_INSERT_MODE, ENABLE_QUICK_EDIT_MODE, ENABLE_EXTENDED_FLAGS)
19         (ENABLE_AUTO_POSITION, ENABLE_VIRTUAL_TERMINAL_INPUT)
20         (ENABLE_PROCESSED_OUTPUT, ENABLE_WRAP_AT_EOL_OUTPUT)
21         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
22         (ENABLE_LVB_GRID_WORLDWIDE, KEY_EVENT, MOUSE_EVENT)
23         (WINDOW_BUFFER_SIZE_EVENT, MENU_EVENT, FOCUS_EVENT, CAPSLOCK_ON)
24         (ENHANCED_KEY, RIGHT_ALT_PRESSED, LEFT_ALT_PRESSED)
25         (RIGHT_CTRL_PRESSED, LEFT_CTRL_PRESSED, SHIFT_PRESSED, NUMLOCK_ON)
26         (SCROLLLOCK_ON, FROM_LEFT_1ST_BUTTON_PRESSED)
27         (FROM_LEFT_2ND_BUTTON_PRESSED, FROM_LEFT_3RD_BUTTON_PRESSED)
28         (FROM_LEFT_4TH_BUTTON_PRESSED, RIGHTMOST_BUTTON_PRESSED, MOUSE_MOVED)
29         (DOUBLE_CLICK, MOUSE_WHEELED, MOUSE_HWHEELED, CONSOLE_FULLSCREEN)
30         (CONSOLE_FULLSCREEN_HARDWARE, CONSOLE_FULLSCREEN_MODE)
31         (CONSOLE_WINDOWED_MODE, CONSOLE_NO_SELECTION)
32         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_SELECTION_NOT_EMPTY)
33         (CONSOLE_MOUSE_SELECTION, CONSOLE_MOUSE_DOWN, HISTORY_NO_DUP_FLAG):
34         Redefine, expressing all values in hexadecimal rather than decimal;
35         this is consistent with Microsoft documentation, and it is also more
36         logical, since all represent bit-flags, bit-fields, or bit-masks.
37
38 2018-10-24  Keith Marshall  <keith@users.osdn.me>
39
40         Make <wincon.h> header effectively self-contained.
41
42         * include/wincon.h [_WIN32_WINNT < 0x0600]: Include <windef.h>...
43         [_WIN32_WINNT >= 0x0600]: ...but, Vista and later need <wingdi.h>
44         [__GNUC__ >= 3]: Remove condition; used only in association with...
45         (#pragma GCC system_header): ...this, it is redundant in this context.
46         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them as appropriate.
47
48 2018-10-24  David Gressett  <texasgaidheal@users.osdn.me>
49
50         Improve WinXP/Vista console I/O support.
51
52         * include/wincon.h (AddConsoleAlias, GetConsoleAlias)
53         (GetConsoleAliases, GetConsoleAliasExes, GetConsoleAliasesLength)
54         (GetConsoleAliasExesLength, GetConsoleOriginalTitle): New function
55         name aliases; define them, mapping them conditionally to represent...
56         [UNICODE]: ...their corresponding UTF-16LE function names, else...
57         [!UNICODE]: ...their corresponding ASCII/DBCS function names.
58         (COMMON_LVB_LEADING_BYTE, COMMON_LVB_TRAILING_BYTE
59         (COMMON_LVB_GRID_HORIZONTAL, COMMON_LVB_GRID_LVERTICAL)
60         (COMMON_LVB_GRID_RVERTICAL, COMMON_LVB_REVERSE_VIDEO)
61         (COMMON_LVB_UNDERSCORE, ENABLE_VIRTUAL_TERMINAL_INPUT)
62         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
63         (ENABLE_LVB_GRID_WORLDWIDE,(MOUSE_HWHEELED): Define them.
64         (GetConsoleAliasA, GetConsoleAliasW, HandlerRoutine): Declare.
65         (CONSOLE_FULLSCREEN, CONSOLE_FULLSCREEN_HARDWARE): Define when...
66         [_WIN32_WINNT >= 0x0500]: ...this prevails; additionally...
67         (GetConsoleFontSize): ...declare function.
68         (CONSOLE_NO_SELECTION, CONSOLE_SELECTION_NOT_EMPTY)
69         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_MOUSE_SELECTION)
70         (CONSOLE_MOUSE_DOWN): Define them; make them visible only when...
71         [_WIN32_WINNT >= 0x0501]: ...this prevails.
72         (struct _CONSOLE_FONT_INFO): Make it visible, only when...
73         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
74         (CONSOLE_FONT_INFO, PCONSOLE_FONT_INFO): ...these typedefs.
75         (struct _CONSOLE_SELECTION_INFO): Declare it; visible only when...
76         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
77         (CONSOLE_SELECTION_INFO, PCONSOLE_SELECTION_INFO): ...these typedefs.
78         [_WIN32_WINNT >= 0x0501] (AddConsoleAliasA, AddConsoleAliasW)
79         (GetConsoleAliasesA, GetConsoleAliasesW, GetConsoleAliasExesA)
80         (GetConsoleAliasExesW, GetConsoleAliasesLengthA)
81         (GetConsoleAliasesLengthW, GetConsoleAliasExesLengthA)
82         (GetConsoleAliasExesLengthW, GetConsoleSelectionInfo)
83         (GetCurrentConsoleFont): Declare functions.
84         [_WIN32_WINNT >= 0x0600] (HISTORY_NO_DUP_FLAG): Define it.
85         (struct _CONSOLE_FONT_INFOEX): New structure; declare it only when...
86         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
87         (CONSOLE_FONT_INFOEX, PCONSOLE_FONT_INFOEX): ...these typedefs.
88         (CONSOLE_HISTORY_INFO, PCONSOLE_HISTORY_INFO): New typedefs; they
89         map to an anonymous structure, and are visible only when...
90         [_WIN32_WINNT >= 0x0600]: ...this prevails.
91         (struct _CONSOLE_READCONSOLE_CONTROL): New structure; declare when...
92         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
93         (CONSOLE_READCONSOLE_CONTROL, PCONSOLE_READCONSOLE_CONTROL): ...these.
94         (struct _CONSOLE_SCREEN_BUFFER_INFOEX): New structure; declare when...
95         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
96         (CONSOLE_SCREEN_BUFFER_INFOEX, PCONSOLE_SCREEN_BUFFER_INFOEX):
97         ...these typedefs.
98         [_WIN32_WINNT >= 0x0600] (GetConsoleHistoryInfo)
99         (GetConsoleOriginalTitleA, GetConsoleOriginalTitleW)
100         (GetConsoleScreenBufferInfoEx, GetCurrentConsoleFontEx)
101         (SetConsoleHistoryInfo, SetConsoleScreenBufferInfoEx)
102         (SetCurrentConsoleFontEx): Declare functions.
103
104 2018-09-03  Keith Marshall  <keith@users.osdn.me>
105
106         Prepare and publish MinGW.org WSL-5.1.1 release.
107
108         * All files (wsl-5.1.1-release): Tag assigned.
109
110 2018-07-29  Keith Marshall  <keith@users.osdn.me>
111
112         Don't restrict <winerror.h> exposure when including <winsock.h>
113
114         * include/winerror.h [__WINSOCK_H_SOURCED__]: Remove filters.
115         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): Do not define; delete
116         all dependent filter references.
117
118 2018-07-11  Keith Marshall  <keith@users.osdn.me>
119
120         Make <wincrypt.h> header effectively self-contained.
121
122         * include/wincrypt.h: Include <winbase.h>
123
124 2018-07-11  Keith Marshall  <keith@users.osdn.me>
125
126         Correct <wincrypt.h> typographic errors; fix issue [#38391]
127
128         * include/wincrypt.h (CALG_TLS1PRF): Delete symbolic reference to...
129         (ALG_CLASS_DHASH): ...this; there is no such symbol; replace it with...
130         (ALG_CLASS_HASH): ...this, which represents the correct reference.
131         (struct _CRYPTOAPI_BLOB): Delete extraneous "typedef" keyword; this
132         struct definition is not directly associated with any type name.
133         (struct _SSL_EXTRA_CERT_CHAIN_POLICY_PARA): Likewise.
134
135 2018-02-26  Keith Marshall  <keith@users.osdn.me>
136
137         Prepare and publish MinGW.org WSL-5.1 release.
138
139         * All files (wsl-5.1-release): Tag assigned.
140
141 2018-02-24  Keith Marshall  <keith@users.osdn.me>
142
143         Make <iptypes.h> header effectively self-contained.
144
145         * include/iptypes.h: Assert copyright; tidy layout.
146         Include <windef.h>; it is required for self-containment.
147         (__need_time_t): Define for selective inclusion of <sys/types.h>
148         (_BEGIN_C_DECLS, _END_C_DECLS): Use them as appropriate.
149         (_WIN32_WINNT): Always compare it symbolically.
150         (__dhcp_time_t): New temporary data type macro; define it...
151         [_WIN64]: ...as equivalent to __time64_t, otherwise...
152         [!_WIN64]: ...equivalent to __time32_t, and then...
153         (struct _IP_ADAPTER_INFO): ...use it as the data type for...
154         (LeaseObtained, LeaseExpires): ...these fields.
155
156 2017-12-20  Keith Marshall  <keith@users.osdn.me>
157
158         Make <winreg.h> header effectively self-contained.
159
160         * include/winreg.h: Include <winbase.h>, thus achieving effective
161         self-containment; since this also indirectly includes <_mingw.h>,
162         there is no longer any need to include it directly.
163
164 2017-12-20  Keith Marshall  <keith@users.osdn.me>
165
166         Clean up, following issue [#2262] patch application.
167
168         * include/winreg.h: Tidy layout; correct copyright assertion.
169         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
170         [UNICODE] (__AW): Do not use deleted macro; replace it with...
171         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
172         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
173         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
174         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
175         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
176         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
177         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
178         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
179         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
180         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
181         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
182         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
183         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
184         all "4.x" branches specified these incorrectly, dependent on...
185         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
186         "legacy" branch, whence the "5.x" branches are propagated, correctly
187         required an alternative condition which is the equivalent of...
188         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
189
190 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
191
192         Update registry management API, per issue [#2262].
193
194         * include/winreg.h: Merge changes from 4.1-dev branch.
195         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
196         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
197         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
198         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
199         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
200         (RRF_ZEROONFAILURE): New manifest constants; define them.
201         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
202         (RegOverridePredefKey): Add previously omitted function prototypes.
203         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
204         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
205         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
206         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
207         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
208         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
209         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
210         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
211         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
212         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
213         (RegDeleteKeyValueA, RegDeleteKeyValueW)
214         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
215         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
216         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
217         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
218         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
219         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
220         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
221         (RegSetKeyValue): Define, mapping each to its respective function...
222         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
223         [defined UNICODE] (__AW): ...for the UTF-16LE case.
224
225         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
226         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
227         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
228         (RegSaveKeyExW@16): Remove them; relocate them to...
229         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
230         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
231         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
232         (RegSaveKeyExW@16): ...their correct location, here.
233         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
234         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
235         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
236         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
237         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
238         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
239         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
240
241 2017-12-16  Keith Marshall  <keith@users.osdn.me>
242
243         Provide default definition for _WIN32_IE feature test macro.
244
245         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
246         (_WIN32_IE_IE50): ...this default value.
247
248         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
249         a conflicting proposal for the default value.
250
251 2017-12-06  Keith Marshall  <keith@users.osdn.me>
252
253         Prepare and publish MinGW.org WSL-5.0.2 release.
254
255         * All files (wsl-5.0.2-release): Tag assigned.
256
257 2017-11-28  Keith Marshall  <keith@users.osdn.me>
258
259         Make <wsnetbs.h> header effectively self-contained.
260
261         * include/wsnetbs.h: Assert copyright; tidy layout; include
262         "_winsock.h", so making this header effectively self-contained, and
263         thus relieving the user of a responsibility for ensuring that some
264         other appropriate WinSock header has been included first.
265
266 2017-11-28  Keith Marshall  <keith@users.osdn.me>
267
268         Factor <winsock.h> duplicate content out of <winsock2.h>
269
270         * include/winsock2.h: Remove all declarations and definitions which
271         are identically specified in <winsock.h>, but keep them in scope by...
272         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
273         declarations and definitions therefrom, which introduce conflicts.
274         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
275         definitions and declarations.
276
277         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
278         WinSock v1.1 and WinSock v2, the latter of which will override when
279         correctly included by <winsock2.h>
280
281 2017-11-24  Keith Marshall  <keith@users.osdn.me>
282
283         Make <winsock.h> and <winsock2.h> duplicate code congruent.
284
285         * include/winsock.h (SOMAXCONN): Move definition into...
286         [!__INSIDE_MSYS__]: ...this guarded scope.
287
288         * include/winsock2.h: Rearrange as necessary.
289         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
290         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
291         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
292         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
293         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
294         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
295         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
296         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
297         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
298         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
299         [!defined __INSIDE_MSYS__]: ...as this, throughout.
300         (gethostname): Update function prototype, adding...
301         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
302
303         * include/ws2spi.h: Tidy layout; assert copyright.
304         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
305         (LPFD_SET): Delete all type references; use...
306         (fd_set *): ...this instead.
307
308 2017-11-14  Keith Marshall  <keith@users.osdn.me>
309
310         Establish default selection for WinSock API declaration.
311
312         * include/windows.h include/nspapi.h: Include...
313         * include/_winsock.h: ...this new system private header; it selects...
314         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
315         provided by conditional inclusion of <winsock2.h>, otherwise...
316         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
317         as provided by inclusion of <winsock.h>
318
319         * tests/headers.at <_winsock.h>: Add reference.
320
321 2017-11-14  Keith Marshall  <keith@users.osdn.me>
322
323         Update gethostname() declaration; drop Cygwin specificity.
324
325         * include/winsock.h (gethostname): Declare unconditionally; add...
326         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
327         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
328         [!defined __INSIDE_MSYS__]: ...as this, throughout.
329
330 2017-11-09  Keith Marshall  <keith@users.osdn.me>
331
332         Normalize fd_set event macros for <winsock2.h> compatibility.
333
334         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
335         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
336         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
337         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
338         count to a bit flag with value of 1, in each case respectively.
339         [_WINSOCK2_H]: Extend shift count enumeration, to include...
340         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
341         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
342         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
343         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
344         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
345         of 1 greater than the offset of the last defined flag; hence...
346         (FD_ALL_EVENTS): ...derive this mask for all event flags.
347
348 2017-11-09  Keith Marshall  <keith@users.osdn.me>
349
350         Filter potential WinSock v2 conflicts out of <winsock.h>
351
352         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
353         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
354         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
355         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
356         not define any of these; they are not compatible with WinSock v2.
357         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
358         appropiately in <winsock2.h>
359
360 2017-11-09  Keith Marshall  <keith@users.osdn.me>
361
362         Filter out <winsock.h> typedef anomalies.
363
364         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
365         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
366         them as type definitions, but warn of potential conflict with...
367         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
368         function; declare its prototype.
369
370 2017-11-08  Keith Marshall  <keith@users.osdn.me>
371
372         Overhaul WinSock fd_set content management macros.
373
374         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
375         original implementations of each of these macros, redirecting to...
376         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
377         inline functions, respectively; these are more robust, and correct a
378         defect in the original FD_SET macro implementation, whereby duplicate
379         descriptors could be added to an fd_set array, but would not then be
380         removed by the corresponding FD_CLR macro.
381
382         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
383         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
384         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
385         function, which is implemented in each of these libraries.
386
387 2017-11-07  Keith Marshall  <keith@users.osdn.me>
388
389         Identify features which have been deprecated in WinSock v2.
390
391         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
392         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
393         (__MINGW_ATTRIB_DEPRECATED): ...to this.
394
395         * include/winsock.h include/winsock2.h: Qualify...
396         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
397         (WSACancelBlockingCall): ...each of these function prototypes, with...
398         (__WINSOCK2_DEPRECATED): ...this attribute.
399
400 2017-11-07  Keith Marshall  <keith@users.osdn.me>
401
402         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
403
404         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
405         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
406         with preferred convention for system feature test macros.
407
408 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
409
410         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
411
412         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
413         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
414         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
415         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
416         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
417         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
418         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
419         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
420         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
421         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
422         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
423
424         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
425         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
426
427 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
428
429         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
430
431         * include/wtypes.h: Tidy layout; assert copyright.
432         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
433         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
434         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
435         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
436         (__BLOB_T_DEFINED): ...this; do not define...
437         (_WTYPES_H): ...this external guard.
438
439         * include/nspapi.h: Tidy layout; assert copyright.
440         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
441         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
442         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
443         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
444         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
445         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
446         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
447         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
448         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
449         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
450         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
451         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
452         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
453         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
454         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
455         (__AW_ALIAS__): ...this, for definition of each of...
456         (SERVICE_INFO, LPSERVICE_INFO): ...these.
457
458         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
459         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
460         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
461         include nspapi.h selectively, to acquire them.
462
463 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
464
465         Factor <winerror.h> duplicate content out of winsock headers.
466
467         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
468         conditional block, and all of its content; selectively include...
469         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
470         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
471         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
472         define them, to segregate WSA error messages applicable to WinSock v2
473         only, from those applicable to both WinSock v1.1 and WinSock v2.
474         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
475         codes, except WSABASEERR, relative to WSABASEERR itself.
476
477 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
478
479         Factor <sys/time.h> duplicate content out of winsock headers.
480
481         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
482         conditional block, and all its content; include <sys/time.h> instead.
483         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
484         processing this header, such that only selected content from other
485         internally referenced headers is exposed.
486
487 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
488
489         Source BSD non-standard type definitions from mingwrt header.
490
491         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
492         conditional block, and its entire type definition content; include...
493         * include/sys/bsdtypes.h: ...this common file instead; it defines...
494         (u_char, u_int, u_long, u_short): ...these non-standard data types.
495
496 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
497
498         Correct misuse of __INSIDE_MSYS__ feature test.
499
500         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
501         omits "defined" operator; it should be expressed consistently as...
502         [! defined __INSIDE_MSYS__]: ...this; correct it.
503
504 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
505
506         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
507
508         * include/winsock.h: Tidy layout; assert copyright.
509         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
510
511         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
512         sections, which are common with <winsock.h>, are laid out congruently.
513         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
514         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
515         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
516         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
517         [UNICODE]: ...alternative typedefs, and function name aliases...
518         [!UNICODE]: ...versus this case.
519
520 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
521
522         Resolve secondary issue arising from MinGW-Bug [#2350]
523
524         * include/winuser.h (GetTitleBarInfo)
525         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
526         it conflicted with current MSDN documentation, so now falls within...
527         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
528
529 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
530
531         Resolve MinGW-Bug [#2350]
532
533         * include/winuser.h (GetTitleBarInfo): Move prototype after...
534         (PTITLEBARINFO): ...this type definition; it is used as a function
535         argument type, so must be defined beforehand.
536
537 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
538
539         Extend testsuite to cover winsock fd_set macro operations.
540
541         * tests/winsock.at: New file; it implements appropriate tests, and
542         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
543         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
544
545         * tests/testsuite.at.in (winsock.at): Integrate it.
546         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
547         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
548         default list of libraries, or resets the list to this initial default.
549         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
550         library specifications, to be used until subsequently reset.
551
552 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
553
554         Prepare and tag for release of MinGW.org WSL-5.0.1
555
556         * All files (wsl-5.0.1-release): Tag assigned.
557
558 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
559
560         Automate testsuite dependency generation.
561
562         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
563         enumerate all such wildcard matches as prerequisites, instead of...
564         (headers.at): ...this sole explicit dependency.
565
566 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
567
568         Make <winnt.h> header effectively self-contained.
569
570         * include/winnt.h (_WINNT_H): Defer definition unless included via...
571         (windef.h): ...this; include it, to enforce inclusion order, then...
572         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
573
574 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
575
576         Consolidate <winuser.h> version specific conditionals.
577
578         * include/winuser.h: Reorganize file content; group manifest constant
579         definitions into one nested collection of conditional blocks, with one
580         block per Windows version evolution; do likewise for type definitions
581         and function prototypes which are always exposed, and separately...
582         [! defined NOGDI]: ...for those which may be suppressed, when GDI
583         support is not required.
584
585 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
586
587         Make <winuser.h> header effectively self-contained.
588
589         * include/winuser.h (stdarg.h): Include it, in addition to...
590         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
591         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
592
593 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
594
595         Consolidate <wingdi.h> version specific conditionals.
596
597         * include/wingdi.h: Reorganize file content; group manifest constant
598         definitions into a single nested collection of conditional blocks, for
599         those definitions which are common to both Win9x and WinNT, with one
600         block per Windows version evolution, sorting alphabetically within
601         each block; do likewise for additional manifest constant definitions
602         which are specific to WinNT, and also for data type definitions and
603         function prototypes.
604
605 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
606
607         Tidy, and make <wingdi.h> header effectively self-contained.
608
609         * include/wingdi.h: Tidy layout; assert copyright.
610         (windef.h): Include it; this achieves self-containment.
611         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
612         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
613         (__AW_ALIAS__): ...this, when defining each of...
614         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
615         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
616         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
617         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
618         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
619         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
620         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
621         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
622         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
623         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
624         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
625         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
626         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
627         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
628         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
629         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
630         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
631         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
632         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
633         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
634         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
635         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
636         (wglUseFontOutlines, GetGlyphIndices): ...these.
637
638 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
639
640         Declare CONDITION_VARIABLE API, per feature request [#2314]
641
642         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
643         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
644         (InitializeConditionVariable, SleepConditionVariableCS)
645         (SleepConditionVariableSRW, WakeAllConditionVariable)
646         (WakeConditionVariable): ...declare prototypes.
647
648 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
649
650         Declare SRWLOCK API, to support feature request [#2314]
651
652         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
653         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
654         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
655         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
656         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
657         (TryAcquireSRWLockShared): Declare additional prototypes.
658
659 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
660
661         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
662
663         * include/winerror.h: Tidy layout; assert copyright.
664
665         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
666         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
667         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
668         both locations; it permitted inconsistency between the two.
669
670 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
671
672         Consolidate <winbase.h> version specific conditionals.
673
674         * include/winbase.h: Reorganize file content; group manifest constant
675         definitions into one nested collection of conditional blocks, with one
676         block per Windows version evolution, sorting alphabetically within each
677         block; do likewise for data type definitions and function prototypes.
678
679 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
680
681         Tidy, and make <winbase.h> header effectively self-contained.
682
683         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
684         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
685         (__AW_EXTENDED__): ...this; subsequently reimplement...
686         (__AW_ALIAS__): ...this, with original name, now encapsulating...
687         (__AW_SUFFIXED__): ...this.
688
689         * include/dbt.h (__AW_ALIAS__): Replace all references with...
690         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
691         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
692         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
693
694         * include/winbase.h: Tidy layout; assert copyright.
695         (stdarg.h, windef.h): Include them, to achieve self-containment.
696         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
697         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
698         [__AW_ALIAS__]: ...this, to correctly specify each of...
699         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
700         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
701         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
702         [__AW_SUFFIXED__]: ...this, to correctly map each of...
703         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
704         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
705         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
706         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
707         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
708         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
709         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
710         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
711         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
712         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
713         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
714         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
715         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
716         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
717         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
718         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
719         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
720         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
721         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
722         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
723         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
724         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
725         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
726         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
727         (GetPrivateProfileInt, GetPrivateProfileSection)
728         (GetPrivateProfileSectionNames, GetPrivateProfileString)
729         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
730         (GetProfileString, GetShortPathName, GetStartupInfo)
731         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
732         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
733         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
734         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
735         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
736         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
737         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
738         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
739         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
740         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
741         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
742         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
743         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
744         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
745         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
746         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
747         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
748         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
749         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
750         (WritePrivateProfileString, WritePrivateProfileStruct)
751         (WriteProfileSection, WriteProfileString): ...these, and add...
752         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
753         (GetFirmwareEnvironmentVariable): ...these previously missing generic
754         function name aliases.
755
756 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
757
758         Refactor mingwrt and w32api common makefile content.
759
760         * Makefile.in (w32api-srcdist-config-files): Rename it...
761         (w32api-srcdist-common-files): ...as this phoney build rule.
762         (shared_include_file): New macro; define it, and include named file.
763         (configure, config.status, Makefile, config.status.missing, _mingw.h)
764         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
765         out; relocate them to new file in common parent directory...
766         * ../Makefile.comm: ...here.
767
768 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
769
770         Correct a copyright notice update omission.
771
772         * configure.ac: Extend copyright date range to include 2017.  Also
773         clean up superfluous trailing whitespace.
774
775 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
776
777         Fix generated header file dependencies.
778
779         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
780         [VERSION.m4]: ...this; package version changes are no longer made...
781         [configure.ac]: ...here; delete associated prerequisite reference.
782         (distclean-local): Delete them.
783
784 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
785
786         Prepare and tag for release of w32api-5.0 package set.
787
788         * All files (wsl-5.0-release): Tag assigned.
789
790 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
791
792         Implement basic test suite infrastructure.
793
794         * tests: New subdirectory; it hosts...
795         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
796         * tests/headers.at: ...these new files; they implement the basic test
797         suite infrastructure, initially comprising header integrity checks.
798
799         * configure.ac (AC_PROG_CXX): Check it.
800         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
801         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
802         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
803         tests/Makefile.
804
805         * Makefile.in (check test tests): New rules; all are synonymous.
806         (check-recursive): New rule; invoked by each of the preceding three.
807         (w32api-srcdist-testsuite-files): New rule; implement and use it...
808         (w32api-srcdist-files): ...here.
809
810 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
811
812         Add missing constant definition, per issue [#2249].
813
814         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
815
816 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
817
818         Avoid unnecessary duplication of configuration files.
819
820         * Makefile.in (vpath install-sh): Define it; it matches...
821         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
822         rule for creating duplicate file reference links in $top_srcdir.
823         (configure): Add '-I ..' option, when running autoconf.
824         (w32api-srcdist-files): Rename it as...
825         (w32api-srcdist-package-files): ...this; remove dependencies on...
826         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
827         (w32api-srcdist-config-files): ...this new distributable files
828         enumeration goal; add it as one new prerequisite of...
829         (w32api-srcdist-files): ...this repurposed goal; also depends on...
830         (w32api-srcdist-package-files): ...this; populate it using...
831         (SRCDIST_ADD): ...this macro; redefine it accordingly.
832
833 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
834
835         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
836
837         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
838         it was previously transcribed incorrectly, as being equivalent to...
839         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
840         (FILE_DEVICE_DISK): ...this.
841
842 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
843
844         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
845
846         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
847         alternative generic symbol mapping definitions, and typedefs, with...
848         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
849         their respective ANSI and UNICODE specific references.
850
851 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
852
853         Deprecate obsolete <winable.h> and <pbt.h> headers.
854
855         * Makefile.in (%.h.in): Generalize vpath definition.
856         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
857         (w32api_generated_headers, replace_headers, macro_name): New macros.
858         (install-w32api-headers): Add dependency on w32api_dist_headers.
859         (%.h): New static pattern rule; it generates generic dependants of...
860         * include/obsolete.h.in: ...this new template for obsolete headers.
861
862         * include/winable.h include/pbt.h: Delete them; they are obsolete;
863         replace them by install-time generated generic stubs.
864
865 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
866
867         Update <winuser.h> and <dbt.h>; fix issue [#2317].
868
869         * include/winuser.h: Tidy layout; add copyright notice.
870         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
871         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
872         selective inclusion of content from other headers; delete when done.
873         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
874         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
875         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
876         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
877         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
878         them selectively from <dbt.h>, where they are properly defined.
879         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
880         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
881         formerly UINT, which doesn't match 64-bit size required for Win64.
882         (SetTimer): Likewise; also declare similar return type.
883         (WINEVENTPROC): Add missing CALLBACK attribute.
884         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
885
886         * include/w32api.h (__AW_ALIAS__): New macro; define it.
887         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
888
889         * include/dbt.h: Tidy layout; add copyright notice.
890         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
891         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
892         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
893         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
894         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
895         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
896         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
897         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
898         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
899         structure typedef names, and their respectively corresponding...
900         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
901         type names.
902
903 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
904
905         Fix a minor ISO-C++11 conformity issue.
906
907         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
908         by ISO-C++11, between concatenated string literal elements.
909         (GetFiberData, NtCurrentTeb): Likewise.
910
911 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
912
913         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
914
915         * include/ddk/winddk.h: Update per issue [#2307] resolution.
916         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
917
918 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
919
920         Prepare and tag all files for release of w32api-3.18.1
921
922         * configure.ac (AC_INIT): Increment patch level to 3.18.1
923
924 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
925
926         Resolve improper macro expansion issue [#2307].
927
928         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
929         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
930         dependent macro WITHIN the expansion of each of these; hence...
931
932         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
933         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
934         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
935         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
936         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
937         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
938         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
939         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
940         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
941         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
942         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
943         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
944         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
945         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
946         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
947         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
948         ...adjust these dependent macro definitions accordingly.
949
950         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
951         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
952         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
953         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
954         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
955         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
956         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
957         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
958         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
959         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
960
961 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
962
963         Update install-sh to match mingw.org/build-aux package.
964
965         * install-sh: Delete it; use version in parent directory instead,
966         recreating local copy, (as symlink, if supported), on demand.
967
968 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
969
970         Eliminate redundant configuration files.
971
972         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
973         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
974
975         * configure.ac (AC_PROG_LN_S): Add configuration check.
976
977 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
978
979         Discard redundant config.guess and config.sub files.
980
981         * config.guess config.sub: Delete them; they are no longer required.
982         * Makefile.in (SRCDIST_ADD): Remove related references.
983
984 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
985
986         Merge recent legacy branch updates to 5.0-active branch.
987
988         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
989         * include/sdkddkver.h include/setupapi.h include/windows.h
990         * include/winnt.h include/winuser.h include/winver.h
991         * include/wtsapi32.h lib/wtsapi32.def: Updated.
992
993 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
994
995         Prepare and tag all files for release of w32api-3.18.
996
997 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
998
999         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
1000
1001         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
1002         references from $(MAKE) command lines; make passes them implicitly.
1003
1004 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1005
1006         Backport MemoryBarrier() implementation from 4.0-dev branch.
1007
1008         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
1009         Earnie's original inline implementation, but declared 'static' to fix
1010         issue [#1661]; it is further modified, to avoid the broken pre-Vista
1011         fallback identified by issue [#2131], and to remove references to...
1012         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
1013         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
1014         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
1015         back to inline assembly code when necessary.
1016
1017         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
1018         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
1019         code, for hosts which do not support the SSE2 'mfence' instruction.
1020
1021 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1022
1023         Merge further W32API updates from Cygwin CVS.
1024         Incorporated selected changes from 2012-08-01 to 2012-08-04.
1025
1026         * include/setupapi.h include/winuser.h include/winver.h
1027         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
1028
1029 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1030
1031         Update mapping of GCC to MSVC host identification macros.
1032
1033         * include/windows.h: Assert copyright; tidy layout.
1034         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
1035         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
1036         [!_WINSVC_H]: Do not explicitly test these here; they are properly
1037         managed implicitly, by GCC, when including the associated headers.
1038
1039         * include/winnt.h: Assert copyright; tidy layout.
1040         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1041         (__aligned__, __always_inline__, __selectany__): Prefer these...
1042         (aligned, always_inline, selectany): ...to these attribute forms.
1043         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
1044         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
1045         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
1046         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
1047         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
1048         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
1049         (_M_IX86): ...also removing this, but relocate it to...
1050         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
1051         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
1052         appropriate.
1053
1054         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
1055         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
1056
1057 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1058
1059         Merge W32API updates, from Cygwin CVS, into legacy branch.
1060         Incorporate changes since release of w32api-3.17, until 2012-07-06.
1061
1062         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
1063         2012-04-28 commit to Cygwin CVS.
1064
1065         * include/gdiplus/gdiplustypes.h include/imagehlp.h
1066         * include/routprot.h include/shlwapi.h include/userenv.h
1067         * include/winbase.h include/wincon.h include/windef.h
1068         * include/winerror.h include/wingdi.h include/winnt.h
1069         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
1070         match Cygwin CVS state, as of 2012-07-06.
1071
1072         * include/wincrypt.h: Updated to remove duplicate manifest constant
1073         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
1074         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
1075         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
1076         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
1077         copies of these further duplicated definitions, identified during
1078         the merging operation.
1079
1080 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1081
1082         Synchronize package version management with MinGW Runtime.
1083
1084         * VERSION.m4: New file; link it to keep in sync with identically named
1085         file in top level composite package source directory; it defines...
1086         (__VERSION__): ...this new composite package version macro.
1087
1088         * aclocal.m4: Link it, to keep in sync with identically named files in
1089         top level composite source and sibling mingwrt sub-package directories.
1090         (__VERSION__): New macro; include VERSION.m4 to define it.
1091         (__BUG_REPORT_URL__): New macro; define it.
1092
1093         * configure.ac (AC_INIT): Assign package version and bug report URL...
1094         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
1095         automatic inclusion of aclocal.m4
1096
1097         * Makefile.in (configure): Add dependency on VERSION.m4
1098
1099 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1100
1101         Eliminate redundant <parts/winioctl.h> header.
1102
1103         * include/parts/winioctl.h: Delete it; distribute its content...
1104         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
1105         ...among these, separating it into discrete sections based on...
1106         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
1107         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
1108         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
1109         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
1110
1111         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
1112         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
1113
1114 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1115
1116         Enforce consistent specification of package version.
1117
1118         * include/w32api.h: Rename as...
1119         * include/w32api.h.in: ...this build-time template file.
1120         (__W32API_VERSION): Redefine it, in terms of...
1121         (%PACKAGE_VERSION_LONG%): ...this substitution template.
1122         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
1123         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
1124         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
1125         (%PACKAGE_VERSION_PATCH%): ...these.
1126
1127         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
1128         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
1129         mingwrt/include/_mingw.h.in file.
1130
1131         * Makefile.in (all-w32api-libs): Add dependency on...
1132         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
1133         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
1134         they apply appropriate substitutions to the renamed template files.
1135         (install-w32api-headers): Explicitly add w32api.h
1136
1137 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1138
1139         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
1140
1141         * include/parts/winioctl.h: New file; it provides infrastructure for
1142         sharing of common code between DDK headers and primary <winioctl.h>
1143         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
1144         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
1145         macros; they facilitate more consise expression of factored out IOCTL
1146         and FSCTL macros; define them.
1147
1148         * include/ddk/ntddk.h: Assert copyright; tidy layout.
1149         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
1150         (_DDK_NTDDK_H): ...this; it provides better indication of location.
1151         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1152
1153         * include/ddk/winddk.h: Assert copyright; tidy layout.
1154         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
1155         (_DDK_WINDDK_H): ...this; it provides better indication of location.
1156         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
1157         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1158         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
1159         (METHOD_NEITHER): Redefine as enumeration; factor it out.
1160         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
1161         (FILE_WRITE_ACCESS): Likewise.
1162         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1163         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1164         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1165         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1166         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1167         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1168         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1169         (PPARTITION_INFORMATION_MBR): Likewise.
1170         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1171         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1172         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1173         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1174         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1175         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1176         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1177         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1178         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1179         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1180         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1181         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1182         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1183         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1184         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1185         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1186         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1187         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1188         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1189         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1190         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1191         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1192         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1193         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1194         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1195         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1196         was defined only when including this enumeration from winioctl.h
1197         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1198         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1199         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1200         include parts/winioctl.h
1201
1202         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1203         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1204         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1205         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1206         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1207         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1208         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1209         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1210         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1211         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1212         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1213         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1214         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1215         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1216         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1217
1218         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1219         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1220         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1221         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1222         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1223         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1224         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1225         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1226         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1227         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1228         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1229         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1230         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1231         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1232         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1233         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1234         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1235         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1236         these macros are now defined in parts/winioctl.h; include it.
1237         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1238         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1239         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1240         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1241         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1242         (VALID_NTFT): Redefine as enumeration; factor it out.
1243         (IsRecognizedPartition, IsContainerPartition): Factor out.
1244         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1245         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1246         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1247         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1248         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1249         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1250         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1251         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1252         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1253         (struct _PARTITION_INFORMATION): Change field data types for...
1254         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1255         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1256         with Windows DDK convention, then factor out struct, together with...
1257         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1258         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1259         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1260         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1261         (struct _GET_LENGTH_INFORMATION)
1262         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1263         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1264         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1265         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1266         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1267         (PFORMAT_EX_PARAMETERS): Factor out.
1268         (struct _REASSIGN_BLOCKS): Change field data types for...
1269         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1270         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1271         convention, then factor out the struct definition, together with...
1272         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1273         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1274         (PSET_PARTITION_INFORMATION): Factor out.
1275         (struct _VERIFY_INFORMATION): Change field data type for...
1276         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1277         factor out the entire struct definition, together with...
1278         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1279         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1280         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1281         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1282         (PDISK_GROW_PARTITION): Factor out.
1283
1284         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1285         definitions from Windows DDK headers, by including parts/winioctl.h;
1286         delete duplicate definitions already identified as having been factored
1287         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1288         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1289         UCHAR, resulting in no significant changes, except that...
1290         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1291         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1292         (StorageManagerName): ...these previously missing fields, originally
1293         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1294         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1295
1296 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1297
1298         Windows application module version information API updates.
1299
1300         * include/winver.h: Assert copyright; tidy layout.
1301         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1302         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1303         having both ANSI and UTF-16LE specific alternative implementations.
1304         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1305         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1306         note that both are generic, with ANSI and UTF-16LE implementations,
1307         but the ANSI implementations are missing from MSVCRT.DLL when...
1308         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1309
1310         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1311         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1312
1313 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1314
1315         Revert a failed experimental macro construct.
1316
1317         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1318         code, and doesn't work in the C preprocessor conditional context where
1319         its associated constant definitions are most likely to be required.
1320         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1321         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1322         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1323         now in terms of their preferred equivalents from <sdkddkver.h>
1324
1325 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1326
1327         Code clean-up; fix MinGW-Bug [#2263].
1328
1329         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1330         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1331         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1332
1333         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1334         style comments, using ISO-C conforming style; remove all redundant
1335         parameter names from function prototype declarations, throughout.
1336         (pragma GCC system_header): Remove pointless conditional guard.
1337         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1338         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1339         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1340         alternatives, respectively; they offer improved self-documentation.
1341         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1342         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1343         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1344         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1345         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1346         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1347         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1348         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1349         from their __AW_STRING_A__ equivalent string constant definitions.
1350         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1351         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1352         a hexadecimal expression of the mask value over the former decimal.
1353         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1354         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1355         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1356         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1357         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1358         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1359         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1360         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1361         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1362         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1363         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1364         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1365         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1366         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1367         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1368         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1369         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1370         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1371         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1372         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1373         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1374         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1375         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1376         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1377         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1378         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1379         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1380         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1381         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1382         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1383         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1384         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1385         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1386         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1387         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1388         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1389         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1390         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1391         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1392         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1393         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1394         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1395         express them in hexadecimal, in preference to original decimal form.
1396         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1397         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1398         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1399         a string literal, but was missing delimiting quotes; insert them.
1400         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1401         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1402         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1403         aliases for each of the UNICODE/non-UNICODE cases respectively.
1404         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1405         was declared as type LPTSTR, but should be type LPSTR.
1406         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1407         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1408         type LPSTR, but should be type LPWSTR.
1409         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1410         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1411         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1412
1413 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1414
1415         Correct defect in build system compilation rule.
1416
1417         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1418         source file; it expands to also include prerequisite header files,
1419         which should not appear on the compilation command line.  Rewrite
1420         rule in static pattern format, and use $< instead.
1421
1422 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1423
1424         Build system corrections for GCC build time support.
1425
1426         * configure.ac (AC_PROG_CC): Don't use this; we need...
1427         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1428         building with only a stage 1 partially built GCC installation.
1429
1430         * Makefile.in (install-headers): New make objective; map it to...
1431         (install-w32api-headers): ...this, for which it is a logical alias.
1432
1433 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1434
1435         Overhaul and streamline build system configuration.
1436
1437         * configure.in: Delete obsolete file; replace with...
1438         * configure.ac: New file; rewritten per current autoconf conventions.
1439
1440         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1441         it now processes the entire build without using separate sub-makes.
1442
1443         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1444         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1445
1446 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1447
1448         Remove unused aclocal.m4 configuration file.
1449
1450         * aclocal.m4: Delete it; it provides no content used by this package.
1451
1452 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1453
1454         Adapt platform feature checks to NTDDI_VERSION conventions.
1455
1456         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1457         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1458         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1459         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1460         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1461
1462         * include/w32api.h: Assert copyright; include sdkddkver.h.
1463         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1464         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1465         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1466         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1467         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1468         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1469         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1470         macro definitions by long integer constants, and mark as deprecated.
1471         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1472         mingwrt/include/_mingw.h, whence we similarly relocate...
1473         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1474
1475         * include/windef.h: Assert copyright; include w32api.h, whence we
1476         infer default assignments, per included sdkddkver.h, for each of...
1477         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1478         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1479
1480 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1481
1482         Remove generated configure script from revision control.
1483
1484         * configure: Delete from SCM; maintainer must regenerate it, when
1485         required, as SCM will now ignore it.
1486
1487 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1488
1489         Cosmetic adjustment to match MSDN documentation.
1490
1491         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1492         of parameter #1 to be LPCVOID, in preference to formerly specified,
1493         and functionally equivalent, 'const LPVOID'.
1494
1495 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1496
1497         Correct typos, as identified by issue [#1534].
1498
1499         * include/setupapi.h (SetupCancelTemporary): Should be...
1500         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1501         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1502         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1503         (SetupQueryA, SetupQueryW): ...these respectively to...
1504         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1505         (SetupDiGetWizardage): Misspelled; correct it to...
1506         (SetupDiGetWizardPage): ...this.
1507
1508 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1509
1510         Declare WTSVirtualChannel API functions per issue [#1342].
1511
1512         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1513         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1514         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1515         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1516         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1517
1518         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1519
1520 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1521
1522         Correct MENUITEMINFO structure definition per issue [#1659].
1523
1524         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1525         field was defined as type DWORD; correct it to type ULONG_PTR.
1526
1527 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1528
1529         Extend visibility of winsock definitions when building Cygwin.
1530
1531         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1532         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1533         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1534         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1535         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1536         [__INSIDE_MSYS__]: ...keep them hidden.
1537
1538         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1539         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1540         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1541         [__INSIDE_MSYS__]: ...also keep them hidden.
1542
1543 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1544
1545         Correct version guard for WinXP minimum requirement.
1546
1547         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1548         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1549         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1550         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1551
1552 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1553
1554         Add missing <shobjidl.h> and associated UUID implementation.
1555
1556         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1557         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1558
1559 2012-03-19  Ben Greear  <greear@users.sf.net>
1560
1561         Adjust header file definition order, to fix issue [#1570].
1562
1563         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1564         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1565
1566 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1567
1568         Add missing return value, flagged by 'make test'.
1569
1570         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1571         Return NO_ERROR in virtual definition.
1572
1573 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1574
1575         Remove duplicate definitions, identified by 'make test'.
1576
1577         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1578         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1579         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1580         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1581         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1582         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1583
1584         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1585         correctly defined (per MSDN) in <wincrypt.h>
1586
1587 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1588
1589         Correct misuse of #ifdef, identified by 'make test'.
1590
1591         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1592         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1593
1594 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1595
1596         Replace more incorrectly named manifest constants.
1597
1598         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1599         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1600         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1601         definitions respectively; retain for backward compatibility only.
1602
1603 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1604
1605         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1606
1607         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1608
1609 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1610
1611         Add missing MAPVK manifest constant definitions.
1612
1613         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1614         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1615
1616 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1617
1618         Correct some misspelled manifest constant names.
1619
1620         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1621         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1622         alias to original misspelling, to maintain backward compatibility.
1623         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1624         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1625         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1626         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1627
1628 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1629
1630         Add a missing Win2K sockets IOCTL feature.
1631
1632         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1633
1634 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1635
1636         Fix an incorrectly typed structure member.
1637
1638         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1639         should be LPSTR; correct it.
1640
1641 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1642
1643         Add another missing manifest constant definition.
1644
1645         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1646
1647 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1648
1649         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1650
1651         * include/windef.h (PACKED): Delete macro definition; its name is not
1652         reserved, and may thus conflict with a user defined name; replace it...
1653         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1654         use __attribute__((packed)) directly instead.
1655
1656 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1657
1658         Fix bad typedef, per MinGW-Bug [#1529].
1659
1660         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1661         conform with MSDN reference, as identified by Safety0ff.
1662
1663 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1664
1665         Add a missing manifest constant definition.
1666
1667         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1668
1669 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1670
1671         Win2K and Vista userenv updates.
1672
1673         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1674         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1675         (ExpandEnvironmentStringsForUser): Define function aliases.
1676         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1677         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1678         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1679         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1680         (GetProfileType): Declare function prototypes.
1681         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1682         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1683         New manifest constants; define them.
1684
1685 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1686
1687         * Makefile.in: Increment CYGRELEASE to 2.
1688
1689 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1690
1691         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1692
1693 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1694
1695         * include/w32api.h: Increment version to 3.17.
1696         * Makefile.in: Ditto.
1697
1698 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1699
1700         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1701         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1702         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1703         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1704
1705 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1706
1707         * include/w32api.h: Increment version to 3.16.
1708         * Makefile.in: Ditto.
1709
1710 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1711
1712         * include/commctrl.h (NMTCKEYDOWN): Define.
1713
1714 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1715
1716         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1717         Define.
1718
1719 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1720
1721         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1722         PSAPI_WORKING_SET_INFORMATION): Define.
1723
1724 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1725
1726         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1727
1728 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1729
1730         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1731
1732 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1733
1734         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1735         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1736         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1737
1738 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1739
1740         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1741         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1742         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1743
1744 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1745
1746         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1747         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1748
1749 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1750
1751         * include/winbase.h (__MINGW_EXTENSION): Define.
1752         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1753         struct to correct issue with -std=c99.
1754
1755 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1756
1757         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1758         (TIMER_BASIC_INFORMATION): Define.
1759         (NtQueryTimer): Define.
1760         (ZwQueryTimer): Define.
1761
1762 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1763
1764         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1765
1766 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1767
1768         * include/winbase.h (GetComputerNameEx): Define.
1769
1770 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1771
1772         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1773
1774 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1775
1776         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1777         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1778         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1779         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1780         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1781         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1782         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1783         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1784         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1785
1786 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1787
1788         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1789         Add defines for backward compatibility.
1790
1791 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1792
1793         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1794         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1795         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1796         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1797         EnumResourceTypesW): Ditto.
1798         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1799
1800 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1801
1802         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1803
1804 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1805
1806         * include/bdatypes.h: Add missing semicolons.
1807
1808 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1809
1810         * include/w32api.h: Increment version to 3.15.
1811         * Makefile.in: Ditto.
1812
1813 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1814
1815         * Makefile.in: Update naming convention and compression format (lzma),
1816         leaving existing naming convention and compression format as is for Cygwin.
1817
1818 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1819
1820         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1821         STATE_SYSTEM_PROTECTED): Define.
1822
1823         Thank you to Marcus von Appen for reporting the issue.
1824
1825 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1826
1827         * include/winuser.h (CF_DIBV5): Define.
1828         (CF_MAX): Adjust accordingly.
1829
1830         Thank you to Lenard Lindstrom for reporting the issue.
1831
1832 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1833
1834         * include/sspi.h (QuerySecurityContextToken): Define.
1835         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1836
1837         Thank you to Magnus Hagander for reporting the issue.
1838
1839 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1840
1841         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1842
1843 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1844
1845         * include/shlwapi (ASSOCDATA): Update definition.
1846
1847         Thank you to Frederic Deschamps for reporting the issue.
1848
1849 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1850
1851         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1852         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1853         COPY_FILE_NO_BUFFERING): Define.
1854
1855         Thank you to Roland Schwingel for reporting the issue.
1856
1857 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1858
1859         * include/winuser.h (HHOOK): Move definition from here...
1860         * include/windef.h: ...to here, as per MSDN.
1861
1862         Thank you to Samuel Thibault for reporting the issue.
1863
1864 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1865
1866         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1867         MSDN, change return type to LPCH.
1868         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1869
1870         Thank you to Emmanuel Stapf for reporting the issue.
1871
1872 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1873
1874         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1875         * include/windowsx.h (SNDMSG): Ditto.
1876
1877 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1878
1879         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1880
1881         Thank you to Ozkan Sezer for reporting the issue.
1882
1883 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1884
1885         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1886
1887         Thank you to Chris Oldwood for reporting the issue.
1888
1889 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1890
1891         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1892
1893         Thank you to Rick Walsh for reporting the issue.
1894
1895 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1896
1897         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1898
1899 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1900
1901         * include/winbase.h (OVERLAPPED): Correct definition.
1902
1903 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1904
1905         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1906         definition.
1907
1908         Thank you to Pasi Ruokola for reporting the issue.
1909
1910 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1911
1912         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1913
1914         Thank you to cheznonnon for reporting the issue.
1915
1916 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1917
1918         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1919
1920 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1921
1922         * winnt.h: Fix several SUBLANG ID errors (ref:
1923         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1924         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1925         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1926         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1927         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1928         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1929         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1930         (SUBLANG_LAO_LAO): ... this.
1931         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1932         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1933         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1934         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1935         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1936         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1937         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1938         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1939         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1940         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1941         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1942
1943 2010-08-24  LRN  <lrn1986@gmail.com>
1944
1945         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1946         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1947         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1948         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1949         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1950         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1951         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1952         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1953         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1954         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1955         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1956         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1957         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1958         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1959         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1960         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1961         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1962         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1963         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1964         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1965         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1966         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1967         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1968         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1969         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1970         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1971         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1972         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1973         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1974         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1975         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1976         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1977         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1978         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1979         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1980         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1981         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1982         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1983         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1984         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1985         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1986         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1987         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1988         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1989         WAVE_FORMAT_DTS2): Define.
1990         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1991         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1992         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1993         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1994         Define.
1995
1996 2010-08-23  LRN  <lrn1986@gmail.com>
1997
1998         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1999         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
2000         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
2001         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
2002         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
2003         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
2004         GetFinalPathNameByHandleW): Define.
2005
2006 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2007
2008         * lib/CheckConflicts.sh: New file.
2009
2010 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2011
2012         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
2013         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
2014         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
2015         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
2016         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
2017         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
2018         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
2019         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
2020         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
2021         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
2022         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
2023         conflicting definition.
2024         * lib/th32.def: Remove.
2025         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
2026         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
2027         definition.
2028
2029 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2030
2031         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
2032
2033 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2034
2035         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
2036
2037 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
2038
2039         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
2040         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
2041         * include/ddk/winddk.h: Ditto.
2042
2043 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
2044
2045         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
2046         CreateSymbolicLinkA, CreateSymbolicLink): Define
2047
2048 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2049
2050         * lib/kernel32.def(FatalExit): Correct definiton.
2051
2052 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2053
2054         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
2055         from 2010-07-17 since it breaks several applications.
2056
2057 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2058
2059         * lib/kernel32.def: Regenerate using gendef.
2060
2061 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
2062
2063         * include/commctrl.h (LVIF_GROUPID): Fix definition.
2064
2065 2010-07-20  Michael James  <james.me@gmail.com>
2066
2067         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
2068
2069 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2070
2071         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
2072         definition.
2073         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
2074         NdrMarshSCtxtHdl): Ditto.
2075         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
2076         definition in favour of typedef definition.
2077
2078         Thank you to Yuta Tomino for reporting the issues.
2079
2080 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
2081
2082         * include/gdiplus.h: New file.
2083         * include/gdiplus/gdiplus.h: New file.
2084         * include/gdiplus/gdiplusbase.h: New file.
2085         * include/gdiplus/gdiplusbrush.h: New file.
2086         * include/gdiplus/gdipluscolor.h: New file.
2087         * include/gdiplus/gdipluscolormatrix.h: New file.
2088         * include/gdiplus/gdipluseffects.h: New file.
2089         * include/gdiplus/gdiplusenums.h: New file.
2090         * include/gdiplus/gdiplusflat.h: New file.
2091         * include/gdiplus/gdiplusgpstubs.h: New file.
2092         * include/gdiplus/gdiplusgraphics.h: New file.
2093         * include/gdiplus/gdiplusheaders.h: New file.
2094         * include/gdiplus/gdiplusimageattributes.h: New file.
2095         * include/gdiplus/gdiplusimagecodec.h: New file.
2096         * include/gdiplus/gdiplusimaging.h: New file.
2097         * include/gdiplus/gdiplusimpl.h: New file.
2098         * include/gdiplus/gdiplusinit.h: New file.
2099         * include/gdiplus/gdipluslinecaps.h: New file.
2100         * include/gdiplus/gdiplusmatrix.h: New file.
2101         * include/gdiplus/gdiplusmem.h: New file.
2102         * include/gdiplus/gdiplusmetafile.h: New file.
2103         * include/gdiplus/gdiplusmetaheader.h: New file.
2104         * include/gdiplus/gdipluspath.h: New file.
2105         * include/gdiplus/gdipluspen.h: New file.
2106         * include/gdiplus/gdipluspixelformats.h: New file.
2107         * include/gdiplus/gdiplusstringformat.h: New file.
2108         * include/gdiplus/gdiplustypes.h: New file.
2109         * lib/gdiplus.c: New file containing GDI+ variable definitions
2110         and GUIDs.
2111         * lib/gdiplus.def: New file.
2112         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
2113         add gdiplus.c to SOURCES.
2114         * lib/test.c: Include gdiplus.h.
2115
2116 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
2117
2118         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
2119         GetPerformanceInfo): Define.
2120         * lib/psapi.def (GetPerformanceInfo): Define.
2121         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
2122         CryptEnumProviders): Define.
2123
2124 2010-02-17  LRN  <lrn1986@gmail.com>
2125
2126         * include/shlguid.h (IID_IFolderView): Define.
2127         * include/shlobj.h (IFolderView interface): Define.
2128         * lib/shell32.c (IID_IFolderView): Export.
2129
2130 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2131
2132         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
2133         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2134
2135 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2136
2137         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
2138
2139 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2140
2141         * include/shlobj.h (SHParseDisplayName): Fix definition.
2142
2143 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2144
2145         * include/w32api.h: Increment version to 3.14.
2146         * Makefile.in: Ditto.
2147
2148 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2149
2150         * include/shlobj.h (SHParseDisplayName): Define.
2151
2152         Thanks to James Roberts-Thomson for the report.
2153
2154 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2155
2156         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
2157
2158         Thanks to Alexander Vassilev for the report.
2159
2160 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2161
2162         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2163
2164         Thanks to Thomas Denk for the report.
2165
2166 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2167
2168         * include/winbase.h (UnmapViewOfFile): Correct definition.
2169
2170         Thanks to Dimitry Sibiryakov for the report.
2171
2172 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2173
2174         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2175
2176 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2177
2178         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2179         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2180
2181 2009-20-10  Michael James  <james.me@gmail.com>
2182
2183         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2184         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2185         >= 0x0501.
2186         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2187         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2188         RemoveWindowSubclass@12): Add exports.
2189         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2190
2191 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2192
2193         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2194         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2195         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2196         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2197         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2198         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2199         RegisterTouchWindow, UnregisterTouchWindow): Define.
2200         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2201         RegisterTouchWindow, UnregisterTouchWindow): Define.
2202
2203 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2204
2205         * include/winver.h (VerQueryValue[AW]): Correct definition.
2206
2207 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2208
2209         * include/shlobj.h (SHARD): Add enum.
2210         (SHARD_PATH): Define based on UNICODE.
2211
2212         Thanks to Jacek Caban for the report.
2213
2214 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2215
2216         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2217
2218         Thanks to Bruno Martinez for the report.
2219
2220 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2221
2222         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2223         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2224         SHGetIconOverlayIndex): Define.
2225
2226         Thanks to Tim Kosse for the report.
2227
2228 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2229
2230         * include/wincon.h (AttachConsole): Correct guard.
2231
2232         Thanks to Alexander Shaduri for the report.
2233
2234 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2235
2236         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2237         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2238
2239 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2240
2241         * include/winerror.h: Fix typos in macro names.
2242
2243 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2244
2245         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2246         definition.
2247
2248 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2249
2250         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2251
2252 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2253
2254         Honor DESTDIR for winsup/mingw and winsup/w32api.
2255         Detect and report error if installation paths are win32
2256         format, but DESTDIR is non-empty.
2257
2258         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2259         when invoking make in subdirs.
2260         * lib/Makefile.in (DESTDIR): Honor per convention.
2261         (need-DESTDIR-compatibility): New macro; define it and a
2262         corresponding rule.
2263         (fail-DESTDIR-compatibility): New dependency goal.
2264         (install-libraries, install-headers, uninstall-libraries,
2265         uninstall-headers): Require need-DESTDIR-compatibility.
2266         * lib/ddk/Makefile.in: Ditto.
2267         * lib/directx/Makefile.in: Ditto.
2268
2269 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2270
2271         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2272         _WIN32_WINNT >= 0x0500.
2273         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2274         WRITE_RESTRICTED): Define.
2275         (IsTokenRestricted): Declare for >= Win 2000.
2276
2277 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2278
2279         * include/wtsapi32.h (WTSQuerySessionInformationA,
2280         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2281         Moved to (_WIN32_WINNT >= 0x0500) guard.
2282         (thanks to Pierre Ossman)
2283
2284 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2285
2286         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2287         IS_SURROGATE_PAIR): Define.
2288
2289 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2290
2291         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2292         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2293         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2294         * include/ddk/ntifs.h: Ditto.
2295         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2296
2297 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2298
2299         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2300         from here...
2301         * lib/gdo32.dll: ...to here.
2302
2303 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2304
2305         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2306         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2307         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2308         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2309         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2310         entry points.
2311
2312 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2313
2314         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2315         WTSEnumerateSessionsA): Add function prototypes.
2316         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2317         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2318         defines dependent on UNICODE setting.
2319
2320 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2321
2322         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2323         and vice versa.
2324         * include/ddk/ntifs.h: Ditto.
2325         * include/ddk/winddk.h: Ditto.
2326         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2327         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2328         in header, but missing in lib.  Omit NT4-only entry points.
2329
2330 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2331
2332         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2333         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2334         * lib/shell32.def (SHGetImageList): Define.
2335
2336 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2337
2338         * winnt.h: Add Vista token security extensions.
2339         (SID_HASH_SIZE): Define.
2340         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2341         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2342         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2343         (SID_HASH_ENTRY): Define.
2344         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2345         (struct _TOKEN_LINKED_TOKEN): Define.
2346         (struct _TOKEN_MANDATORY_LABEL): Define.
2347         (struct _TOKEN_MANDATORY_POLICY): Define.
2348         (struct _TOKEN_ELEVATION): Define.
2349         (struct _TOKEN_ACCESS_INFORMATION): Define.
2350         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2351         information enumeration values.
2352
2353 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2354
2355         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2356         from ddk/ntifs.h.
2357
2358 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2359
2360         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2361
2362 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2363
2364         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2365
2366 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2367
2368         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2369         NtSetEaFile.
2370
2371 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2372
2373         * include/winbase.h (SCS_64BIT_BINARY): Define.
2374
2375 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2376
2377         * include/w32api.h: Increment version to 3.13.
2378         * Makefile.in: Ditto.
2379
2380 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2381
2382         * lib/glut.def: remove.
2383         * lib/glut32.def: ditto.
2384
2385 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2386
2387         * include/winbase.h (PROCESS_DEP_ENABLE,
2388         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2389         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2390         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2391
2392 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2393
2394         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2395
2396 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2397
2398         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2399
2400 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2401
2402         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2403
2404 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2405
2406         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2407         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2408         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2409         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2410         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2411         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2412         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2413         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2414         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2415         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2416         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2417         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2418         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2419         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2420         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2421         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2422         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2423         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2424         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2425         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2426         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2427         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2428         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2429         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2430         (capSendMessage): Don't undef.
2431
2432 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2433
2434         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2435         undefined.
2436
2437 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2438
2439         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2440         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2441         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2442         SUBLANG_ROMANIAN_MOLDOVA): Define.
2443
2444 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2445
2446         * include/shlwapi.h (ASSOCSTR): Update enum.
2447
2448 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2449
2450         * include/w32api.h: Increment version to 3.12.
2451         * Makefile.in: Ditto.
2452
2453 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2454
2455         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2456
2457 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2458
2459         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2460
2461 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2462
2463         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2464         Thanks to Richard Hughes for report.
2465
2466 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2467
2468         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2469         naming standard for Cygwin.
2470
2471 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2472
2473         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2474
2475 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2476
2477         * include/ddk/scsi.h: Define READ_TOC formats.
2478         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2479
2480 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2481
2482         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2483         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2484         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2485         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2486         NdisMCancelTimer): Define.
2487         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2488         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2489         eliminate warnings.
2490         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2491         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2492         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2493         Export.
2494
2495 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2496
2497         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2498         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2499
2500 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2501
2502         * include/ddk/winddk.h (KeRaiseIrql): Define.
2503         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2504
2505 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2506
2507         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2508         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2509         (InterlockedIncrement, InterlockedDecrement): fix warning.
2510         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2511         (KeNumberProcessors): Export.
2512
2513 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2514
2515         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2516         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2517         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2518         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2519         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2520
2521 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2522
2523         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2524
2525         Thanks to Tim Kosse <botg at users dot sf dot net>.
2526
2527 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2528
2529         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2530         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2531         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2532         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2533         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2534         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2535         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2536
2537 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2538
2539         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2540         WTSQuerySessionInformation, WTSFreeMemory): Define.
2541
2542 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2543
2544         * lib/gdi32.def (SetLayout): Export.
2545
2546 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2547
2548         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2549         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2550         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2551         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2552         CertSetCertificateContextProperty, CertCompareCertificateName,
2553         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2554         CryptGetDefaultProviderW and many corresponding macroes): Define.
2555         * lib/crypt32.def (Export the above 11 functions): Export.
2556         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2557         macroes): Define.
2558
2559
2560 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2561
2562         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2563         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2564
2565 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2566
2567         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2568
2569 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2570
2571         * include/lmaccess.h (struct _USER_INFO_4): Define.
2572         (struct _USER_INFO_23): Define.
2573         (struct _GROUP_INFO_3): Define.
2574
2575 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2576
2577         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2578         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2579         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2580         MIB_TCP6TABLE_OWNER_PID): Define.
2581         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2582
2583 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2584
2585         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2586         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2587         of 0x0502.
2588         Bug reported by Thomas Denk.
2589
2590 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2591
2592         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2593         InterlockedCompareExchange, InterlockedExchange,
2594         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2595         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2596         Bug reported by Erik Blake.
2597
2598 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2599
2600         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2601         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2602         Bug reported by Brian Hawley.
2603
2604 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2605
2606         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2607         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2608         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2609         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2610         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2611         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2612         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2613         (DsGetDcNameW, DsGetDcNameA): Declare.
2614         (DsGetDcName): Define.
2615         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2616
2617 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2618
2619         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2620
2621         Thanks to Tim Kosse <botg at users dot sf dot net>.
2622
2623 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2624
2625         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2626
2627         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2628
2629 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2630
2631         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2632         (FILE_SUPPORTS_TRANSACTIONS): Define.
2633
2634 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2635
2636         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2637         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2638
2639 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2640
2641         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2642         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2643         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2644         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2645         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2646         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2647         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2648         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2649         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2650         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2651         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2652         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2653         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2654         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2655         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2656         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2657         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2658         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2659         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2660         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2661         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2662         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2663         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2664         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2665         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2666         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2667         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2668         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2669         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2670         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2671         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2672         capDriverConnect, capDriverDisconnect, capDriverGetName,
2673         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2674         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2675         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2676         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2677         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2678         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2679         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2680         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2681         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2682         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2683         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2684         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2685         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2686         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2687         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2688
2689 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2690
2691         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2692         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2693         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2694         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2695         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2696         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2697         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2698         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2699         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2700         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2701         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2702         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2703         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2704         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2705         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2706         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2707         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2708         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2709         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2710         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2711         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2712         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2713         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2714         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2715         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2716         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2717         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2718         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2719         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2720         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2721         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2722         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2723         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2724         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2725         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2726         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2727         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2728         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2729         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2730         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2731         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2732         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2733         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2734         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2735         *SpUserModeInitializeFn): Define.
2736         * include/sspi.h (SECURITY_STRING): Define.
2737
2738 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2739
2740         * include/specstrings.h: Add more dummy defines.
2741
2742 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2743
2744         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2745         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2746         (SECURITY_MANDATORY_LOW_RID): Define.
2747         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2748         (SECURITY_MANDATORY_HIGH_RID): Define.
2749         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2750         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2751         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2752         (SE_GROUP_INTEGRITY): Define.
2753         (SE_GROUP_INTEGRITY_ENABLED): Define.
2754
2755 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2756
2757         * include/sddl.h (ConvertStringSidToSidA): Declare.
2758         (ConvertStringSidToSidW): Declare.
2759         (ConvertStringSidToSid): Define.
2760
2761 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2762
2763         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2764         and MPR_INTERFACE_3 structure since they are available only in Windows
2765         Server 2008
2766
2767         Thanks to crackedmind  <crackedmind at sf dot net>.
2768
2769 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2770
2771         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2772         definitions.
2773         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2774
2775 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2776
2777         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2778
2779 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2780
2781         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2782         * include/windef.h (IN, OUT, OPTIONAL): Define.
2783
2784 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2785
2786         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2787         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2788         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2789         __out_bcount_opt): Move to specstrings.h.
2790
2791 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2792
2793         * lib/bthprops.def: new file, bluetooth imports.
2794
2795 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2796
2797         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2798         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2799         __out_bcount_opt): Defined additional pseudo-modifiers.
2800
2801 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2802         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2803         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2804         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2805         dwRedialPause.
2806
2807 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2808
2809         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2810         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2811         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2812         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2813         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2814         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2815         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2816         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2817         * include/winuser.h (RegisterPowerSettingNotification,
2818         UnregisterPowerSettingNotification): Add prototypes.
2819         * lib/user32.def: Added imports for the above prototypes.
2820         * lib/Makefile.in: Added build support for power-uuid.c.
2821         * lib/power-uuid.c: New file containing power GUID definitions.
2822
2823 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2824
2825         * include/ras.h (RAS_MaxDnsSuffix): define.
2826
2827 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2828
2829         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2830         Add prototypes.
2831         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2832         Add exports.
2833
2834 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2835
2836         * include/w32api.h: Increment version to 3.11.
2837         * Makefile.in: Ditto.
2838
2839 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2840
2841         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2842         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2843
2844 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2845
2846         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2847
2848 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2849
2850         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2851         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2852
2853 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2854
2855         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2856
2857 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2858
2859         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2860         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2861         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2862         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2863         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2864         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2865         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2866         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2867         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2868         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2869         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2870         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2871         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2872         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2873         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2874         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2875         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2876         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2877         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2878         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2879         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2880         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2881         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2882         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2883         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2884         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2885         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2886         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2887         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2888         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2889         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2890         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2891         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2892         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2893         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2894         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2895         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2896         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2897         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2898         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2899         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2900         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2901         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2902         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2903         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2904         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2905         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2906         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2907         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2908         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2909         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2910         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2911         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2912         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2913         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2914         CryptEncodeObjectEx): define.
2915
2916 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2917
2918         * include/winbase.h (CheckTokenMembership): define.
2919
2920 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2921
2922         * include/rpcndr.h: Missing NdrClientCall2 entry.
2923         * lib/rpcrt4.def: Ditto.
2924
2925 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2926         * lib/scnsave.c: Multi-monitor support.
2927
2928 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2929
2930         * include/w32api.h: Increment version to 3.10.
2931         * Makefile.in: Ditto.
2932
2933 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2934
2935         * include/winbase.h (ReOpenFile): Add prototype.
2936         * lib/kernel32.def (ReOpenFile@16): Add export.
2937
2938 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2939
2940         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2941
2942 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2943
2944         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2945         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2946
2947 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2948
2949         * include/wtypes.h (LPDECIMAL): Define.
2950         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2951
2952 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2953
2954         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2955
2956 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2957
2958         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2959         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2960
2961 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2962
2963         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2964         Define.
2965
2966 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2967
2968         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2969         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2970         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2971         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2972         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2973         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2974         Sync with include/pbt.h.
2975
2976 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2977
2978         [mingw-Bugs-1751518]
2979         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2980         get_URL.
2981
2982         [mingw-Bugs-1751565]
2983         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2984
2985         [mingw-Bugs-1751595]
2986         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2987         methods.
2988
2989         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2990
2991 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2992
2993         [mingw-Bugs-1750898]
2994         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2995         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2996
2997 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2998
2999         [mingw-Bugs-1749305]
3000         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
3001
3002 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
3003
3004         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
3005
3006 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
3007
3008         * include/oaidl.h: Include windows.h and ole2.h,
3009         unless COM_NO_WINDOWS_H.
3010
3011         [mingw-Bugs-1742130]
3012         * include/oaidl.h (struct tagVARIANT): Add union members
3013         LONGLONG  * pllVal and ULONGLONG * pullVal.
3014
3015 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
3016
3017         * include/ws2tcpip.h (s6_addr32): Correct definition.
3018         Thanks to Alfred E. Heggestad <aeh at db dot org>
3019
3020 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3021
3022         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
3023
3024         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
3025         supplying the information.
3026
3027 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3028
3029         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
3030
3031 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3032
3033         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
3034         Vista.
3035
3036 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
3037
3038          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
3039         CRYPTPROTECT_LOCAL_MACHINE): Define.
3040
3041 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
3042
3043         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
3044         Define.
3045
3046 2007-03-30  Brian Dessent  <brian@dessent.net>
3047
3048         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
3049
3050 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3051
3052         * include/w32api.h: Increment version to 3.9.
3053         * Makefile.in: Ditto.
3054
3055 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
3056
3057         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
3058
3059 2007-03-23  Matthew Gregan  <kinetik@flim.org>
3060
3061         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
3062
3063 2007-03-06  Brandon Sneed  <brandon@oqo.com>
3064
3065         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
3066         Added SetupConfigureWmiFromInfSectionW
3067         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
3068
3069         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
3070
3071         * include/winuser.h: Added PBT_APMQUERYSUSPEND
3072         Added PBT_APMQUERYSTANDBY
3073         Added PBT_APMQUERYSUSPENDFAILED
3074         Added PBT_APMQUERYSTANDBYFAILED
3075         Added PBT_APMSUSPEND
3076         Added PBT_APMSTANDBY
3077         Added PBT_APMRESUMECRITICAL
3078         Added PBT_APMRESUMESUSPEND
3079         Added PBT_APMRESUMESTANDBY
3080         Added PBT_APMBATTERYLOW
3081         Added PBT_APMPOWERSTATUSCHANGE
3082         Added PBT_APMOEMEVENT
3083         Added PBT_APMRESUMEAUTOMATIC
3084
3085         * include/wtsapi32.h: New file
3086
3087         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
3088
3089 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
3090
3091         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
3092         argument to constant.
3093
3094 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
3095
3096         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
3097         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
3098         Add prototypes.
3099         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
3100
3101 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
3102
3103         * lib/user32.def (InternalGetWindowText): Add stub.
3104
3105 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
3106
3107         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
3108         LANG_BOSNIAN_NEUTRAL): Define.
3109
3110 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
3111
3112         * include/winuser.h: Add guards around TITLEBARINFO and
3113         GetTitleBarInfo().
3114
3115 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
3116
3117         * include/winbase.h (struct _OVERLAPPED): Change type of
3118         Internal, InternalHigh members to ULONG_PTR.
3119         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
3120         (CreateIoCompletionPort): Likewise.
3121         (PostQueuedCompletionStatus): Likewise.
3122         (QueueUserAPC): Likewise.
3123
3124 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
3125
3126         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
3127         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
3128         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
3129         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
3130         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
3131         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
3132         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
3133         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
3134         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
3135         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
3136
3137 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
3138
3139         * Makefile.in: Add aclocal.m4 to source release.
3140
3141 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3142
3143         * include/w32api.h: Increment version to 3.8.
3144         * Makefile.in: Ditto.
3145
3146 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
3147
3148         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
3149         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
3150
3151         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
3152
3153 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
3154
3155         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
3156
3157         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
3158         inline static.
3159         (GetFiberData): Likewise.
3160         * lib/kernel32.c: Remove.
3161         * lib/Makefile.in: Remove reference to kernel32.[co].
3162
3163 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3164
3165         * include/winnt.h (SE_RELABEL_NAME): Define.
3166         (SE_INCREASE_WORKING_SET_NAME): Define.
3167         (SE_TIME_ZONE_NAME): Define.
3168         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3169
3170 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3171
3172         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3173         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3174         SymbolicLinkReparseBuffer substructure.
3175
3176 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3177
3178         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3179
3180 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3181
3182         * lib/Makefile.in: Fix order for 'all' rule.
3183
3184 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3185
3186         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3187
3188 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3189
3190         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3191         mappings.
3192         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3193         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3194
3195 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3196
3197         * include/rpc.h: Add whitespace.
3198         * include/winnt.h (C_ASSERT): Define.
3199
3200 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3201
3202         [mingw-Bugs-1568067]
3203         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3204         * include/wingdi.h: (DM_POSITION): Define.
3205
3206 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3207
3208         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3209         * lib/user32.def: Likewise.
3210
3211 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3212
3213         * lib/Makefile.in: fix typo.
3214         * lib/ddk/Makefile.in: fix typo.
3215         * lib/directx/Makefile.in: fix typo.
3216
3217         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3218         for pointing it out.
3219
3220 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3221
3222         * Makefile.in: Remove files from lib directory with distclean target
3223
3224 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3225
3226         * include/winuser.h (CS_DROPSHADOW): Define.
3227
3228 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3229
3230         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3231         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3232         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3233         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3234
3235         Increase each constant by 1.
3236
3237 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3238
3239         [mingw-Bugs-1553275]
3240         * include/wingdi.h (SetLayout): Add prototype.
3241         (GetLayout): Likewise.
3242
3243 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3244
3245         [mingw-Bugs-1550139]
3246         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3247         Tanks to:  Samit Basu <samitbasu at sf dot net>
3248         (GetRecordInfoFromGuids): Add prototype.
3249
3250 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3251
3252         * include/winbase.h: Add comment about 'missing' SEM flag.
3253
3254 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3255
3256         * configure.in: Substitute with_cross_host in depending files.
3257         * configure: Regenerate.
3258         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3259         Set installation directories accordingly.
3260         * lib/ddk/Makefile.in: Ditto.
3261         * lib/directx/Makefile.in: Ditto.
3262
3263 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3264
3265         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3266         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3267         Bug reported by: <macleone at users dot sf dot net>
3268
3269 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3270
3271         Update some more IMAGE relocation type indicators
3272         to PECOFF v8 (May, 2006) specs.
3273
3274         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3275         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3276         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3277         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3278         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3279         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3280         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3281         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3282         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3283         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3284         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3285         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3286         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3287         IMAGE_REL_SHM_NOMODE): Add defines.
3288
3289         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3290         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3291         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3292         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3293         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3294         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3295         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3296         IMAGE_REL_M32R_TOKEN): Add defines.
3297
3298         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3299
3300 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3301
3302         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3303         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3304         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3305         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3306         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3307         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3308         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3309         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3310         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3311         Add defines.
3312
3313         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3314         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3315         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3316         Add defines.
3317
3318         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3319
3320         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3321         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3322         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3323         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3324         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3325         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3326
3327         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3328
3329         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3330         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3331         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3332         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3333         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3334         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3335         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3336         Add defines.
3337
3338         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3339         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3340         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3341         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3342         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3343         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3344         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3345         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3346         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3347         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3348         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3349         IMAGE_REL_IA64_ADDEND): Add defines.
3350
3351         (IMAGE_SCN_GPREL): Add define.
3352
3353 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3354
3355         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3356         * include/basetyps.h:  Likewise.
3357         (_COM_interface): New define.
3358         (interface): Define to _COM_interface, conditional on !__OBJC__.
3359         Replace 'interface' with '_COM_interface', throughout.
3360         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3361         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3362         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3363         * include/mshtml.h: Likewise.
3364         * include/oaidl.h: Likewise.
3365         * include/objfwd.h: Likewise.
3366         * include/objidl.h: Likewise.
3367         * include/ocidl.h: Likwise.
3368         * include/olectl.h: Likewise.
3369         * include/oleidl.h: Likewise.
3370         * include/shlobj.h: Likewise.
3371         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3372         * include/vfw.h: Likewise.
3373         * include/windows.h. Likewise. Add comment.
3374         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3375         throughout.
3376
3377         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3378         Add test for conflict with '@interface'
3379
3380 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3381
3382         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3383         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3384         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3385         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3386         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3387         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3388         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3389         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3390         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3391         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3392         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3393         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3394         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3395         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3396         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3397         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3398         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3399         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3400         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3401         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3402         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3403         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3404         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3405         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3406         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3407         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3408         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3409         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3410         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3411         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3412         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3413         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3414         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3415         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3416         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3417         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3418         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3419         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3420         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3421         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3422         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3423         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3424         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3425         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3426         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3427         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3428         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3429         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3430         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3431         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3432         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3433         CertDeleteCertificateFromStore): Define.
3434         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3435         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3436         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3437         CertAddCertificateContextToStore, CertCompareCertificate,
3438         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3439         Define.
3440
3441 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3442
3443         * lib/uuid.c: Remove.
3444
3445 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3446
3447         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3448         declarations. They were extracted from the registry with a script.
3449         * lib/devguid.c: Add new file with the implementation of the
3450         missing GUIDs.
3451         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3452
3453 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3454
3455         * include/winuser.h (WM_INPUT): Add missing Raw Input
3456         notification define.
3457         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3458         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3459
3460 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3461
3462         [mingw-Bugs-1525021]
3463         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3464         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3465         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3466         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3467         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3468         (IP_ADAPTER_ADDRESSES): Likewise.
3469
3470 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3471
3472         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3473         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3474         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3475         extras-uuid.c.
3476         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3477         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3478         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3479         * lib/hlguids-uuid.c: State source of CLSIDs.
3480
3481 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3482
3483         * lib/Makefile.in: Added extras-uuid as an object and source.
3484         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3485         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3486         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3487         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3488         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3489         * lib/extras-uuid.c: New file.
3490         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3491         net).
3492
3493 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3494
3495         [mingw-Bugs-1424461]
3496         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3497         throughout.
3498         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3499         _NO_W32_PSEUDO_MODIFIERS.
3500         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3501         throughout.
3502         *include/rpcnsip.h: Likewise.
3503         *include/windef.h: Don't define IN, OUT or OPTIONAL
3504         if _NO_W32_PSEUDO_MODIFIERS.
3505         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3506         throughout.
3507         *include/ddk/cfgmgr32.h: Likewise.
3508         *include/ddk/ddkmapi.h: Likewise.
3509         *include/ddk/hidclass.h: Likewise.
3510         *include/ddk/hidpi.h: Likewise.
3511         *include/ddk/kbdmou.h: Likewise.
3512         *include/ddk/mcd.h: Likewise.
3513         *include/ddk/miniport.h: Likewise.
3514         *include/ddk/minitape.h: Likewise.
3515         *include/ddk/ndis.h: Likewise.
3516         *include/ddk/ndistapi.h: Likewise.
3517         *include/ddk/ndiswan.h: Likewise.
3518         *include/ddk/ntapi.h: Likewise.
3519         *include/ddk/ntdd8042.h: Likewise.
3520         *include/ddk/ntddpcm.h: Likewise.
3521         *include/ddk/ntifs.h: Likewise.
3522         *include/ddk/ntpoapi.h: Likewise.
3523         *include/ddk/parallel.h: Likewise.
3524         *include/ddk/pfhook.h: Likewise.
3525         *include/ddk/scsiwmi.h: Likewise.
3526         *include/ddk/smbus.h: Likewise.
3527         *include/ddk/srb.h: Likewise.
3528         *include/ddk/storport.h: Likewise.
3529         *include/ddk/tdikrnl.h: Likewise.
3530         *include/ddk/upssvc.h: Likewise.
3531         *include/ddk/usbcamdi.h: Likewise.
3532         *include/ddk/usbscan.h: Likewise.
3533         *include/ddk/video.h: Likewise.
3534         *include/ddk/videoagp.h: Likewise.
3535         *include/ddk/win2k.h: Likewise.
3536         *include/ddk/winddi.h: Likewise.
3537         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3538         if _NO_W32_PSEUDO_MODIFIERS.
3539         Comment out IN, OUT and OPTIONAL, throughout.
3540         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3541         throughout.
3542         *include/ddk/ws2san.h: Likewise.
3543
3544 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3545
3546         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3547
3548 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3549
3550         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3551         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3552         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3553         * lib/hlguids-uuid.c: New file.
3554         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3555         net).
3556
3557 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3558
3559         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3560         objects.
3561         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3562         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3563         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3564         IID_IHlinkTarget): Remove.  Moved to new files.
3565         * lib/urlmon-uuid.c: New file.
3566         * lib/hlink-uuid.c: New file.
3567
3568 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3569
3570         * lib/Makefile.in: Added ativscp-uuid as source and object.
3571         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3572         IID_IActiveScriptParse, IID_IActiveScriptSite,
3573         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3574         * lib/ativscp-uuid.c: New file.
3575
3576 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3577
3578         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3579         Remove.  Moved to objidl-uuid.c
3580         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3581         IID_IServerSecurity): Defined.
3582
3583 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3584
3585         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3586         objects.
3587         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3588         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3589         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3590         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3591         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3592         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3593         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3594         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3595         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3596         files.
3597         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3598         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3599         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3600         * lib/cguid-uuid.c: New file.
3601         * lib/olectlid-uuid.c: New file.
3602
3603 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3604
3605         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3606         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3607         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3608         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3609         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3610         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3611         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3612         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3613         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3614         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3615         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3616         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3617         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3618         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3619         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3620         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3621         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3622         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3623         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3624         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3625         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3626         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3627         * lib/comcat-uuid.c: New file.
3628         * lib/docobj-uuid.c: New File.
3629         * lib/exdisp-uuid.c: New file.
3630         * lib/mlang-uuid.c: New file.
3631         * lib/oaidl-uuid.c: New file.
3632         * lib/objidl-uuid.c: New file.
3633         * lib/objsafe-uuid.c: New file.
3634
3635 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3636
3637         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3638         objects.
3639         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3640         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3641         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3642         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3643         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3644         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3645         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3646         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3647         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3648         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3649         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3650         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3651         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3652         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3653         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3654         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3655         * lib/oleidl-uuid.c: New file.
3656         * lib/oleacc-uuid.c: New file.
3657         * lib/ocidl-uuid.c: New file.
3658
3659 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3660
3661         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3662         objects.
3663         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3664         Remove.  Moved to unknwn-uuid and servprov-uuid.
3665         * lib/unknwn-uuid.c: New file.
3666         * lib/servprov-uuid.c: New file.
3667
3668 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3669
3670         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3671         enum.
3672
3673 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3674
3675         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3676
3677 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3678
3679         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3680         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3681         wingdi.h defines.
3682
3683 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3684
3685         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3686         duplicate defines.
3687
3688         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3689         removal.
3690         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3691
3692 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3693
3694         * configure.in: Update to newer autoconf.
3695         (thanks to Steve Ellcey)
3696         * configure: Regenerate.
3697         * aclocal.m4: New file.
3698
3699 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3700
3701         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3702
3703 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3704
3705         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3706         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3707         as macros.
3708         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3709
3710 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3711
3712         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3713         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3714         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3715         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3716         (MprAdminMIBSetTrapInfo): Declare functions.
3717         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3718         (MIB_SERVER_HANDLE): New typedef.
3719         (MprConfigTransportSetInfo): Declare function.
3720         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3721         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3722
3723 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3724
3725         * lib/rtutils.def: New file. Generated on Windows XP.
3726         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3727         * include/rtutils.h: New file.
3728         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3729         Commented out, they're missing from rtutils.def.
3730
3731 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3732
3733         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3734         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3735         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3736         (MprInfoRemoveAll): Declare functions.
3737
3738 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3739
3740         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3741         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3742         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3743         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3744         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3745         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3746         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3747         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3748         (MprConfigServerConnect,MprConfigServerDisconnect)
3749         (MprConfigServerGetInfo,MprConfigServerInstall)
3750         (MprConfigServerRestore,MprConfigTransportCreate)
3751         (MprConfigTransportDelete,MprConfigTransportEnum)
3752         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3753         (MprConfigTransportSetInfo): Declare functions.
3754
3755 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3756
3757         * include/mprapi.h (MprAdminBufferFree)
3758         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3759         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3760         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3761         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3762         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3763         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3764         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3765         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3766         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3767         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3768         (MprAdminInterfaceTransportSetInfo)
3769         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3770         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3771         (MprAdminServerConnect,MprAdminServerDisconnect)
3772         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3773         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3774         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3775
3776 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3777
3778         * include/ipxtfflt.h: New file.
3779
3780 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3781
3782         * include/mprapi.h: Fix header guard. Cleanup.
3783         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3784         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3785         (MprAdminConnectionHangupNotification)
3786         (MprAdminConnectionHangupNotification2)
3787         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3788         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3789         (MprAdminReleaseIpAddress): Declare functions.
3790         * lib/mprapi.def: Regenerate on Windows XP.
3791
3792 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3793
3794         * include/ipifcons.h: Cleanup.
3795         * include/ipxconst.h: Fix header guard.
3796         * include/ipxrtdef.h: include <ipxconst.h>.
3797
3798 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3799
3800         * include/ipxrtdef.h: Cleanup.
3801         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3802         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3803         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3804         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3805         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3806         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3807         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3808         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3809         * include/routprot.h: Cleanup.
3810         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3811         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3812         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3813         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3814         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3815         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3816         * include/fltdefs.h: New file.
3817         * include/ipinfoid.h: New file.
3818
3819 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3820
3821         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3822         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3823         (IAMCertifiedOutputProtection): Add interfaces.
3824         * include/adsprop.h: New file.
3825         * include/cmnquery.h: New file.
3826         * include/dsadmin.h: New file.
3827         * include/dsclient.h: New file.
3828         * include/dsgetdc.h: New file.
3829         * include/dsquery.h: New file.
3830         * include/dsrole.h: New file.
3831         * include/ntdsapi.h: New file.
3832         * include/ntdsbcli.h: New file.
3833         * include/objsel.h: New file.
3834
3835 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3836
3837         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3838         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3839         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3840         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3841         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3842         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3843         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3844         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3845
3846 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3847
3848         * include/qedit.h: New file.
3849         * include/errors.h: Cleanup.
3850
3851 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3852
3853         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3854         avoid dependency on <string.h>.
3855         There's no Win32 equivalent for memcmp:
3856         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3857
3858 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3859
3860         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3861         instead of memset to avoid dependency on <string.h>.
3862         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3863         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3864         (AM_WST_STYLE): Add enums.
3865         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3866         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3867         structures.
3868         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3869         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3870         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3871         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3872         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3873         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3874         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3875         (VFW_E_DVD_NO_RESUME_INFORMATION)
3876         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3877         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3878         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3879         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3880         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3881         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3882         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3883         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3884         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3885         * include/strmif.h: ... to here. New file.
3886         * include/aviriff.h: New file.
3887         * include/bdatypes.h: New file.
3888         * include/control.h: New file.
3889         * include/dvdmedia.h: New file.
3890         * include/il21dec.h: New file.
3891         * include/ks.h: New file.
3892         * include/ksmedia.h: New file.
3893         * include/mmreg.h: New file.
3894         * include/mpegtype.h: New file.
3895         * include/vidcap.h: New file.
3896         * include/vmr9.h: New file.
3897         * include/vptype.h: New file.
3898         * include/xprtdefs.h: New file.
3899
3900 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3901
3902         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3903         Documented as defined on Windows 2000 or later.
3904         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3905         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3906         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3907         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3908         but values unknown, Windows Vista or later.
3909         (CAL_UMALQURA): Cleanup.
3910         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3911         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3912         (CAL_SSHORTESTDAYNAME7): Cleanup.
3913         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3914         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3915
3916 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3917
3918         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3919         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3920         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3921         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3922         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3923         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3924         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3925         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3926         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3927         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3928         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3929         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3930         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3931         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3932         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3933         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3934         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3935         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3936         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3937         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3938         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3939         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3940         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3941         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3942         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3943         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3944         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3945         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3946         (DMDFO_CENTER): Define.
3947         (GetDCBrushColor,GetDCPenColor): Declare.
3948         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3949
3950 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3951
3952         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3953         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3954         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3955         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3956         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3957         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3958         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3959         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3960         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3961         (LANG_DARI,LANG_MALAGASY)
3962         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3963         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3964         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3965         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3966         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3967         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3968         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3969         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3970         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3971         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3972         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3973         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3974         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3975         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3976         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3977         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3978         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3979         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3980         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3981         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3982         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3983         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3984         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3985         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3986         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3987         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3988         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3989         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3990         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3991         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3992         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3993         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3994         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3995         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3996         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3997         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3998         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3999         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
4000         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
4001         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
4002         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
4003         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
4004         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
4005         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
4006         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
4007         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
4008         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4009         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
4010         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
4011         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
4012         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
4013         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
4014         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
4015         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
4016         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
4017         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
4018         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
4019         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
4020         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
4021         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
4022         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
4023         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
4024         (SUBLANG_MARATHI_INDIA): Defined twice by error.
4025
4026 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4027
4028         * lib/directx/Makefile.in: Remove reference to libquartz.a since
4029         it was moved.
4030
4031 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
4032
4033         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
4034         SPI_SETSCREENSAVERUNNING.
4035         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
4036
4037 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4038
4039         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
4040         It had been removed because it's no documented, but Cygwin needs it.
4041
4042 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4043
4044         * include/amvideo.h (IFullScreenVideo): Define.
4045         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
4046         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
4047
4048 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4049
4050         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
4051         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
4052         as available on Windows 98 and better.
4053         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4054         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4055         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
4056
4057 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4058
4059         * include/amvideo.h: New file.
4060         * include/dshow.h: Include <amvideo.h>.
4061
4062 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4063
4064         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
4065         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
4066         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
4067         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
4068         (HWND_BROADCAST): Cleanup.
4069         (HWND_MESSAGE): Windows 2000 only.
4070         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
4071         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
4072         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
4073         (SIF_ALL): Cleanup.
4074         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
4075         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
4076         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
4077         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
4078         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
4079         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
4080         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
4081         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
4082         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
4083         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
4084         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
4085         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4086         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4087         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4088         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4089         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4090         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4091         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
4092         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
4093         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
4094         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
4095         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
4096         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
4097         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
4098         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
4099         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
4100         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
4101         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
4102         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
4103         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
4104         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
4105         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
4106         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
4107         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
4108         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
4109         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
4110         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
4111         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
4112         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
4113         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
4114         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
4115         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
4116         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
4117         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
4118         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
4119         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
4120         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
4121         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
4122         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
4123         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
4124         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
4125         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
4126         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
4127         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
4128         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
4129         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
4130         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
4131         (SPI_SCREENSAVERRUNNING): Removed.
4132         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
4133         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
4134         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
4135         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
4136
4137 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4138
4139         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
4140         (MprAdminGetPDCServer): Add prototype.
4141         (MprAdminSendUserMessage): Add prototype.
4142         (MprAdminUserGetInfo): Add prototype.
4143         (MprAdminUserSetInfo): Add prototype.
4144         * lib/mprapi.def: Add stubs for above functions.
4145
4146 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4147
4148         * lib/directx/quartz.def: Move from here...
4149         * lib/quartz.def: ... to here.
4150
4151 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4152
4153         * include/amaudio.h: New file.
4154         * include/dshow.h: Include <amaudio.h>.
4155
4156 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4157
4158         * include/errors.h: New file.
4159         * include/dshow.h: Include <errors.h>.
4160
4161 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4162
4163         * include/dshow.h: New file.
4164         * include/evcode.h: New file.
4165         * include/audevcod.h: New file.
4166         * include/dvdevcod.h: New file.
4167
4168 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4169
4170         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4171         (MprAdminConnectionClearStats): Add prototype.
4172         (MprAdminConnectionEnum): Add  prototype.
4173         (MprAdminConnectionGetInfo): Add prototype.
4174         (MprAdminConnectionRemoveQuarantine): Add prototype.
4175         (MprAdminPortClearStats): Add prototype.
4176         (MprAdminPortDisconnect): Add prototype.
4177         (MprAdminPortEnum): Add prototype.
4178         (MprAdminPortGetInfo): Add prototype.
4179         (MprAdminPortReset): Add prototype.
4180         * lib/mprapi.def: New file.
4181
4182 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4183
4184         *  include/mprapi.h: #include <lmcons.h>
4185         (MAX_DEVICETYPE_NAME): Add define.
4186         (MAX_PHONE_NUMBER_LEN): Add define.
4187         (ATADDRESSLEN): Add define.
4188         (IPADDRESSLEN): Add define.
4189         (IPXADDRESSLEN): Add define.
4190         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4191         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4192         (RAS_FLAGS_PPP_CONNECTION): Add define.
4193         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4194         (RAS_FLAGS_RAS_CONNECTION): Add define.
4195         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4196         (RASCCPCA_STAC): Add define.
4197         (RASCCPCA_MPPC): Add define.
4198         (PPP_CCP_COMPRESSION): Add define.
4199         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4200         (PPP_CCP_ENCRYPTION40BIT): Add define.
4201         (PPP_CCP_ENCRYPTION128BIT): Add define.
4202         (PPP_CCP_ENCRYPTION56BIT): Add define.
4203         (PPP_CCP_HISTORYLESS): Add define.
4204         (RASPRIV_NoCallback): Add define.
4205         (RASPRIV_AdminSetCallback): Add define.
4206         (RASPRIV_CallerSetCallback): Add define.
4207         (RASPRIV_DialinPrivilege): Add define.
4208         (RASPRIV_CallbackType): Add define.
4209         (RASPRIV2_DialinPolicy): Add define.
4210         (PPP_LCP_PAP): Add define.
4211         (PPP_LCP_SPAP): Add define.
4212         (PPP_LCP_CHAP): Add define.
4213         (PPP_LCP_EAP): Add define.
4214         (PPP_LCP_CHAP_MD5): Add define.
4215         (PPP_LCP_CHAP_MS): Add define.
4216         (PPP_LCP_CHAP_MSV2): Add define.
4217         (PPP_LCP_MULTILINK_FRAMING): Add define.
4218         (enum _RAS_HARDWARE_CONDITION): Add.
4219         (enum _RAS_PORT_CONDITION): Add.
4220         (struct _PPP_ATCP_INFO): Add.
4221         (struct _PPP_ATCP_INFO): Add.
4222         (struct _PPP_IPCP_INFO): Add.
4223         (struct _PPP_IPCP_INFO2): Add.
4224         (struct _PPP_IPXCP_INFO): Add.
4225         (struct _PPP_LCP_INFO): Add.
4226         (struct _PPP_NBFCP_INFO): Add.
4227         (struct _PPP_INFO): Add.
4228         (struct _PPP_INFO_2): Add.
4229         (struct _RAS_CONNECTION_0): Add.
4230         (struct RAS_CONNECTION_1): Add.
4231         (struct _RAS_CONNECTION_2): Add.
4232         (struct RAS_PORT_0): Add.
4233         (struct _RAS_PORT_1): Add.
4234         (struct _RAS_USER_0): Add.
4235         (struct _RAS_USER_1): Add.
4236
4237 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4238
4239         * include/mprapi.h: New file.
4240         * include/routprot.h: New file.
4241         * include/ipxrtdef.h: New file.
4242         * include/ipxconst.h: New file.
4243         * include/stm.h: New file.
4244
4245 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4246
4247         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4248         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4249
4250 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4251
4252         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4253         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4254         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4255         versions.
4256         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4257
4258 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4259
4260         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4261         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4262
4263 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4264
4265         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4266
4267 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4268
4269         * include/basetyps.h (REFFMTID): Define properly.
4270
4271 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4272
4273         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4274         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4275
4276 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4277
4278         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4279         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4280         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4281         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4282         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4283         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4284         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4285         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4286         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4287         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4288         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4289         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4290         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4291         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4292         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4293         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4294         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4295         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4296         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4297         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4298         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4299         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4300         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4301         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4302         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4303         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4304         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4305         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4306         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4307         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4308         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4309         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4310         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4311         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4312         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4313         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4314         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4315         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4316         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4317         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4318         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4319         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4320         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4321         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4322         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4323         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4324         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4325         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4326         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4327         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4328         (IF_OPER_STATUS_OPERATIONAL): Define.
4329         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4330         Add function declaration.
4331         * include/mgm.h: New file.
4332         * lib/rtm.def: New file.
4333         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4334
4335 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4336
4337         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4338         This function cannot be made thread-safe, the API would have to be
4339         changed for that, just like strerror() -> strerror_r() and similar
4340         ISO C or POSIX functions...
4341
4342 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4343
4344         * include/edevdefs.h: New file.
4345
4346 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4347
4348         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4349         Use as guard for the WAVEFORMATEX structure instead of
4350         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4351         _WAVEFORMATEX_ for compatibility.
4352         Thanks to:    Andrew Jones <guln at sf dot net>
4353
4354 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4355
4356         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4357         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4358         Thanks to:    David Golub <david_golub at sf dot net>
4359
4360 2006-04-18  Eric House  <ehouse@eehouse.org>
4361
4362         PocketPC support.
4363         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4364         functions for using aygshell on PocketPC:
4365         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4366         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4367
4368         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4369         command bar API on PocketPC:
4370         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4371         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4372         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4373         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4374         CommandBar_InsertButton, CommandBar_Destroy.
4375
4376         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4377         fields not present on PocketPC.
4378         (GetCurrentThreadId): Conditionally declare as extern function
4379         without dllimport attribute on PocketPC.
4380         (ResetEvent): Likwise.
4381         (SetEvent): Likewise.
4382
4383         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4384         Conditionally declare as extern function without dllimport
4385          attribute on PocketPC.
4386         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4387         declare as extern function without dllimport attribute on PocketPC.
4388
4389 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4390
4391         * lib/test.c: Include icm.h.
4392
4393 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4394
4395         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4396         (CreateColorSpace): Add UNICODE mappings.
4397         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4398         * include/icm.h: New file.
4399         * lib/mscms.def: New file.
4400         * lib/icmui.def: New file.
4401
4402 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4403
4404         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4405         (IMAGE_FILE_MACHINE_AMD64): New define.
4406         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4407         New defines.
4408         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4409         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4410         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4411         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4412         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4413         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4414         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4415         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4416         New defines.
4417         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4418         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4419         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4420         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4421         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4422         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4423         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4424         definitions and typedefs.
4425         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4426         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4427         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4428         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4429         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4430         New structure definition and typedefs.
4431         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4432         Likewise.
4433         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4434
4435 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4436
4437         * lib/test.c: Fix typo in #inlcude.
4438         * include/aclui.h: INTERFACE should not remain
4439         defined at the end of the header.
4440         * include/servprov.h: Ditto.
4441
4442 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4443
4444         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4445
4446 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4447
4448         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4449
4450 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4451
4452         * include/wsahelp.h (system_header): Add pragma.
4453         * include/ws2spi.h (system_header): Add pragma.
4454         * include/rasdlg.h (system_header): Add pragma.
4455         * include/rasdlg.h (_RASDLG_H): Define.
4456         Define instead of _RASDLG_H_, this is the w32api standard.
4457         * include/mlang.h (_MLANG_H): Define.
4458         Define instead of _MLANG_H_, this is the w32api standard.
4459         * include/setupapi.h (_SETUPAPI_H): Define.
4460         Define instead of _SETUPAPI_H_, this is the w32api standard.
4461
4462 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4463
4464         * include/rpcndr.h (boolean): Add typedef.
4465         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4466         * include/rpcndr.h (_RPCNDR_H): Define.
4467         Define in addition to __RPCNDR_H__, this is the w32api standard.
4468
4469 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4470
4471         * include/w32api.h: Increment version to 3.7.
4472         * Makefile.in: Ditto.
4473
4474 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4475
4476         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4477         GET_MODULE_HANDLE_EX_FLAG_PIN,
4478         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4479         Thanks to:    Brandon Sneed <brandon at redf dot net>
4480
4481 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4482
4483         * include/secext.h: Enclose function declarations in extern "C"
4484         if __cplusplus.
4485
4486 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4487
4488         * include/comcat.h: INTERFACE should not remain defined
4489         at the end of the header.
4490         * include/docobj.h: Ditto.
4491         * include/exdisp.h: Ditto.
4492         * include/intshcut.h: Ditto.
4493         * include/mlang.h: Ditto.
4494         * include/mshtml.h: Ditto.
4495         * include/oaidl.h: Ditto.
4496         * include/objidl.h: Ditto.
4497         * include/objsafe.h: Ditto.
4498         * include/ocidl.h: Ditto.
4499         * include/oleacc.h: Ditto.
4500         * include/oledlg.h: Ditto.
4501         * include/oleidl.h: Ditto.
4502         * include/richole.h: Ditto.
4503         * include/shldisp.h: Ditto.
4504         * include/shlobj.h: Ditto.
4505         * include/unknwn.h: Ditto.
4506         * include/vfw.h: Ditto.
4507         Thanks to:    Brandon Sneed <brandon at redf dot net>
4508
4509 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4510
4511         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4512         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4513         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4514
4515 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4516
4517         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4518         here also.
4519
4520 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4521
4522         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4523         We should probably remove PROV_MS_MAIL but I'm keeping it for
4524         now for compatibility reasons.
4525         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4526
4527 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4528
4529         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4530         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4531         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4532
4533 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4534
4535         * include/wingdi.h [WINVER >= 0x0410]
4536         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4537         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4538
4539 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4540
4541         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4542         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4543         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4544         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4545         (L_MAX_URL_LENGTH): Define.
4546         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4547         Thanks to:    Brandon Sneed <brandon at redf dot net>
4548
4549 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4550
4551         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4552
4553 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4554
4555         * include/w32api.h (_W32API_H): Define.
4556         Define in addition to _W32API_H_, this is the w32api standard.
4557
4558 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4559
4560         * include/w32api.h (WindowsVista): Define.
4561
4562 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4563
4564         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4565         on SOCKET_ADDRESS only if winsock2.h has already been included.
4566
4567 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4568
4569         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4570
4571 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4572
4573         * include/iphlpapi.h (GAA_FLAG_*): Define.
4574         (GetAdaptersAddresses): Add function declaration.
4575         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4576         Thanks to:    ross <rossboulet at users dot sf dot net>
4577
4578 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4579
4580         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4581         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4582         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4583         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4584         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4585         SCOPE_LEVEL): Add enums.
4586         (IP_ADAPTER_*): Define.
4587
4588 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4589
4590         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4591         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4592
4593 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4594
4595         * include/objidl.h (PIDSI_*): Define.
4596         (PRSPEC_*): Define.
4597         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4598
4599 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4600
4601         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4602         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4603         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4604         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4605         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4606
4607 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4608
4609         * include/mq.h: New file.
4610         * lib/mqrt.def (MQ*): Define a few missing functions.
4611
4612 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4613
4614         * lib/mqrt.def: New file.
4615         Needs the mq.h file to work properly, working on it.
4616         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4617
4618 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4619
4620         * include/winerror.h (STG_E_*):  Define.
4621         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4622         * include/winerror.h (STG_S_*): Define.
4623         (CO_S_MACHINENAMENOTFOUND): Define.
4624         (RPC_E_*): Define.
4625         (NTE_*): Define.
4626
4627 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4628
4629         * include/commctrl.h (ListView_*):  Define and correct.
4630         (LVM_*): Define.
4631
4632 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4633
4634         * include/winuser.h (WM_IME_*): Define (DWORD type).
4635         (EM_*IMESTATUS): Define.
4636         (WM_*): Define.
4637         (XBUTTON*): Define.
4638         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4639
4640 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4641
4642         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4643         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4644
4645 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4646
4647         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4648         version conditional.
4649
4650 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4651
4652         * include/winspool.h (JOB_INFO_3): Add structure.
4653         (PROVIDOR_INFO_*{AW}): Add structure.
4654         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4655         (PRINTER_ENUM_VALUES{AW}): Add structure.
4656         (PRINTPROCESSOR_CAPS): Add structure.
4657
4658 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4659
4660         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4661         (PRINTER_INFO_7A): Correct definition.
4662
4663 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4664
4665         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4666         (DRIVER_INFO_*{AW}): Add structure.
4667         (PRINTER_INFO_*{AW}): Add structure.
4668         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4669
4670 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4671
4672         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4673         (DRIVER_*MODE): Define (DWORD type).
4674         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4675
4676 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4677
4678         * include/wincon.h (GetConsoleProcessList): Declare.
4679
4680 2006-03-27  Hansres Engel  <engel@node.ch>
4681
4682         * include/mlang.h: New file.
4683
4684 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4685
4686         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4687
4688 2006-03-26  Hansres Engel  <engel@node.ch>
4689
4690          Add Uniscribe API for typography and for complex scripts.
4691         * include/usp10.h: New file.
4692         * lib/usp10.def: New file.
4693
4694         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4695
4696         * include/imm.h (IMECHARPOSITION): Add structure.
4697         (RECONVERTSTRING): Likwise.
4698
4699         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4700
4701         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4702         (IMLangFontLink2): Likewise.
4703         (IMultiLanguage): Likewise.
4704
4705 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4706
4707         * include/wincon.h  (ENABLE_*): Add more defines.
4708
4709 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4710
4711         * include/winnt.h (INHERITED_ACE): Define.
4712         (VALID_INHERIT_FLAGS): Correct definition.
4713
4714 2006-03-18  Peter Åstrand  <astrand@cendio.se>
4715
4716          * lib/wtsapi32.def: New file.
4717
4718 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4719
4720         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4721         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4722
4723 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4724
4725         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4726         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4727         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4728         (DSPRINT_*): Define (DWORD type).
4729         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4730
4731 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4732
4733         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4734         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4735
4736 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4737
4738         * include/shellapi.h [_WIN32_IE >= 0x0600]
4739         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4740         Windows XP SP1 and Windows XP respectively.
4741
4742 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4743
4744         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4745         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4746         * include/shellapi.h [_WIN32_IE >= 0x0500]
4747         (NIS_*): Introduced in Version 5.0.
4748
4749 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4750
4751         * include/wingdi.h (CS_*): Correct WINVER guard on
4752         Image Color Matching colour definitions.
4753
4754 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4755
4756         * include/shlobj.h (SFGAO_ISSLOW): Define.
4757         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4758         attribute constants.
4759
4760 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4761
4762         * include/wingdi.h [WINVER >= 0x0500]
4763         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4764         Thanks to: David A. Capello <dacap at users dot sf dot net>
4765
4766 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4767
4768         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4769         (INTERNET_STATE_*): Define flags.
4770         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4771
4772 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4773
4774         * include/sddl.h: New file.
4775
4776 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4777
4778         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4779         last change.
4780         Remove file level #pragma pack(push,4)/#pragma pop.
4781
4782 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4783
4784         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4785         value to force correct alignment.
4786
4787 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4788
4789         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4790         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4791         (PNM_CACHEHINT): Add backward compatibilty define.
4792         (LPNM_CACHEHINT): Likewise.
4793
4794 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4795
4796         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4797
4798 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4799
4800         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4801         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4802         * lib/shell32.def (PathResolve): Define.
4803
4804 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4805
4806         * include/shlobj.h (PathResolve): Fix typo.
4807
4808 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4809
4810         * include/shlobj.h (PathResolve): Define.
4811         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4812         PRF_DONTFINDLNK): Ditto.
4813         * lib/shell32.def (PathResolve): Define.
4814
4815 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4816
4817         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4818
4819 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4820
4821         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4822         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4823         (NotifyRouteChange@8): Define.
4824
4825 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4826
4827         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4828         prototypes.
4829
4830 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4831
4832         * include/winnt.h (FORCEINLINE): Define.
4833
4834 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4835
4836         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4837
4838 2006-01-26  Filip Navara  <xnavara@volny.cz>
4839
4840         * include/winnt.h (DECLSPEC_ALIGN): Define.
4841
4842 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4843
4844         * include/commctrl.h: Correct spelling of 'compatibility' in
4845         comments.
4846         * include/setupapi.h: Likewise.
4847         * include/ws2tcpip.h: Likewise.
4848
4849 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4850
4851         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4852
4853 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4854
4855         WATCOM compatibility changes.
4856         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4857         rather than __attribute__.
4858         (DECL_EXPORT): Likewise.
4859         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4860         (DDKFASTAPI): Likewise.
4861         (DDKCDECLAPI): Likwise.
4862         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4863
4864 2006-01-23  Brandon Sneed  <brandon@redf.net>
4865
4866         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4867         to exports.
4868
4869 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4870
4871         * include/w32api.h: Increment version to 3.6.
4872         * Makefile.in: Ditto.
4873
4874 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4875
4876         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4877         advapi32.dll functions.
4878
4879 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4880
4881         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4882         names for padding size constants.
4883
4884 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4885
4886         * include/aclapi.h (WINADVAPI): Add to prototypes.
4887         * include/winreg.h (WINADVAPI): Likewise.
4888         * include/winsvc.h (WINADVAPI): Likewise.
4889
4890 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4891
4892         * include/winbase.h (WINADVAPI): Define.
4893
4894 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4895
4896         * include/winuser.h (CreateWindowStation): Correctly identify first
4897         argument as constant.
4898         (CreateWindowStation@): Ditto.
4899
4900 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4901
4902         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4903         (TMT_*, BT_*): Add constants.
4904
4905 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4906
4907         * include/winsock2.h: Don't define struct sockaddr_storage when
4908         building Cygwin.
4909
4910 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4911
4912         * lib/ws2_32.c: New file, defining IPv6 constants.
4913         * lib/Makefile.in (SOURCES): Add ws2_32.c
4914         (EXTRA_OBJS): Add ws2_32.o.
4915
4916 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4917
4918         * lib/user32.def (PrivateExtractIconsA@32,
4919         PrivateExtractIconsW@32): Define.
4920         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4921
4922 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4923
4924         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4925
4926 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4927
4928         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4929
4930 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4931             Danny Smith <dannysmith@users.sourceforge.net>
4932
4933         * lib/msxml-uuid.c: New file to generate UUIDs for
4934         MSXML interfaces.
4935         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4936
4937 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4938
4939         * include/winbase.h (GetDevicePowerState): Add prototype.
4940         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4941
4942 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4943
4944         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4945         Define as macro if !_WIN64.
4946         (SetClassLongPtr{AW}): Likewise.
4947         (GCLP_*): Add GetClassLongPtr defines.
4948         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4949         (SetClassLongPtr{AW}): Likewise.
4950
4951 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4952
4953         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4954         (SetClassLongPtr{AW}): Likewise.
4955         (GCLP_*): Add GetClassLongPtr defines.
4956         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4957         (SetClassLongPtr{AW}): Likewise.
4958
4959 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4960
4961         * include/commdlg.h (OPENFILENAMEW): Add members for
4962         _WIN32_WINNT >= 0x0500.
4963         Thanks to Ricardo Dalcorsso Fodra.
4964         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4965
4966 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4967
4968         * include/wingdi.h (GetICMProfileA): Correct prototype.
4969         (GetICMProfileW): Likewise.
4970         Thanks to: Paul J Lucas
4971
4972 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4973
4974         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4975
4976 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4977
4978         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4979         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4980         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4981         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4982
4983 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4984
4985         * include/objbase.h: Fix typo.
4986         * include/w32api.h: Increment version to 3.5.
4987         * Makefile.in: Ditto.
4988
4989 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4990
4991         * include/w32api.h: Increment version to 3.4.
4992         * Makefile.in: Ditto.
4993
4994 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4995
4996         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4997         Use _WIN32_WINNT >= 0x0501 guard.
4998
4999 2005-10-11  Christopher Faylor  <cgf@timesys.com>
5000
5001         * include/winbase.h (GetProcessId): Declare.
5002
5003 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5004
5005         * lib/ddk/newdev.def: Added.
5006         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
5007
5008 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5009
5010         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
5011         component.
5012         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
5013
5014 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5015
5016         * lib/shell32.def (SHILCreateFromPath): Add stub.
5017         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
5018
5019 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5020
5021         * include/winbase.h (RegisterWaitForSingleObject,
5022         RegisterWaitForSingleObjectEx): Define.
5023         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
5024         (RegisterWaitForSingleObject@16): Changed to
5025         RegisterWaitForSingleObject@24.
5026         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
5027
5028 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
5029
5030         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
5031         Thanks to: Gisle Vanem  <giva at bgnett dot no>
5032
5033 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5034
5035         * include/reason.h [_WIN32_WINNT >= 0x0501]
5036         (SHTDN_REASON_*): New file.
5037         * include/objbase.h: Avoid double header guard.
5038
5039 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
5040
5041         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
5042         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
5043         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
5044
5045 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5046
5047         * include/shlobj.h (IContextMenu3): Define.
5048         * include/shlguid.h (IID_IContextMenu3): Declare.
5049         * lib/shell32.c (IID_IContextMenu3): Define.
5050
5051 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5052
5053         * include/shlobj.h (SHFormatDrive): Declaration of function
5054         and associated constants.
5055
5056 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5057
5058         * include/ddk/hidsdi.h:  New file.
5059         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
5060         functions declared in hidsdi.h.
5061         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
5062
5063 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5064
5065         * lib/imm32.def (ImmDisableIME): Add stub.
5066         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
5067
5068 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5069
5070         * include/w32api.h: Increment version to 3.3.
5071         * Makefile.in: Ditto.
5072
5073 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
5074
5075         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
5076         Correct their values.
5077         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
5078
5079 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5080
5081         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
5082
5083 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5084
5085         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
5086         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
5087
5088 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5089
5090         * include/richedit.h (SETTEXTEX): Define structure and
5091         associated constants.
5092         (GT_SELECTION): Define GETTEXTEX flag constant.
5093
5094 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5095
5096         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
5097
5098 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5099
5100         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
5101         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
5102         prototypes.
5103
5104 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5105
5106         * include/commctrl.h (RBBS_USECHEVRON): Define.
5107         (RBBS_*): Use hex notation, group together.
5108
5109 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5110
5111         * lib/kernel32.def (GetUserGeoID): Correct suffix.
5112         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
5113
5114 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5115
5116         * include/commctrl.h (TreeView_SetItemState): Initilise
5117         _tvi.hItem.
5118         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
5119
5120 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
5121
5122         * include/commctrl.h (NMLVFINDITEM): Add structure.
5123
5124 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5125
5126         * include/wininet.h (WININET_API_FLAG_*): Add defines.
5127
5128 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
5129
5130         * include/winnt.h (VER_SET_CONDITION): Define.
5131
5132 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5133
5134         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
5135         (ATTACH_PARENT_PROCESS): Define.
5136         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
5137         documentation.
5138
5139 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5140
5141         * include/winbase.h (QueueUserWorkItem): Add prototype.
5142
5143 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5144
5145         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
5146         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
5147         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
5148         CM_CMYK_COLOR): Define.
5149
5150 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
5151
5152         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
5153         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
5154         Thanks to: Christian  <chhd at users dot sf dot net>
5155
5156 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5157
5158         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
5159         field.
5160         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
5161
5162 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5163
5164         * include/winbase.h (GlobalDiscard): Define as macro.
5165         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5166
5167 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5168
5169         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5170         (WNetGetResourceParentW): Ditto.
5171         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5172         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5173
5174 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5175
5176         * include/wininet.h (FtpGetFileSize): Add prototype.
5177         (FtpCommand[AW]): Correct prototypes.
5178         Reported by: <siger at users dot sf dot net>
5179
5180 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5181
5182         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5183         (capGetDriverDescription[AW]): Likewise.
5184
5185 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5186
5187         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5188         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5189         (SE_IMPERSONATE_NAME TEXT): Ditto.
5190         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5191         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5192
5193 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5194
5195         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5196         change.
5197
5198 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5199
5200         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5201         Thanks to:
5202         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5203
5204 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5205
5206         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5207         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5208         (gai_strerror[AW]): Put into #if 0 block.
5209
5210 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5211
5212         * include/basetyps.h (__int16): Correct define.
5213
5214 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5215             Danny Smith  <dannysmith@users.sourceforge.net>
5216
5217         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5218         define for Open Watcom portability.
5219         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5220         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5221         of local c_rgodfDI* objects. Replace .rdata section attribute
5222         with 'const' keyword in definition of global c_dfDI* objects.
5223
5224 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5225
5226         * include/winioctl.h (IOCTL_VOLUME_BASE,
5227         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5228         Copy defines from include/ddk/ntdddvol.h.
5229         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5230
5231 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5232
5233         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5234
5235 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5236
5237         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5238         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5239
5240 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5241
5242         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5243
5244 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5245
5246         * lib/user32.def (MonitorFromPoint): Correct suffix.
5247
5248 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5249
5250         * include/wininet.h (InternetCheckConnectionA,
5251         InternetCheckConnectionW) Add prototypes.
5252         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5253         INTERNET_CONNECTION_CONFIGURED): Add defines.
5254
5255 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5256
5257         * include/commctrl.h (ComboBox_SetMinVisible,
5258         ComboBox_GetMinVisible): Added Macros.
5259         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5260         Added definitions.
5261
5262 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5263
5264         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5265         assembly code conditional on _X86_.
5266
5267 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5268
5269         * include/w32api.h: Increment version to 3.2.
5270         * Makefile.in: Ditto.
5271         * include/afxres.h: Remove the \r from the line ending.
5272         * include/errorrep.h: Ditto.
5273         * include/shldisp.h: Ditto.
5274         * include/tschema.h: Ditto.
5275         * lib/dhcpcsvc.def: Ditto.
5276         * lib/uxtheme.def: Ditto.
5277         * lib/wldap32.def: Ditto.
5278
5279 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5280
5281         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5282         Correct typo.
5283         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5284
5285 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5286
5287         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5288         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5289         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5290         SPI_GETFOREGROUNDLOCKTIMEOUT,
5291         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5292         *include/imm.h (WM_IME_REQUEST): Added definition.
5293         *include/shlobj.h (SLGP_RAWPATH,
5294         SLGP_UNCPRIORITY): Added definition.
5295
5296 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5297
5298         *include/winuser.h (HSHELL_FLASH): Added definition.
5299
5300 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5301
5302         * include/shldisp.h (IAutoComplete): Added interface definiton.
5303         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5304         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5305         * include/shlobj.h (IObjMgr): Added interface definiton.
5306         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5307         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5308         CLSID_ACListISF, IID_IACList): Added GUIDs.
5309         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5310         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5311         CLSID_ACListISF, IID_IACList): Added GUIDs.
5312
5313 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5314
5315         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5316         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5317         (CDRF_*): Use hex notation for constants.
5318
5319 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5320
5321         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5322         Reported by Eric Sharkey <sharkey at netrics dot com>
5323
5324 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5325
5326         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5327         TokenGroupsAndPrivileges, TokenSessionReference,
5328         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5329         Reformat.
5330         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5331         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5332
5333 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5334
5335         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5336         ImageList_Duplicate): Add stubs.
5337
5338 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5339
5340         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5341         Thanks to "Pete" <pross@xvid.org>
5342
5343 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5344
5345         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5346         AC_DST_NO_ALPHA, ...): Add defines.
5347         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5348         ULW_OPAQUE): Add defines.
5349
5350 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5351
5352         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5353         guard.
5354         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5355         suffix.
5356         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5357
5358 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5359
5360         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5361         (CreateProcessWithLogonW): Declare.
5362         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5363         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5364
5365 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5366
5367         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5368         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5369
5370 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5371
5372         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5373         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5374
5375 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5376
5377         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5378
5379 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5380
5381         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5382         Add defines.
5383         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5384
5385 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5386
5387         * include/shellapi.h (NIF_GUID): Add another define.
5388
5389 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5390
5391         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5392         Changed it twice due to inconsistent MSDN documentation.
5393         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5394
5395 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5396
5397         * include/shlobj.h (SHGFP_TYPE): Add enum.
5398
5399 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5400
5401         * include/winuser.h (WM_THEMECHANGED): Add define.
5402
5403 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5404
5405         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5406         ExFreeToPagedLookasideList): Guard inline versions with
5407         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5408         external functions for earlier _WIN32_WINNT.
5409
5410 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5411
5412         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5413
5414 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5415
5416         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5417         if  undefined and __W32API_USE_DLLIMPORT__.
5418         Add WINBASEAPI token to prototypes, throughout.
5419
5420 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5421
5422         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5423         (GetFiberData): Likewise.
5424         (NtCurrentTeb): Likewise.
5425
5426 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5427
5428         * include/shellapi.h (NIF_INFO): Add define.
5429         (NIIF_*) Add defines..
5430         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5431         (NIF_*): Convert constants to hex.
5432
5433 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5434
5435         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5436         GetGlyphIndicesW): Declare.
5437         (GGI_MARK_NONEXISTING_GLYPHS): Define
5438         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5439         GetGlyphIndicesW): Add stubs.
5440
5441 2004-10-24  Dan Aloni  <da-x@colinux.org>
5442
5443         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5444         ZwQueryFullAttributesFile): Declare.
5445         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5446         Declare.
5447         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5448         ZwQueryVolumeInformationFile): Add stubs.
5449
5450 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5451
5452         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5453         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5454
5455 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5456             Danny Smith  <dannysmith@users.sourceforge.net>
5457
5458         * include/winbase.h (InitializeSListHead, Interlocked*):
5459         Guard with !__USE_NTOSKRNL__.
5460
5461         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5462         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5463         Guard with  __USE_NTOSKRNL__.
5464         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5465         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5466         && _WIN32_WINNT >= 0x0501
5467         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5468         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5469         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5470         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5471
5472         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5473         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5474         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5475         ExWindowStationObjectType, IoAdapterObjectType,
5476         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5477         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5478         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5479         Uncomment stubs.
5480
5481 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5482
5483         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5484         definition
5485         (IoReleaseRemoveLock): Add definition.
5486
5487 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5488
5489         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5490         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5491         Add prototypes.
5492         * include/winddk.h (ExInterlockedAddUlong,
5493         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5494         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5495         ExInterlockedPushEntryList): Change calling convention to
5496         DDKAPI.
5497         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5498         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5499         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5500         Add prototypes for DDKFASTAPI versions.
5501         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5502         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5503         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5504         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5505         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5506         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5507         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5508         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5509         Add fastcall stubs.
5510         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5511         Exi386InterlockedIncrementLong); Add stdcall stubs.
5512
5513 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5514
5515         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5516          if __W32API_USE_DLLIMPORT__ is defined.
5517         * include/winuser.h (WINUSERAPI): Likewise.
5518
5519 2004-09-29  Filip Navara  <xnavara@volny.cz>
5520
5521         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5522         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5523         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5524         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5525         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5526         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5527         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5528         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5529         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5530         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5531         winnt4.h, ws2san.h): Fixed packing.
5532         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5533         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5534         HID_INTERFACE_NOTIFY_PNP): Likewise.
5535         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5536         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5537         <ayerkes@speakeasy.net>.
5538         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5539         declaration.
5540         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5541         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5542         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5543         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5544         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5545         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5546         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5547         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5548         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5549         (SYNCH_LEVEL): Added definition.
5550         (KPCR, KPCR_TIB): Fixed declaration.
5551         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5552         included and _WIN32_WINNT >= 0x0501.
5553         (RtlEqualLuid): Fixed macro definition.
5554         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5555         KeRaiseIrql on i386 architectures.
5556
5557 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5558
5559         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5560         declaration.
5561         (IHTMLSelectionObject): Correct get_type declaration.
5562         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5563         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5564         IHTMLBodyElement2): Add interfaces.
5565         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5566         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5567         typedefs.
5568         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5569         Add IIDs.
5570
5571 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5572
5573         * include/w32api.h: Increment version to 3.1.
5574         * Makefile.in: Ditto.
5575
5576 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5577
5578         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5579         MonitorFromWindow): Add prototypes.
5580         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5581         MonitorFromWindowMonitorFromWindow): Add stubs.
5582         * include/shellapi.h (DuplicateIcon): Add prototype.
5583
5584 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5585
5586         * include/winuser.h (WINUSERAPI): New define.
5587         Use it to mark user32.dll imports, throughout.
5588
5589 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5590
5591         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5592         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5593         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5594         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5595         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5596         HidD_GetPreparsedData, HidD_GetProductString,
5597         HidD_GetSerialNumberString, HidD_SetConfiguration,
5598         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5599         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5600
5601 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5602
5603         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5604         Add XP defines.
5605         (PCOORD): Add typedef.
5606         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5607
5608 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5609
5610         * include/winldap.h: Don't check value of UNICODE.
5611         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5612
5613 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5614
5615         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5616
5617 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5618
5619         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5620         guard.
5621
5622 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5623
5624         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5625
5626 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5627
5628         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5629
5630 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5631
5632         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5633
5634 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5635
5636         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5637
5638 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5639
5640         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5641         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5642         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5643         Add defines.
5644         (CALG_SHA1): Add define.
5645         (HP_HMAC_INFO): Add define.
5646         (HMAC_INFO): Add struct.
5647         (BLOBHEADER): Add typedef.
5648
5649 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5650
5651         * include/commctrl.h (TreeView_SetItemState): Define macro.
5652
5653 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5654
5655         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5656         macros together.
5657
5658 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5659
5660         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5661         (FILEGROUPDESCRIPTOR): LIkewise.
5662
5663 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5664
5665         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5666
5667 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5668
5669         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5670         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5671         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5672         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5673         (IMAGE_ORDINAL): Map to ...
5674         (IMAGE_ORDINAL{32,64}: New defines.
5675         (IMAGE_THUNK_DATA):  Map to ...
5676         (IMAGE_THUNK_DATA{32,64}: New structures.
5677         (IMAGE_THUNK_DATA): Map to ...
5678         (IMAGE_THUNK_DATA{32,64}: New structures.
5679         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5680         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5681         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5682         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5683
5684 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5685
5686         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5687         _WIN32_WINNT >= 0x0500.
5688
5689 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5690
5691         * include/winbase.h (GetWriteWatch): Correct prototype.
5692         (WRITE_WATCH_FLAG_RESET): Define.
5693         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5694
5695 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5696
5697         * include/commctrl.h (Animate_OpenEx): Define.
5698         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5699         (ListView_GetNumberOfWorkAreas): Correct macro.
5700         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5701         ListView_SetItemCountEx, ListView_GetISearchString,
5702         TreeView_GetLastVisible, Header_CreateDragImage,
5703         Header_SetImageList, Header_GetImageList): Define.
5704         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5705         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5706         TBSTATE_ELLIPSES): Define.
5707         (MonthCal_SetRange): Correct macro.
5708         (ImageList_Duplicate): Declare.
5709
5710 2004-05-29  Filip Navara  <xnavara@volny.cz>
5711
5712         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5713
5714 2004-05-25  Al Slater  <al.slater@scluk.com>
5715
5716         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5717         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5718
5719 2004-05-15  Filip Navara  <xnavara@volny.cz>
5720
5721         * include/ddk/kbdmou.h: New file.
5722         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5723         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5724         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5725         _vsnwprintf, sprintf, swprintf): Export.
5726
5727 2004-05-15  Filip Navara  <xnavara@volny.cz>
5728
5729         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5730         headers.
5731
5732 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5733
5734         * include/wingdi.h: Correct non-unicode typedefs of
5735         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5736
5737 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5738
5739         * include/winsock.h (IN_CLASSA): Fix macro.
5740         * include/winsock2.h (IN_CLASSA): Fix macro.
5741
5742 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5743
5744         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5745         * include/aclui.h: Remove '\r', throughout.
5746         * include/msacm.h: Likewise.
5747         * lib/aclui.def: Likewise.
5748
5749 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5750
5751         * lib/comctl32.def (SetWindowSubclass): Add stub.
5752         Thanks to Eugene <egladysh@users.sourceforge.net>.
5753
5754 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5755
5756         * include/winbase.h (EXECUTION_STATE): Add typedef.
5757         (SetThreadExecutionState): Declare.
5758         * include/wingdi.h (_WINGDI_): Define.
5759         * include/objbase.h (_OBJBASE_H_): Define.
5760
5761 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5762
5763         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5764         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5765         (SM_CMETRICS): Adjust value.
5766         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5767         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5768         Add defines.
5769         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5770
5771 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5772
5773         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5774         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5775         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5776         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5777         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5778         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5779
5780 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5781
5782         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5783         DNSREC_ADDITIONAL): Add defines.
5784
5785 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5786
5787         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5788
5789 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5790
5791         * include/aclui.h: New file.
5792         * lib/aclui.def: New file.
5793         * lib/test.c: Add aclui.h to includes.
5794
5795 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5796
5797         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5798         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5799         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5800
5801 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5802
5803         * include/wingdi.h: Protect non-unicode case of below.
5804
5805 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5806
5807         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5808         LPENUMLOGFONTEXDV with appropriate version check.
5809
5810 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5811
5812         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5813         DSPROPSETID_DirectSoundDevice): Add defines.
5814
5815 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5816
5817         * include/msacm.h: New file.
5818
5819 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5820
5821         * include/objbase.h (STGFMT): Declare enum.
5822         (STGOPTIONS): Declare structure.
5823         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5824         (STGOPTIONS_VERSION): Define.
5825         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5826
5827 2004-04-13  Filip Navara  <xnavara@volny.cz>
5828
5829         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5830         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5831         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5832         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5833         HELP_SETWINPOS): Define.
5834         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5835         (SPI_*): Add new definitions for WINVER >= 0x500.
5836         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5837         (InternalGetWindowText, SetWindowsHookW): Declare.
5838         * include/winbase.h (InitializeSListHead): Avoid conflicting
5839         definition with DDK headers.
5840
5841 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5842
5843         * include/winuser.h (GetLastError): Move from here...
5844         * include/winbase.h: ... to here.
5845
5846 2004-04-13  Filip Navara  <xnavara@volny.cz>
5847
5848         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5849
5850 2004-04-13  Filip Navara  <xnavara@volny.cz>
5851
5852         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5853         WINVER >= 0x400.
5854         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5855         (ENUMLOGFONTEXW): Fix definition.
5856         (ENUMLOGFONTEXDV[AW]): Declare.
5857
5858 2004-04-13  Filip Navara  <xnavara@volny.cz>
5859
5860         * include/wingdi.h: Declare the DirectDraw structures only if
5861         the DirectDraw kernel mode headers aren't included.
5862         (EMFINFO): Declare.
5863         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5864         STROBJ_bEnumPositionsOnly): Correct prototypes.
5865
5866 2004-04-13  Filip Navara  <xnavara@volny.cz>
5867
5868         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5869         * include/rpc.h (RPCRTAPI): Define.
5870         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5871         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5872         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5873         (I_RpcBindingSetAsync): Correct prototype.
5874         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5875         to w2kReserved.
5876         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5877         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5878         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5879         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5880         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5881         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5882         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5883         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5884         NdrUserMarshalFree): Declare.
5885         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5886         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5887
5888 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5889
5890         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5891         LPC_MESSAGE_BASE_SIZE): Define.
5892         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5893
5894 2004-04-13  Filip Navara  <xnavara@volny.cz>
5895
5896         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5897         Declare.
5898
5899 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5900
5901         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5902         MONITORINFO when compiling as C++.
5903
5904 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5905
5906         * README.w32api: List separate copyright conditions for some headers.
5907         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5908
5909 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5910
5911         * include/wingdi.h (RGB): Correct macro.
5912
5913 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5914
5915         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5916
5917 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5918
5919         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5920
5921 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5922
5923         * lib/Makefile.in: Add directx to .PHONY target.
5924         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5925         Don't include stdio.h or tchar.h.
5926         Replace _T() macro with TEXT() macro, throughout.
5927         Replace _stprintf with wsprintf, throughout.
5928
5929 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5930
5931         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5932         Add define.
5933         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5934         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5935         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5936
5937 2004-03-27  Filip Navara  <xnavara@volny.cz>
5938
5939         * include/directx: New subdir.
5940         * lib/directx: Ditto.
5941         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5942         dxerr9.h): New files.
5943         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5944         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5945         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5946         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5947         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5948         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5949         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5950         strmiids.c, test.c): Ditto.
5951         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5952         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5953
5954 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5955
5956         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5957         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5958         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5959
5960 2004-03-24  Filip Navara  <xnavara@volny.cz>
5961
5962         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5963         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5964
5965 2004-03-24  Filip Navara  <xnavara@volny.cz>
5966
5967         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5968         TaggedQueueing to TaggedQueuing.
5969         (_HW_INITIALIZATION_DATA): Likewise.
5970
5971 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5972
5973         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5974         prototype.
5975         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5976
5977 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5978
5979         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5980         (MmMapIoSpace): Likewise.
5981         Thanks to Dan Aloni  <da-x@colinux.org>
5982
5983 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5984
5985         * include/shellapi.h (NIM_* NIS_*): Define constants for
5986         notification icons with _WIN32_IE >= 0x0500.
5987         (NOTIFYICONDATA): Add new structure members for notification
5988         icons with _WIN32_IE >= 0x0500.
5989
5990 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5991
5992         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5993         Add defines.
5994         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5995         (GROUPID) Add typedef.
5996         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5997         (CreateUrlCacheGroup): Add prototype.
5998         (DeleteUrlCacheGroup): Add prototype.
5999         (FindFirstUrlCacheGroup): Add prototype.
6000         (FindNextUrlCacheGroup): Add prototype.
6001         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
6002         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
6003
6004 2004-03-10  Al Slater  <al.slater@scluk.com>
6005
6006         * include/winsock2.h: Add missing LPFN_ typdefs for
6007         function pointers.
6008         Clean up whitespace.
6009
6010 2004-03-05  Filip Navara  <xnavara@volny.cz>
6011
6012         * include/ddk/scsi.h: Replace assert with ASSERT.
6013         * include/ddk/video.h: Ditto.
6014         * include/ddk/winddk.h: Ditto. Remove the assert macro.
6015         * include/ddk/tdi.h: Correct packing.
6016
6017 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
6018
6019         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
6020         NONAMELESSUNION case.
6021
6022 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
6023
6024         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
6025         __VARIANT_NAME_ constants.
6026
6027 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6028
6029         * include/uxtheme.h: Include <commctrl.h>
6030
6031 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6032
6033         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
6034
6035 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
6036
6037         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
6038         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
6039         together.
6040         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
6041         (V_I8, V_I8REF): Correct macros.
6042         (V_DECIMAL): Correct macro definitions.
6043         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
6044         constants.
6045         (VTBIT_*): Define constants.
6046         (UDATE): Add structure definition.
6047         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
6048         functions.
6049         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
6050         (SafeArrayCreateVectorEx): Declare function.
6051         (Var*): declare VARIANT manipulation functions.
6052         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
6053         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
6054         macros.
6055
6056 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
6057
6058         * include/oaidl.h (FADF_*): Define missing constants.
6059         (IDispatch_*): Define COBJ macros.
6060         (VARIANT): Add missing union members llVal and ullVal.
6061         (wireVARIANT): Likewise.
6062         (ITypeinfo_*): Define COBJ macros.
6063         * include/oleauto.h (Var*FromDisp): Correct parameter type from
6064         LPDISPATCH* to LPDISPATCH.
6065         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
6066         VAR_CALENDAR_*): Add missing constants.
6067         (SafeArray[Get/Set]*): Add prototypes.
6068         (Var*From*):  Add missing prototypes.
6069         (NUMPRS_*): Add defines.
6070         (NUMPARSE): Define structure.
6071         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
6072         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
6073         * include/winuser.h (COLOR_*): Define missing constants.
6074         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
6075         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
6076
6077 2004-02-23  Filip Navara  <xnavara@volny.cz>
6078
6079         * include/ddk/video.h: Corrected packing.
6080
6081 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6082
6083         * include/GL/glu.h (GLU_ERROR): Define.
6084         Thanks to Philip Lamb  <phil at rave dot co dot nz>
6085
6086 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6087
6088         * include/GL/glu.h: Include <stddef.h>.
6089         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
6090
6091 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
6092
6093         * include/w32api.h: Increment version to 3.0.
6094         * Makefile.in: Ditto.
6095         * README.win32api: Modify license to Public Domain per agreement as
6096         found in the mingw-dvlpr list archive.
6097
6098 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
6099
6100         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
6101         (DIRECTORY_TRAVERSE): Ditto.
6102         (DIRECTORY_CREATE_OBJECT): Ditto.
6103         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
6104         (DIRECTORY_ALL_ACCESS): Ditto.
6105         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
6106
6107 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
6108
6109         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
6110
6111         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
6112         Thanks to Mike Nordell <tamlin at algonet dot se>.
6113
6114 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6115
6116         * lib/dnsapi.def: New file.
6117         * lib/test.c: Include windns.h.
6118
6119 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
6120
6121         * include/windns.h: New file.
6122
6123 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6124
6125         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
6126         defines.
6127         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
6128         (SQLSetDescFieldW): Correct prototype.
6129         (SQLSetDescFieldA): Add prototype.
6130         (SQLGetDescFieldW): Add prototype.
6131
6132 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
6133
6134         * include/winuser.h (DFC_POPUPMENU): Add define.
6135
6136 2004-02-07  Dan Aloni  <da-x@gmx.net>
6137
6138         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
6139         suffix.
6140
6141 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6142
6143         * include/oleacc.h (LIBID_Accessibility): Declare.
6144         * lib/uuid.c (LIBID_Accessibility): Define.
6145
6146 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6147
6148         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
6149         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
6150
6151 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6152
6153         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
6154         defines.
6155
6156 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
6157
6158         * include/winuser.h (RT_MANIFEST): Make conditional on
6159         RC_INVOKED.
6160         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
6161         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
6162         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6163         defines.
6164
6165 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6166
6167         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6168
6169 2004-01-15  Filip Navara  <xnavara@volny.cz>
6170
6171         * include/ddk/mcd.h: Don't care about value of DBG define.
6172         * include/ddk/srb.h: Ditto.
6173         * include/ddk/storport.h: Ditto.
6174         * include/ddk/video.h: Ditto.
6175         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6176         GetAddressByNameW): Correct protoype.
6177         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6178
6179 2004-01-05  Filip Navara  <xnavara@volny.cz>
6180
6181         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6182         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6183         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6184         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6185         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6186         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6187         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6188         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6189         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6190         SSF_*): Add defines.
6191         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6192         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6193         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6194         Correct.
6195         (IEnumIDList): Add COBJMACROS.
6196         * include/winuser.h (MIM_*): Add define.
6197
6198 2004-01-04  Filip Navara  <xnavara@volny.cz>
6199
6200         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6201         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6202         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6203         PERSIST_FOLDER_TARGET_INFO): Define structures.
6204         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6205         IPersistFolder2, IPersistFolder3): Add COM interface
6206         definitions.
6207         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6208         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6209         Add COBJMACROS.
6210         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6211         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6212         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6213
6214 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6215
6216         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6217         declarations.
6218         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6219
6220 2004-01-03  Filip Navara  <xnavara@volny.cz>
6221
6222         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6223         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6224         declare IID's.
6225         (IErrorInfo): Add COBJMACROS.
6226         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6227         (CoGetPSClsid): Add protototype,
6228         (CoRegisterPSClsid): Likewise.
6229         * include/objidl.h (IMarshal): Correct methods.
6230         (IMallocSpy): Likewise,
6231         (LPPSFACTORYBUFFER): Add typedef.
6232         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6233         IID.
6234         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6235         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6236         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6237         structures.
6238         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6239         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6240         IQuickActivate): Define interfaces. Declare IID's.
6241         (IPersistPropertyBag2): Add COBJMACROS.
6242         (LPOLEUNDOMANAGER): Add typedef.
6243         (LPPROPERTYBAG2): Likewise.
6244         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6245         (BINDSPEED): Add definition.
6246         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6247         IDropTarget): Add COBJMACROS.
6248         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6249         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6250         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6251         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6252         Add IID definitions.
6253
6254 2004-01-02  Filip Navara  <xnavara@volny.cz>
6255
6256         * include/ddk/winddk.h: Don't care about value of
6257         DBG define.
6258
6259 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6260             Filip Navara  <xnavara@volny.cz>
6261
6262         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6263         _DDK_DUMMYUNION_N_MEMBER): New macros.
6264         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6265         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6266         Use them.
6267
6268 2004-01-01  Filip Navara  <xnavara@volny.cz>
6269
6270         * include/objbase.h: Don't care about value of DBG define.
6271         * include/objidl.h: Add some COBJMACROS.
6272         * include/ocidl.h: Ditto.
6273         * include/oleidl.h: Ditto.
6274         * include/servprov.h: Ditto.
6275         * include/shlobj.h: Ditto.
6276         * include/shlobj.h (IContextMenu2): Correct parent in
6277         DECLARE_INTERFACE.
6278         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6279         Define interfaces.
6280         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6281         Add new constants for _SETUPAPI_VER >= 0x501.
6282
6283 2004-01-01  Filip Navara  <xnavara@volny.cz>
6284
6285         * include/winnt.h (NtCurrentTeb): Add inline definition.
6286
6287 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6288
6289         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6290         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6291
6292 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6293
6294         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6295         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6296         * include/ddk/cfg.h (DN_*): Add defines.
6297
6298 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6299
6300         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6301
6302 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6303
6304         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6305         (NMTVGETINFOTIP): Add structure.
6306
6307 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6308
6309         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6310         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6311         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6312
6313 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6314
6315         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6316         Add macros.
6317         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6318         constants.
6319         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6320         (SHCOLUMNDAT): Likwise.
6321         (SHCOLUMNID): Likewise.
6322         (SHCOLUMNINFO): Likewise.
6323         (SHCOLSTATE): Add enum.
6324         (IColumnProvider): Add COM interface.
6325         (IQueryInfo): Likewise.
6326         (IShellIconOverlayIdentifier): Likewise.
6327         * include/shlguid.h (IID_IColumnProvider) Declare.
6328         (IID_IQueryInfo): Likweise.
6329         (IID_IShellIconOverlayIdentifier): Likwise.
6330         * lib/shell32.c (IID_IColumnProvider) Define.
6331         (IID_IQueryInfo): Likweise.
6332         (IID_IShellIconOverlayIdentifier): Likwise.
6333
6334 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6335
6336         * include/winuser.h (RT_MANIFEST): Add define.
6337
6338 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6339
6340         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6341
6342 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6343
6344         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6345         (GetFiberData): Likewise.
6346         (GetCurrentFiber): Change volatile to __volatile__.
6347         (GetFiberData): Likewise.
6348
6349 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6350
6351         * lib/Makefile.in: Use make function to locate .mri file to allow
6352         building in directory other than source directory.
6353
6354 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6355
6356         * lib/vfw32.def: Remove, replacing with ...
6357         * lib/msvfw32.def: New file.
6358         * lib/avicap32.def: New file.
6359         * lib/avifil32.def: New file.
6360         * lib/vfw32.mri: New file.
6361         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6362         import libs with multiple dll's.
6363         (LIBS): Add MIMPLIBS.
6364         (DISTFILES): Add MRI_FILES.
6365         (libvfw32.a): Build using mri script.
6366
6367 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6368
6369         * include/winnt.h (PAGE_*): Group defines together. Change
6370         constants to hex notation.
6371
6372 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6373
6374         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6375
6376 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6377
6378         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6379         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6380         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6381         Add prototypes.
6382         * lib/shell32.def: Add stubs.
6383
6384         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6385         compiler warnings.
6386
6387 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6388
6389         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6390
6391 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6392
6393         * include/windows.h (CopyCursor): Define as macro.
6394
6395 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6396
6397         * include/winnt.h (CONTAINING_RECORD): Add macro.
6398
6399 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6400
6401         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6402         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6403         defines.
6404
6405 2003-10-13  Filip Navara  <xnavara@volny.cz>
6406
6407         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6408         defines for Dynamic Storage Arrays.
6409         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6410         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6411         and defines for Flat ScrollBars.
6412         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6413         DefSubclassProc): Add prototypes for subclassing.
6414         (DrawShadowText): Add prototype.
6415         (COMCTL32_VERSION): Define.
6416
6417 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6418
6419         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6420         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6421
6422 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6423
6424         * include/winnt.h (SM_REMOTESESSION): Add define.
6425         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6426
6427 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6428
6429         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6430         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6431         duplicate definitions.
6432         (KP_X, KP_Y): Correct typos.
6433
6434 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6435
6436         * include/afxres.h: New file.
6437
6438         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6439         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6440         ENM_SCROLLEVENTS): Add constants.
6441
6442         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6443
6444 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6445
6446         * include/errorep.h: New file.
6447
6448         * lib/faultrep.def: New file.
6449
6450 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6451
6452         * include/winbase.h (AddVectoredExceptionHandler): Define if
6453         _WIN32_WINNT >= 0x0500.
6454
6455         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6456         _WIN32_WINNT >= 0x0500.
6457
6458 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6459
6460         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6461         _WIN32_WINNT >= 0x0501.
6462
6463 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6464
6465         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6466         UnregisterWaitEx): Add functions.
6467
6468         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6469         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6470         or guard function. The MSDN says it is available on Windows XP and
6471         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6472         Huh?
6473
6474         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6475         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6476         ZombifyActCtx, QueryActCtxW): Add functions.
6477
6478         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6479         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6480         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6481         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6482
6483         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6484         SetFirmwareEnvironmentVariable[AW]): Add functions.
6485
6486         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6487         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6488         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6489         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6490         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6491
6492         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6493         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6494
6495         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6496         (ACTIVATION_CONTEXT_INFO_CLASS,
6497         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6498         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6499         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6500         Add structures.
6501
6502         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6503         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6504         SetFileShortName[AW], SetFileValidData,
6505         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6506         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6507
6508 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6509
6510         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6511         ResetWriteWatch): Add function.
6512
6513         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6514         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6515         Add functions.
6516
6517         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6518         (GetSystemWow64Directory[AW], HeapQueryInformation,
6519         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6520         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6521         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6522         RemoveVectoredExceptionHandler): Add functions.
6523
6524         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6525         Add enumeration.
6526
6527         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6528         Add function.
6529
6530         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6531         Add function. The MSDN Magazine of June 2003 reads:
6532                 RestoreLastError is an enigma. It's code is identical to
6533                 SetLastError. It's unclear to me why it was made into a
6534                 separate API.
6535
6536         * lib/user32.def (GetSystemWindowsDirectory[AW],
6537         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6538         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6539         InterlockedFlushSList, InterlockedPopEntrySList,
6540         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6541         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6542         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6543         RestoreLastError): Add functions.
6544
6545 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6546
6547         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6548         GetProcessIoCounters): Add functions.
6549
6550         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6551         Move around, needed by GetComputerNameEx.
6552
6553         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6554         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6555         Add functions.
6556
6557         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6558         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6559
6560         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6561         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6562         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6563         Windows XP SP1 and better.
6564
6565         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6566         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6567         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6568         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6569         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6570         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6571         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6572         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6573         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6574
6575         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6576         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6577         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6578         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6579         Add functions.
6580
6581 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6582
6583         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6584         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6585         DebugSetProcessKillOnExit): Add functions.
6586
6587         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6588         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6589         DnsHostnameToComputerName[AW]): Add functions.
6590
6591         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6592         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6593         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6594
6595 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6596
6597         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6598         on Windows XP and later.
6599
6600 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6601
6602         * include/commctrl.h (TreeView_Select): Returns BOOL.
6603
6604 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6605
6606         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6607
6608         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6609         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6610
6611         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6612         CreateTimerQueueTimer): Add function.
6613
6614         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6615         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6616
6617         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6618         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6619
6620         * include/winnt.h (WT_*): Add constants.
6621
6622         * lib/user32.def (CancelDeviceWakeupRequest,
6623         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6624         DeactivateActCtx): Add functions.
6625
6626 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6627
6628         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6629         Add function. Sometimes I don't understand MSDN. This function is
6630         available on Windows XP and Server 2003, but the SDK is supposed to
6631         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6632         Mmmh...
6633
6634         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6635         Guard function. Same remark as above.
6636
6637         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6638         Add functions.
6639
6640 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6641
6642         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6643         Add constants.
6644
6645         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6646         structures.
6647
6648         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6649         function. MSDN says the first argument is HACTCTX but I'm not sure
6650         where such a specialized handle is defined, so use HANDLE instead.
6651
6652         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6653         CheckNameLegalDOS8Dot3[AW]): Add functions.
6654
6655         * lib/user32.def (ActivateActCtx, AttachConsole,
6656         CheckNameLegalDOS8Dot3[AW]): Add functions.
6657
6658         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6659         Unfortunately I don't know which header to put the declarations in.
6660
6661 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6662
6663         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6664         Add constants.
6665
6666         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6667         constants for National Language Support.
6668
6669         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6670         Language Support.
6671
6672         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6673         Language Support.
6674
6675         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6676         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6677         Add functions.
6678
6679         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6680         functions. Strange... I am unable to find which library contains
6681         these functions. Can't find anything with pexports. Any clue?
6682
6683         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6684         SetUserGeoID): Add functions.
6685
6686 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6687
6688         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6689         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6690
6691         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6692         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6693         value for constants.
6694
6695 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6696
6697         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6698         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6699         the algorithms.
6700
6701 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6702
6703         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6704
6705 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6706
6707         * include/wincrypt.h (KP_*): Add constants. Needed by
6708         CryptSetKeyParam() and other functions.
6709
6710 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6711
6712         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6713         Add constants, related to Console Accessibility.
6714
6715 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6716
6717         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6718         wrong value for constant.
6719
6720 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6721
6722         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6723
6724         * include/uxtheme.h: Cleanup.
6725         * include/tmschema.h: Cleanup.
6726
6727 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6728
6729         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6730         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6731
6732 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6733
6734         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6735
6736 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6737
6738         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6739         both winuser.h and dbt.h.
6740         * include/dbt.h (BSF_*, BSM_*): Likewise.
6741
6742         * include/winuser.h (struct tagRAWINPUT): Remove
6743         _ANONYMOUS_UNION tag from named union.
6744         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6745
6746 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6747
6748         * include/dhcpcdsk.h: New file.
6749         Note that MSDN is confused about whether it should start constant
6750         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6751         experience suggests it's DHCPCAPI with `C'.
6752
6753         * lib/dhcpcsvc.def: New file.
6754
6755 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6756
6757         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6758         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6759
6760         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6761         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6762         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6763         for use in RAWINPUTDEVICE.
6764
6765         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6766         (GetRawInputDeviceInfo[AW]): Ooops... there are
6767         ANSI/Unicode versions of this function.
6768
6769         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6770         are ANSI/Unicode versions of this function.
6771
6772 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6773
6774         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6775         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6776         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6777         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6778         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6779         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6780         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6781         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6782         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6783         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6784         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6785         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6786         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6787         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6788         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6789         RIDI_DEVICEINFO): Add constants.
6790
6791         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6792         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6793         RAWINPUTDEVICELIST): Add structures.
6794
6795         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6796         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6797         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6798
6799         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6800         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6801         GetRegisteredRawInputDevices): Add functions.
6802
6803 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6804
6805         * include/winable.h (BlockInput): Add function.
6806
6807         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6808         For use with WINDOWINFO structure.
6809
6810         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6811         Add function.
6812
6813         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6814         Add function.
6815
6816         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6817         Add function...
6818
6819         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6820         ...and duplicate.
6821
6822         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6823         Guard function...
6824
6825         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6826         ...and duplicate.
6827
6828         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6829         Guard function...
6830
6831         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6832         ...and duplicate.
6833
6834         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6835         HARDWAREINPUT, INPUT): Guard structures...
6836
6837         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6838         HARDWAREINPUT, INPUT): ...and duplicate.
6839
6840         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6841         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6842
6843         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6844         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6845
6846         * include/winuser.h: Move around some lines. Reformat according
6847         to recommended or dominant style. Remove FAR keyword.
6848
6849         * include/winable.h: Move around some lines.
6850
6851         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6852         LockWorkStation, UnhookWinEvent): Add functions.
6853
6854 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6855
6856         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6857         PW_CLIENTONLY): Add function and constant.
6858
6859         * lib/user32.def (PrintWindow): Add function.
6860
6861 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6862
6863         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6864
6865         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6866
6867 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6868
6869         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6870         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6871         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6872
6873         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6874
6875 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6876
6877         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6878         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6879         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6880
6881         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6882         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6883         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6884
6885         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6886         Add function.
6887
6888         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6889         Add functions.
6890
6891 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6892
6893         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6894         ACE_OBJECT_TYPE_PRESENT): Add constants.
6895         For use with OBJECTS_AND_NAME structure.
6896
6897 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6898
6899         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6900         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6901         void* instead.
6902
6903         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6904         PINHERITED_FROM[AW]): Add structures.
6905
6906         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6907
6908 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6909
6910         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6911
6912 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6913
6914         * lib/version.def (LIBRARY): Quote name.
6915
6916 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6917
6918         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6919         and constants.
6920
6921         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6922         GR_USEROBJECTS): Add functions and constants.
6923
6924         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6925         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6926
6927         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6928         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6929         constants.
6930
6931         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6932         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6933
6934 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6935
6936         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6937         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6938         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6939         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6940         BSF_RETURNHDESK): Add functions and constants.
6941
6942         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6943         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6944
6945         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6946         GetProcessDefaultLayout, SetProcessDefaultLayout,
6947         RealChildWindowFromPoint, SetProcessDefaultLayout,
6948         SwitchToThisWindow): Add functions.
6949
6950         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6951         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6952         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6953         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6954         RealChildWindowFromPoint, SetProcessDefaultLayout,
6955         SwitchToThisWindow): Add function.
6956
6957 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6958
6959         * include/winuser.h (DeregisterShellHookWindow): Add function.
6960
6961         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6962
6963         * lib/user32.def (EndTask): Add function.
6964
6965         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6966         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6967
6968         * include/winable.h: Reorder target macros.
6969
6970         * lib/*.def: Cleanup.
6971
6972 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6973
6974         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6975         function.
6976
6977         * lib/user32.def (AnimateWindow): Add function. By the way
6978         there are ~ 140 symbols missing from this file when comparing
6979         to user32.dll on Windows XP.
6980
6981 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6982
6983         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6984         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6985         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6986         AnimateWindow().
6987
6988 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6989
6990         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6991         LPGUITHREADINFO): Add function and associated typedef...
6992
6993         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6994         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6995         seems to be required on older versions of Windows.
6996
6997 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6998
6999         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
7000         function. MSDN suggests using gluErrorUnicodeStringWIN
7001         instead of gluErrorString, as it allows both ANSI and Unicode
7002         error strings.
7003
7004         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
7005         returned pointer const for consistency reasons.
7006
7007 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7008
7009         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
7010         Function exists in glu32.def but is undocumented on MSDN.
7011         A Google search came up with this declaration.
7012
7013 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7014
7015         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
7016         headers from OpenGL Sample Implementation. Windows ships with
7017         GLU 1.2 so some constants and functions were removed. Then some
7018         typedef's and function declarations were reworked to look like
7019         the previous GL/glu.h.
7020
7021 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7022
7023         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
7024         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
7025         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
7026
7027         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
7028         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
7029         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
7030         and `enum THEMESIZE'.
7031
7032 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7033
7034         * include/uxtheme.h: New file.
7035         * include/tmschema.h: New file.
7036         * include/uxtheme.def: New file.
7037         * lib/test.c: Include uxtheme.h, tmschema.h.
7038
7039 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7040
7041         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
7042         Add defines.
7043
7044 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7045
7046         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7047         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
7048         <winable.h> as seems to be required on older versions of
7049         Windows.
7050
7051 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7052
7053         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
7054         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7055         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
7056         Add defines, the last one only on Windows XP...
7057
7058         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
7059         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7060         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
7061         them in <winable.h> as seems to be required on older
7062         versions of Windows.
7063
7064 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7065
7066         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
7067         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7068         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7069         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
7070         back into <winuser.h>...
7071
7072         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
7073         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7074         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7075         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
7076         comment out in <winable.h>. MSDN may say <winable.h> but this
7077         breaks many programs. It seems it used to be <winable.h> on
7078         older versions of Windows.
7079
7080 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
7081
7082         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
7083         Thanks to Will Levine  <willll@users.sourceforge.net>
7084
7085 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7086
7087         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
7088         const struct sockaddr*.
7089         (LPWSPCONNECT): Likewise.
7090         (LPWSPJOINLEAF): Likewise.
7091         (LPWSPSENDTO): Likewise.
7092         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
7093
7094 2003-09-15  Filip Navara  <xnavara@volny.cz>
7095
7096         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
7097         Add definitions.
7098
7099 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
7100
7101         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
7102         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
7103         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
7104         DISPLAY_DEVICE_MODESPRUNED): Define constants.
7105         (ChangeDisplaySettingsEx[A,W]): Add prototype.
7106
7107         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
7108         (EnumDisplayDevices[A,W]): Likewise.
7109
7110 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7111
7112         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
7113         throughout.
7114
7115 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7116
7117         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7118         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7119         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7120         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7121         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
7122         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7123         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7124         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
7125         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7126         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7127         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7128         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7129         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
7130         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7131         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7132         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
7133         with documentation.
7134         * include/olectl.h: Do #include <ocidl.h>.
7135         * include/ocidl.h: Don't #include <olectl.h>.
7136
7137 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7138
7139         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
7140         Change guards to use numeric constants, throughout.
7141
7142 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
7143
7144         * include/w32api.h: Increment version to 2.5.
7145         * Makefile.in: Ditto.
7146
7147 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
7148
7149         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
7150         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
7151
7152 2003-09-08  Filip Navara  <xnavara@volny.cz>
7153
7154         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
7155         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
7156
7157 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
7158
7159         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
7160         * include/winbase.h (_NT5, etc): Ditto.
7161
7162 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7163
7164         * lib/snmpapi.def (LIBRARY) Add library name.
7165         Remove '\r', throughout.
7166         * lib/wsnmp32.def: Remove '\r', throughout.
7167         * lib/igmpagnt.def: Likewise.
7168
7169 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7170
7171         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7172         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7173         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7174         (MWMO_*): Add flags.
7175
7176         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7177         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7178         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7179         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7180
7181 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7182
7183         * lib/test.c: Add vfw.h to includes.
7184         * include/mmsystem.h: Add #ifndef guard to definition of
7185         mmioFOURCC macro.
7186         * include/vfw.h: Protect __OBJC__ from COM declarations.
7187
7188 2003-08-26  Filip Navara  <xnavara@volny.cz>
7189
7190         * include/vfw.h: New file.
7191
7192 2003-08-26  Filip Navara  <xnavara@volny.cz>
7193
7194         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7195         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7196         PIO_COMPLETION_ROUTINE.
7197
7198 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7199
7200         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7201         includes.
7202
7203 2003-08-26  Filip Navara  <xnavara@volny.cz>
7204
7205         * include/snmp.h: New file.
7206         * include/winsnmp.h: New file.
7207         * include/mgmtapi.h: New file.
7208         * lib/snmpapi.def: New file.
7209         * lib/wsnmp32.def: New file.
7210         * lib/igmpagnt.def: New file.
7211         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7212         (SnmpMgrGetTrapEx): Ditto.
7213         (SnmpMgrMIB2Disk): Remove.
7214         (dbginit): Remove.
7215
7216 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7217
7218         * include/ddk/ntifs.h: Change all C++ style comments to C.
7219         * include/GL/gl.h: Ditto.
7220
7221 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7222
7223         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7224         (SFGAO_HIDDEN): Add define.
7225
7226 2003-08-25  Filip Navara  <xnavara@volny.cz>
7227
7228         * include/commctrl.h (ILCF_*): Add defines.
7229         (ILD_*): Ditto.
7230         (HDS_*): Ditto.
7231         (IPN_FIRST, IPN_LAST): Cast to UINT.
7232         (SBN_FIRST, SBN_LAST): Add defines.
7233         (PGN_*): Ditto.
7234         (HDF_JUSTIFYMASK): Fix typo.
7235         (HDM_*): Add defines.
7236         (HICF_*): Ditto.
7237         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7238         (TBSTATE_MARKED): Add define.
7239         (TBSTYLE_EX_*): Add defines.
7240         (TBCDRF_*): Ditto.
7241         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7242         (TB_*): Ditto.
7243         (TBN_*): Ditto.
7244         (TBNRF_*): Ditto.
7245         (TTF_*): Ditto.
7246         (TBCD_*): Ditto.
7247         (TBDDRET_*): Ditto.
7248         (TBIMHT_*): Ditto.
7249         (TTM_*): Ditto.
7250         (UDM_*): Ditto.
7251         (TBIF_BYINDEX): Define as hex constant.
7252         (CDIS_*): Add defines.
7253         (CDDS_SUBITEM): Add define.
7254         (LVIF_*): Add defines.
7255         (LVM_*): Ditto.
7256         (LVGIT_UNFOLDED): Add define.
7257         (TVM_): Add defines.
7258         (TVE_EXPANDPARTIAL): Add define.
7259         (TVGN_LASTVISIBLE): Ditto.
7260         (TVN_*): Add defines.
7261         (TVNRET_*): Add defines.
7262         (TCIF_STATE): Add define.
7263         (NM_TOOLTIPSCREATED): Ditto.
7264         (CCM_*): Add defines.
7265         (INFOTIPSIZE): Add numeric value.
7266         (ODT_LISTVIEW): Ditto.
7267         (MCM_GETMAXTODAYWIDTH): Ditto.
7268         (MCHT_*): Add defines.
7269         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7270         (PGF_*): Add defines.
7271         (PGM_*): Ditto.
7272         (TBINSERTMARK): Add structure.
7273         (LPIMAGEINFO) Add typedef.
7274         (LPHDHITTESTINFO): Ditto.
7275         (NMLVGETINFOTIP[AW]: Add structures.
7276         (NMTBCUSTOMDRAW): Add structure.
7277         (TTTOOLINFOA_V*_SIZE): Add macros.
7278         (TTTOOLINFOW_V1_SIZE): Ditto.
7279         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7280         (LVITEM[AW]: Ditto.
7281         (TCITEM[AW]):Ditto.
7282         (CCSIZEOF_STRUCT): Correct macro definition.
7283         (ListView_*): Add new macros.
7284         (HIMAGELIST): Correct typedef.
7285         (HTREEITEM): Ditto.
7286
7287 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7288
7289         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7290         TCHITTESTINFO for backward compatibility.
7291         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7292         compatibility.
7293
7294 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7295
7296         * include/objidl.h (COBJMACROS): Define macros only
7297         if using C interace.
7298         * include/unknwn.h: Ditto.
7299         * include/comcat.h: Ditto.
7300
7301 2003-08-24  Filip Navara  <xnavara@volny.cz>
7302
7303         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7304         PSH_NOCONTEXTHELP): Define.
7305         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7306         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7307         (LPDLGTEMPLATE[AW]): Add typedefs.
7308
7309 2003-08-22  Filip Navara  <xnavara@volny.cz>
7310
7311         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7312         Add prototypes.
7313         BuildImpersonateTrustee[AW]): Add prototypes.
7314         GetMultipleTrustee[AW]): Add prototypes.
7315         GetMultipleTrusteeOperation[AW]): Add prototypes.
7316
7317 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7318
7319         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7320
7321 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7322
7323         * include/shlobj.h (IPersistFolder::GetClassID):
7324         Correct declaration.
7325         (CMF_*) Add missing defines.
7326
7327 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7328
7329         * include/winuser.h (DC_BUTTONS): Add define.
7330
7331 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7332
7333         * include/winuser.h (DC_GRADIENT): Add define.
7334
7335 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7336
7337         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7338         older TBSTYLE_* constants.
7339
7340 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7341
7342         * include/commctrl.h (TB_*) Group defines together.
7343
7344 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7345
7346         * include/winuser.h (ICON_SMALL2): Define.
7347         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7348         Define.
7349         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7350         (IDragSourceHelper) Define interface.
7351         (IDropTargetHelper): Likewise.
7352         (IExtractIcon): Unicode it.
7353         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7354         OnStateChange and IncludeObject methods.
7355
7356 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7357
7358         * include/commctrl.h (TreeView_GetScrollTime,
7359         TreeView_SetScrollTime): Define macros.
7360         * include/winuser.h (GetShellWindow): Add prototype.
7361         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7362
7363 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7364
7365         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7366         IID_IDragSourceHelper): Declare.
7367         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7368         IID_IDragSourceHelper): Define.
7369
7370 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7371
7372         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7373         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7374         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7375
7376 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7377
7378         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7379         CGID_ShellServiceObject): Remove definitions.
7380         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7381
7382 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7383
7384         * include/shlobj.h (SHELLSTATE): Add structure.
7385         (SHGetSetSettings): Add prototype.
7386         (SHGetSettings): Add prototype.
7387         * lib/shell32.def (SHGetSetSettings): Add stub.
7388
7389 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7390
7391         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7392         (Header_OrderToIndex): Add macro.
7393         (Header_GetOrderArray): Add macro.
7394
7395         * include/commdlg.h (FR_MATCHALEFHAMZA,
7396         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7397
7398 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7399
7400         * include/commctrl.h (TVM_GETSCROLLTIME,
7401         TVM_SETSCROLLTIME): Add defines.
7402
7403 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7404
7405         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7406         (SHGetInstanceExplorer): Correct return type.
7407         (SHGetFolderPath[AW]): Likewise.
7408         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7409         for report.
7410
7411 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7412
7413         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7414
7415 2003-08-01  Filip Navara  <xnavara@volny.cz>
7416
7417         * include/winldap.h: New file.
7418         * include/ntldap.h: New file.
7419         * include/winber.h: New file.
7420         * lib/winldap32.def: New file.
7421
7422 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7423
7424         * include/ddk/atm.h: Remove stray '.';
7425
7426 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7427
7428         * include/ddk/winddk.h: Remove trailing ';' from macros,
7429         throughout. Add () around defines with cast returns, throughout.
7430
7431 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7432
7433         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7434         (SFGAOF, SHGDNF): Add typedef's.
7435         (SHCONTF): Extend enum.
7436
7437 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7438
7439         * include/shellapi.h: Include all structs within pshpack2.h/
7440         poppack.h block.
7441
7442 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7443
7444         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7445         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7446         _WIN32_WINDOWS, not WINVER.
7447         (AllowSetForegroundWindow,LockSetForegroundWindow,
7448         SetLayeredWindowAttributes): Likewise.
7449         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7450         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7451         Add stubs.
7452
7453 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7454
7455         * include/objidl.h (IMalloc): Fix typo.
7456
7457 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7458
7459         * include/dkk/ntifs.h: Fix typo in guard for
7460         #pragma GCC system_header.
7461
7462 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7463
7464         * include/objidl.h (PropVariant): Add CHAR cVal field
7465         to union.
7466         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7467         FMTID_UserDefinedProperties): Declare.
7468
7469 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7470
7471         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7472
7473 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7474
7475         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7476         DUPLICATE_SAME_ACCESS): Remove defines.
7477         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7478         ddk/ntapi.h defines.
7479         (SEM_*) : Likewise.
7480         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7481         ddk/ntifs.h defines.
7482         (FILE_*): Likewise.
7483         (MEM_IMAGE, SEC_*): Likewise.
7484         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7485         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7486         (TOKEN_*): Sync with ddk/ntifs.h defines.
7487         * include/ddk/ntapi.h: Add comments noting definitions in
7488         winbase.h.
7489         * include/ddk/ntifs.h: Add comments noting definitions in
7490         winnt.h.
7491         * include/ddk/winddk.h: Add comments noting definitions in
7492         winnt.h.
7493
7494 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7495
7496         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7497         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7498
7499 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7500
7501         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7502
7503 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7504
7505         Clean up warnings in ddk.
7506
7507         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7508         conditional on  __cplusplus.
7509         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7510         defines, throughout.
7511         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7512         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7513         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7514         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7515         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7516         defines, throughout.
7517         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7518         defines, throughout. Remove trailing semicolon from *_S 'structure'
7519         macro expansion, throughout. Remove trailing semicolon from
7520         DECLARE_UNKNOWN_STRUCT macro expansion.
7521         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7522         _ANONYMOUS_UNION.
7523         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7524         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7525         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7526         Add _ANONYMOUS_UNION.
7527         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7528         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7529         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7530         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7531         match proto in ntapi.h.
7532         (ZwSetInformationObject): Likewise.
7533         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7534         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7535         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7536         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7537         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7538         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7539         last comma.
7540         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7541         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7542         trailing semicolon when expanding macro.
7543         (GENERAL_LOOKASIDE_S): Likewise.
7544         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7545         Change inline to __inline, throughout.
7546         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7547
7548 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7549
7550         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7551         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7552         KPRIORITY.
7553         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7554         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7555         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7556         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7557         to anonymous structs.
7558
7559 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7560
7561         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7562
7563         * include/winuser.h (mouse_event): Correct type of fifth param,
7564         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7565
7566 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7567
7568         * include/winnt.h (HANDLE): Define based on STRICT filter.
7569         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7570         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7571
7572 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7573
7574         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7575         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7576         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7577         for report.
7578
7579 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7580
7581         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7582
7583 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7584
7585         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7586         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7587         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7588         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7589         (TPM_RECURSE): Add guard for Win98/Win2K.
7590         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7591
7592 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7593
7594         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7595         avoid user namespace conflicts.
7596
7597 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7598
7599         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7600         _IE3, _IE4, _IE5, _IE6): Add definitions.
7601         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7602         >= Win98.
7603         Change existing guards to use the above macro names as appropriate.
7604         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7605         Note: Also added to mingw/include/_mingw.h.
7606
7607 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7608
7609         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7610         PathFindSuffixArrayA, PathFindSuffixArrayW,
7611         PathFindExtensionA, PathFindExtensionW, StrStrW
7612         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7613         explicit type.
7614
7615 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7616
7617         * include/richedit.h (PARAFORMAT2): Add definition.
7618         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7619         missing constants.
7620
7621 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7622
7623         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7624         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7625         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7626         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7627
7628 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7629
7630         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7631         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7632         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7633         that these are obsolete no-ops.
7634
7635 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7636
7637         * include/winbase.h (GetProcessWorkingSetSize,
7638         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7639         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7640         Correct prototypes.
7641
7642 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7643
7644         * include/winuser.h (TPM_RECURSE): Add define.
7645
7646 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7647
7648         * lib/test.c: #include <powrprof.h>.
7649
7650 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7651
7652         * include/powerprof.h: New file.
7653         * lib/powerprof.def: New file.
7654
7655 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7656
7657         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7658         protection.
7659
7660 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7661
7662         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7663         hInstance members to HINSTANCE.
7664         Thanks to: Brenden T. <brenden@rcsis.com>
7665
7666 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7667
7668         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7669         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7670
7671 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7672
7673         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7674         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7675         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7676         Remove.
7677         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7678
7679 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7680
7681         * lib/oleacc.def: New file.
7682         * include/winable.h: New file.
7683         * include/oleacc.h: Add extern "C" guard.
7684         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7685         (AccessibleChildren, AccessibleObjectFromEvent,
7686         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7687         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7688         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7689         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7690         * include/winuser.h (NotifyWinEvent): Add prototype.
7691         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7692         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7693         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7694         OBJID_SOUND): Move from here to...
7695         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7696         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7697         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7698         OBJID_SOUND): Here, as per documentation.
7699         * lib/test.c: Include winable.h.
7700         * lib/user32.def (NotifyWinEvent): Add missing export.
7701
7702 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7703
7704         * include/winbase.h (HeapCompact): Correct prototype.
7705         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7706         SLIST_HEADER): Add.
7707
7708 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7709
7710         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7711
7712 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7713
7714         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7715
7716 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7717
7718         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7719         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7720
7721 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7722
7723         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7724         lpGlyphs field to LPWSTR.
7725
7726 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7727
7728         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7729         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7730         (PP_*): Add defines.
7731         (CryptContextAddRef): Add prototype.
7732         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7733
7734 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7735
7736         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7737
7738 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7739
7740         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7741         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7742         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7743         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7744         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7745         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7746         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7747         readability.
7748         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7749         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7750
7751 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7752
7753         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7754         Unname anonymous unions if NONAMELESSUNION not defined.
7755
7756 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7757
7758         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7759
7760 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7761
7762         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7763         anonymous unions as GCC extension.
7764
7765 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7766
7767         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7768         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7769         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7770         commented out).
7771         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7772
7773 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7774
7775         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7776         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7777         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7778
7779 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7780
7781         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7782         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7783         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7784         IProvideClassInfo2,IConnectionPointContainer,
7785         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7786         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7787         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7788         IPicture,IPictureDisp): Move from here to...
7789         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7790         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7791         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7792         IProvideClassInfo2,IConnectionPointContainer,
7793         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7794         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7795         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7796         IPicture,IPictureDisp): Here, as per documentation.
7797
7798 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7799
7800         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7801         * include/winbase.h (TerminateJobObject,
7802         AssignProcessToJobObject): Likewise.
7803         * include/servprov.h: New header.
7804         * lib/test.c: Include servprov.h.
7805
7806 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7807
7808         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7809         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7810         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7811         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7812         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7813         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7814
7815 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7816
7817         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7818         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7819         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7820
7821 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7822
7823         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7824         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7825         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7826         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7827         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7828         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7829         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7830
7831 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7832
7833         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7834
7835 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7836
7837         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7838         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7839
7840 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7841
7842         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7843         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7844         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7845
7846 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7847
7848         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7849
7850 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7851
7852         * include/oaidl.h (ITypeMarshal): Add interface.
7853
7854 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7855
7856         * include/winioctl.h: Clean up formatting.
7857         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7858         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7859         (DISK_CACHE_INFORMATION): Likewise.
7860         (DISK_DETECTION_INFO): Likewise.
7861         (DISK_PARTITION_INFO): Likewise.
7862         (PARTITION_INFORMATION_EX): Likewise.
7863         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7864
7865 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7866
7867         * include/winbase.h (DeleteVolumeMountPoint[AW],
7868         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7869         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7870         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7871         SetVolumeMountPoint[AW]): Add prototypes.
7872         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7873         IOCTL_DISK_SET_PARTITION_INFO_EX,
7874         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7875         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7876         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7877         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7878         IOCTL_DISK_GET_CACHE_INFORMATION,
7879         IOCTL_DISK_SET_CACHE_INFORMATION,
7880         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7881         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7882         FSCTL_MOVE_FILE): Define.
7883         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7884         DISK_CACHE_INFORMATION,
7885         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7886         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7887         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7888         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7889         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7890         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7891         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7892         MOVE_FILE_DATA,
7893         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7894         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7895         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7896         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7897         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7898         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7899         F3_240M_512, and F3_32M_512.
7900         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7901         stubs.
7902
7903 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7904
7905         * include/wingdi.h (DM_SPECVERSION): Define.
7906         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7907         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7908         appropriate _WIN32_WINNT values.
7909
7910 2003-04-15  Chris January  <chris@atomice.net>
7911
7912         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7913         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7914
7915 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7916
7917         * include/winuser.h (VK_*): Add missing defines.
7918
7919 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7920
7921         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7922         documented typedefs for struct _NM_UPDOWN.
7923         Add defines for backward comapatibility.
7924         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7925         * include/wininet.h (IRF_*): Add missing defines.
7926
7927 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7928
7929         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7930
7931 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7932
7933         * include/sspi.h: Add comment for FreeCredentialsHandle.
7934
7935 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7936
7937         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7938
7939 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7940
7941         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7942
7943 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7944
7945         * lib/uuid.c (IID_IHTML*): Move definitions to...
7946         * lib/mshtml-uuid.c: New file.
7947         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7948
7949 2003-03-30  Michael Sazonov  <traip@comset.net>
7950
7951         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7952         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7953         IHTMLImgElement): Add interface definitions.
7954
7955 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7956
7957         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7958         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7959         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7960         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7961         RC_INVOKED guard.
7962         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7963         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7964
7965 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7966
7967         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7968
7969 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7970
7971         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7972         TranslateName[AW]): Add prototypes.
7973         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7974         TranslateName[AW]): Add stubs.
7975         * lib/test.c: Include secext.h.
7976
7977 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7978
7979         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7980         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7981         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7982         _SpinLock.
7983
7984 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7985
7986         * include/w32api.h: Increment version to 2.4.
7987         * Makefile.in: Ditto.
7988
7989 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7990
7991         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7992         Move structure from here...
7993         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7994
7995         * include/ddk/ntapi.h (JOBOBJECT_*):
7996         Remove structures and enums definitions.
7997         (JOB_OBJECT*): Move defines from here...
7998         * include/winnt.h (JOB_OBJECT* ): To here.
7999
8000         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
8001         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8002         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8003         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8004         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8005         SYSTEM_POWER_CAPABILITIES): Move enums, structures
8006         and associated defines from here ...
8007         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
8008         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8009         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8010         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8011         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8012         SYSTEM_POWER_CAPABILITIES):To here.
8013
8014         * include/ddk/winddk.h (DEVICE_POWER_STATE,
8015         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
8016         from here...
8017         * include/winnt.h (DEVICE_POWER_STATE,
8018         SYSTEM_POWER_STATE, POWER_ACTION): To here.
8019
8020 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
8021
8022         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
8023         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
8024         (NdisUpdateSharedMemory): Likewise.
8025         (NdisMFreeSharedMemory: Likewise.
8026         (NdisMMapIoSpace: Likewise.
8027
8028 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
8029
8030         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
8031         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
8032         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
8033
8034 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
8035
8036         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
8037         (EnumResourceNames[AW]): Ditto.
8038         (EnumResourceTypes[AW]): Ditto.
8039         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
8040
8041 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
8042
8043         * include/winuser.h (SendInput): Add prototype.
8044         * lib/user32.def (SendInput): Add stub.
8045
8046 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
8047
8048         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
8049         (FSCTL_DELETE_REPARSE_POINT): Likewise.
8050
8051 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
8052
8053         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
8054         (JOBOBJECT_*): Define corresponding structures.
8055
8056 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
8057
8058         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
8059         typedef.
8060
8061 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
8062
8063         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
8064         (Process32{First,Next}{,W}): Ditto.
8065         (Thread32{First,Next}): Ditto.
8066         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
8067
8068 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
8069
8070         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
8071         Thanks to Jim Barton <jmbarton@users.sf.net>.
8072
8073 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
8074
8075         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
8076         member SectionAlignment.
8077
8078 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
8079
8080         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
8081         warnings.
8082         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
8083         * Makefile.in (bindist): Correct process.
8084         * lib/Makefile.in (install): Ditto.
8085         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
8086
8087 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
8088
8089         * include/rasdlg.h: New file.
8090         * lib/rasdlg.def: New file.
8091         * lib/test.c: Include rasdlg.h.
8092
8093 2003-03-06  Christopher January  <chris@atomice.net>
8094
8095         * include/winbase.h (FindFirstVolume): Add declaration.
8096         (FindNextVolume): Add declaration.
8097         (FindVolumeClose): Add declaration.
8098         (GetSystemTimes): Add declaration.
8099         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
8100
8101 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
8102
8103         *lib/kernel32.def (GetSystemTimes): Add stub.
8104
8105 2003-03-04  Heiko Gerdau  <hg@technosis.de>
8106
8107         * oleidl.h (IOleObject): Correct GetUserType prototype.
8108         (IViewObject2): Correct GetExtent prototype.
8109         * olectl.h (DISPIP_): Add new defines
8110         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
8111
8112 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8113
8114         * include/olectl.h (OleLoadPictureEx) Add prototype.
8115         (OleLoadPictureFile): Ditto.
8116         (OleLoadPictureFileEx): Ditto.
8117         (OleLoadPicturePath): Ditto.
8118         (OleSavePictureFile): Ditto.
8119
8120 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8121
8122         * include/objbase.h (CoAddRefServerProcess): Add prototype.
8123         (CoAddReleaseServerProcess): Ditto.
8124         (CoResumeClassObjects): Ditto.
8125         (CoSuspendClassObjects): Ditto.
8126         * include/oleauto.h (V_I1): Define.
8127         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
8128
8129 2003-03-01  Heiko Gerdau  <hg@technosis.de>
8130
8131         * include/oleidl.h (USERCLASSTYPE): Add enum.
8132         * include/ocidl.h (IObjectWithSite): Add interface.
8133
8134 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
8135
8136         Fixup UNICODE thinko in 2003-02-22 patch.
8137         * include/wingdi.h (AddFontMemResourceEx): Add.
8138         (RemoveFontMemResourceEx): Ditto.
8139         (AddFontMemResourceEx[AW]): Remove.
8140         (RemoveFontMemResourceEx[AW]): Ditto
8141         * lib/gdi32.def: (AddFontResourceEx): Add.
8142         (RemoveFontMemResourceEx): Ditto.
8143         (AddFontMemResourceEx[AW]): Remove.
8144         (RemoveFontResourceEx[AW]): Ditto.
8145
8146 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
8147
8148         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
8149         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
8150
8151 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
8152
8153         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
8154         (RemoveFontMemResourceEx[AW]): Ditto
8155         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
8156         (RemoveFontMemResourceEx[AW]): Ditto.
8157
8158 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
8159
8160         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
8161         (NtCurrentTeb): Remove.
8162
8163 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8164
8165         * include/wsahelp.h: Remove ';' after closing
8166         #ifdef __cplusplus brace.
8167         * include/ws2spi.h: Likewise.
8168
8169 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8170
8171         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8172         (GlobalMemoryStatusEx): Add prototype.
8173         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8174
8175 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8176
8177         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8178
8179 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8180
8181         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8182         (RemoveFontResourceEx[AW]): Ditto
8183         (FR_PRIVATE): Define.
8184         (FR_NOT_ENUM): Define.
8185         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8186         (RemoveFontResourceEx[AW]): Ditto.
8187
8188 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8189
8190         * include/w32api.h: Increment version to 2.3.
8191         * Makefile.in: Ditto.
8192
8193 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8194
8195         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8196         (Ke386QueryToAccessMap): Ditto.
8197         (Ke386SetIoAccessMap): Ditto.
8198         Thanks to Marcel Telka <telka@users.sf.net>
8199         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8200         * include/security.h: Include secext.h.
8201         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8202         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8203         * include/GL/gl.h: Remove include of glext.h.
8204         Thanks to Greg Couch <gregcouch@users.sf.net>
8205
8206 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8207
8208         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8209         using GUID_DEFINED instead.
8210         * include/sqltypes.h: Ditto.
8211         * include/winnt.h: Ditto.
8212         * include/ddk/scsiwmi.h: Ditto.
8213
8214 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8215
8216         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8217         prototypes.
8218         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8219
8220 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8221
8222         * include/commctrl.h (TCM_*): Add missing defines.
8223
8224 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8225             Danny Smith  <dannysmith@users.sourceforge.net>
8226
8227         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8228         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8229         for (_WIN32_IE >= 0x0400).
8230         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8231         fields for (_WIN32_IE >= 0x0400).
8232
8233 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8234
8235         * include/winbase.h (CreateFiber): Change first parameter
8236         to SIZE_T.
8237         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8238         if (_WIN32_WINNT >= 0x0500).
8239
8240 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8241
8242         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8243         Add missing typedefs.
8244         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8245         prototypes.
8246         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8247
8248 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8249
8250         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8251         define.
8252         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8253
8254 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8255
8256         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8257         define.
8258         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8259         definition.
8260         (WAIT_FAILED): Cast to DWORD.
8261         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8262         definition.
8263
8264 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8265
8266         * include/winerror.h: Protect against multiple
8267         definition of WSA* error codes.
8268         * include/winsock.h: Likewise.
8269         * include/winsock2.h: Likewise.
8270
8271 2003-01-27  Bang Dong-Heui
8272             Bang Jun-Young  <junyoung@netbsd.org>
8273
8274         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8275         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8276         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8277
8278
8279 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8280
8281         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8282         (WINVER >= 0x501).
8283
8284 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8285
8286         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8287         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8288         fields for (WINVER >= 0x501).
8289
8290 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8291
8292         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8293         Add stubs.
8294         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8295         options.
8296
8297 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8298
8299         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8300         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8301
8302 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8303
8304         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8305         SE_REGISTRY_WOW64_32KEY.
8306         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8307
8308 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8309
8310         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8311         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8312         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8313
8314 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8315
8316         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8317
8318 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8319
8320         * lib/dxguid.c: Don't #include <objbase.h>.
8321         * include/unknwn.h: Partially revert change of 2002-12-26.
8322         Don't include <ole2.h>.
8323
8324 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8325
8326         * lib/dinput.c: Don't #include <objbase.h>.
8327
8328 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8329
8330         * include/windows.h (ole2.h):Do #include for
8331         __WATCOMC__.
8332
8333 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8334
8335         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8336         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8337         definition.
8338         (WHEEL_PAGESCROLL): Likewise.
8339         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8340
8341 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8342
8343         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8344         (WHEEL_PAGESCROLL): Add define.
8345
8346 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8347
8348         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8349         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8350         compatability. Add RECT field. Add UNICODE mappings for new
8351         names.
8352         (tagNMREBARCHEVRON): Add struct and typedefs for
8353         _WIN32_IE >= 0x0500.
8354
8355 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8356
8357         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8358         (LVHITTESTINFO): Likewise.
8359
8360         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8361         (GRADIENT_RECT): Likewise.
8362
8363 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8364
8365         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8366         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8367         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8368         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8369         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8370         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8371         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8372         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8373         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8374         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8375         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8376         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8377         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8378         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8379         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8380         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8381         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8382         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8383         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8384         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8385         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8386         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8387         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8388         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8389         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8390         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8391         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8392         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8393         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8394         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8395         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8396         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8397         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8398         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8399         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8400         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8401         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8402         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8403         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8404         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8405         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8406         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8407         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8408         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8409         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8410         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8411         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8412         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8413         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8414         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8415         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8416         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8417         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8418         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8419         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8420         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8421         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8422         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8423         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8424         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8425         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8426         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8427         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8428         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8429         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8430         Add missing error codes.
8431
8432 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8433
8434         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8435         asm code.
8436         (GetFiberData): Likewise.
8437
8438 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8439
8440         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8441         asm code.
8442         (GetFiberData): Likewise.
8443
8444 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8445
8446         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8447         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8448         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8449         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8450         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8451         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8452         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8453         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8454         error codes.
8455         Re-sort codes.
8456
8457 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8458
8459         * include/winspool.h (PRINTER_INFO_6): Add.
8460         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8461
8462 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8463
8464         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8465
8466         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8467         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8468         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8469         Add stubs.
8470
8471 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8472
8473         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8474         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8475
8476 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8477
8478         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8479
8480 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8481
8482         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8483         VIETNAMESE_CHARSET): Remove duplicate defines.
8484         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8485
8486 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8487
8488         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8489         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8490
8491 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8492
8493         * include/unknwn.h: Include windows.h and ole2.h before header
8494         guard to avoid circular inclusion of COM headers.
8495
8496 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8497
8498         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8499         ReuseDDElParam): Use __WIN64 compatible typedefs.
8500
8501 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8502
8503         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8504         lpInheritProperty member const.
8505         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8506         const.
8507
8508 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8509
8510         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8511         COM_NO_WINDOWS_H.
8512         * include/unknwn.h: Ditto.
8513
8514 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8515
8516         * include/imm.h (ImmGetCompositionFont[AW],
8517         ImmSetCompositionFont[AW]): Add NOGDI guard.
8518
8519 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8520
8521         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8522         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8523         before using.
8524         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8525         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8526         definition.
8527         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8528         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8529         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8530         definition.
8531         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8532         (LPCGUID): Likewise.
8533         * include/ddk/tdi.h: Close "Listen flags" comment.
8534         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8535         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8536         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8537         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8538         * include/ddk/win2k.h: Likewise.
8539         * include/ddk/winddi.h: Likewise.
8540         * include/ddk/winddk.h: Likewise.
8541         * include/ddk/winnt4.h: Likewise.
8542         * include/ddk/ws2san.h: Likewise.
8543         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8544         * include/ddk/video.h: Don't process rest of file ifdef
8545         __WINDDI_H.
8546         * include/ddk/winddi.h: Don't process rest of file ifdef
8547         __VIDEO_H.
8548         * include/ddk/usb.h: Don't process rest of file ifdef
8549         __USBDI_H.
8550         * include/ddk/usbdi.h: Don't process rest of file ifdef
8551         __USB_H.
8552         * include/ddk/usbcamdi.h: Don't process rest of file if
8553         !defined(__USB_H) && !defined(__USBDI_H)
8554
8555 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8556
8557         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8558         prototypes.
8559         * include/winuser.h (GetAncestor) Add prototype.
8560         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8561         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8562         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8563         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8564         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8565         defines.
8566         * lib/user32.def (GetAncestor@8): Add stub.
8567
8568 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8569
8570         * include/windows.h: Guard inclusion of wingdi.h,
8571         commdlg.h, winspool.h, ole2.h with NOGDI.
8572         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8573         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8574         Guard with NOGDI.
8575
8576 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8577
8578         * include/oleacc.h (SELFLAG_*): Change to enum.
8579
8580 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8581
8582         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8583         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8584
8585 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8586
8587         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8588         to UINT.
8589         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8590
8591 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8592
8593         * include/winuser.h (AllowSetForegroundWindow,
8594         LockSetForegroundWindow): Add prototypes.
8595         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8596         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8597         * lib/winuser.def (AllowSetForegroundWindow,
8598         LockSetForegroundWindow): Add stubs.
8599
8600 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8601
8602         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8603         UNICODE mappings.
8604         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8605         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8606         compatability. Add lParam field. Add UNICODE mappings for new
8607         names.
8608
8609 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8610
8611         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8612         Wrap with pshpack2.h/poppack.h to correct alignment.
8613
8614 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8615
8616         * include/commctrl.h (LVBKIF_*): Add defines.
8617         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8618         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8619         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8620         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8621         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8622         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8623         (ListView_GetBkImage): Add define.
8624         (ListView_SetBkImage): Add define.
8625         (LVBKIMAGE): Add structures and typedefs.
8626
8627 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8628
8629         * include/w32api.h: Increment to version 2.2
8630         * Makefile.in: Ditto.
8631
8632 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8633
8634         * lib/Makefile.in (dist, install): Correct the install destinations.
8635         * lib/ddk/Makefile.in (dist, install): Ditto.
8636
8637 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8638
8639         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8640         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8641         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8642         in definitions.
8643         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8644         IID_IOleControlSite89): Remove.
8645
8646 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8647
8648         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8649         (IID_IStdMarshalInfo): Ditto.
8650
8651 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8652
8653         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8654         (IID_IPersistStorage): Ditto.
8655
8656 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8657
8658         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8659         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8660         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8661         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8662         Correct definitions.
8663
8664 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8665
8666         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8667         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8668         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8669         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8670         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8671         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8672         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8673         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8674         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8675         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8676         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8677         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8678         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8679         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8680         xfilter.h): Change comment to refer w32api package, not MinGW.
8681
8682 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8683
8684         * include/ddk/ntddk.h: Include winnt.h as system header.
8685
8686 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8687
8688         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8689         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8690         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8691         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8692         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8693         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8694         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8695         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8696         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8697         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8698         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8699         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8700         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8701         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8702         xfilter.h): Fix typo in disclaimer comment.
8703
8704 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8705
8706         * include/exdisp.h: Include oaidl.h as system header.
8707
8708 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8709
8710         * include/w32api.h (__W32API_VERSION): Fix.
8711
8712 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8713
8714         * lib/uuid.c (IID_ICatInformation): Correct definition.
8715
8716 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8717
8718         * include/oleauto.h (DeregisterTypeLib): Remove.
8719         (UnRegisterTypeLib): Add prototype.
8720
8721 2002-11-07  Christopher January  <chris@atomice.net>
8722
8723         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8724
8725 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8726
8727         * include/winnt.h (VerSetConditionMask): Add prototype.
8728         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8729
8730 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8731
8732         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8733         definitions and ANSI/UNICODE mappings.
8734         Cleanup whitespace.
8735
8736 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8737
8738         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8739         * configure.in: Ditto.
8740         * lib/Makefile.in: Ditto.
8741         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8742         autoconf-2.53.
8743         * configure: Regenerate.
8744
8745 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8746
8747         * include/windows.h: Don't include basetyps.h.
8748         * include/objfwd.h: Do include basetyps.h.
8749
8750 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8751
8752         * include/objbase.h: Include rpc.h and rpcndr.h
8753         before header guard.
8754
8755 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8756
8757         * include/olectl.h (PROPPAGEINFO): Change type of
8758         field cb to ULONG.
8759
8760 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8761
8762         * lib/ntdll.def (RtlAcquireResourceExclusive,
8763         RtlAcquireResourceShared, RtlDeleteResource,
8764         RtlInitializeResource, RtlReleaseResource,
8765         RtlTimeToSecondsSince1970) : Added missing exports.
8766
8767 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8768
8769         * include/oleacc.h: New file.
8770         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8771         (OBJID_*) Add defines.
8772         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8773         * lib/test.c: Include oleacc.h.
8774
8775 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8776
8777         * include/ddk: New subdir.
8778         * lib/ddk: Ditto.
8779         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8780         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8781         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8782         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8783         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8784         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8785         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8786         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8787         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8788         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8789         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8790         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8791         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8792         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8793         xfilter.h): New files.
8794         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8795         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8796         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8797         win32k.def): Ditto.
8798
8799 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8800
8801         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8802         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8803         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8804         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8805         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8806         RtlAddAccessAllowedAce, RtlCreateAcl,
8807         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8808         RtlGetAce, RtlGetControlSecurityDescriptor,
8809         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8810         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8811         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8812         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8813         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8814         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8815         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8816         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8817         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8818         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8819         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8820         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8821         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8822
8823 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8824
8825         *include/windef.h (WPARAM): Update typedef.
8826         (LPARAM): Ditto.
8827         (LRESULT): Ditto.
8828
8829 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8830
8831         * include/shlobj.h (CSIDL_*): Add defines.
8832
8833 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8834
8835         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8836         has been included first.
8837
8838 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8839
8840         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8841         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8842         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8843
8844 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8845
8846         * include/winuser.h (DS_SHELLFONT): Define.
8847
8848 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8849
8850         * include/winnt.h (VER_SUITE_BLADE): Define.
8851
8852 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8853
8854         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8855         Add _WIN32_IE guard. Correct prototype for wide version.
8856         (SHGetFolderPath): Add comment on shfolder.dll.
8857         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8858         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8859
8860 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8861
8862         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8863         * lib/shfolder.def: New file.
8864
8865 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8866
8867         * include/winsock.h (timeval): Guard struct and associated
8868         macros with _TIMEVAL_DEFINED.
8869         * include/winsock2.h (timeval): Likewise.
8870
8871 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8872
8873         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8874         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8875         SHCreateShellItem,SHEmptyRecycleBin[AW],
8876         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8877         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8878         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8879         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8880         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8881         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8882         SHLoadNonloadedIconOverlayIdentifiers,
8883         SHOpenFolderAndSelectItems,SHParseDisplayName,
8884         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8885         SHSetLocalizedName,SHSetUnreadMailCountW,
8886         SHUpdateRecycleBinIcon: Add missing stubs.
8887
8888 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8889
8890         * include/windef.h (WINVER): Add documentation.
8891         (_WIN32_WINNT): Ditto.
8892         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8893
8894 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8895
8896         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8897
8898 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8899
8900         * include/winbase.h (AllocateUserPhysicalPages,
8901         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8902         FreeUserPhysicalPages): Add prototypes.
8903         * lib/kernel32.def: Add function stubs for above.
8904
8905 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8906
8907         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8908         Add WINVER guards for dialog box command id defines.
8909
8910 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8911
8912         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8913
8914 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8915
8916         * include/wincon.h: Define GetConsoleWindow(void).
8917
8918 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8919
8920         * include/w32api.h: Increment version to 2.1.
8921         * Makefile.in: Ditto.
8922
8923 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8924
8925         * include/winsock2.h (SOCKET_ADDRESS): Define if
8926         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8927         (CSADDR_INFO): Ditto.
8928         (nspapi.h) : Don't include. Removed FIXME comment.
8929         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8930         __CSADDR_T_DEFINED is not defined.
8931         (CSADDR_INFO): Ditto.
8932         (BLOB): Add structure and typedef if not already defined.
8933         (NS_*): Add defines.
8934         (SERVICE_*): Ditto.
8935         (SERVICE_ADDRESS): Add structure and typedefs.
8936         (SERVICE_ADDRESSES): Ditto.
8937         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8938         (LPSERVICE_ASYNC_INFO): Add typedef.
8939         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8940         mappings.
8941         * include/wsipx.h: New file.
8942         * include/svcguid.h: New file.
8943         * lib/test.c: Include wspix.h and svcguid.h.
8944
8945 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8946
8947         * include/wsahelp.h: New file.
8948         * lib/test.c: Include wsahelp.h.
8949
8950 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8951
8952         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8953         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8954
8955 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8956
8957         * include/ws2spi.h: Modify comment about being part of
8958         mingw32 package.
8959         (winsock2.h): Change "" to <>.
8960
8961 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8962
8963         * include/ws2spi.h: New file.
8964         * lib/test.c: Include ws2spi.h.
8965
8966 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8967
8968         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8969         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8970         functions.
8971
8972 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8973
8974         * include/winuser.h (CURSOR_SHOWING) Add define.
8975         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8976
8977 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8978
8979         * include/winerror.h: Cast OLE error codes to HRESULT.
8980         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8981
8982 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8983
8984         * include/wincrypt.h (ALG_*): Add defines.
8985         (CALG_*): Ditto.
8986         (CRYPT_*): Ditto.
8987         (PP_*): Ditto.
8988         (PROV_*): Ditto.
8989         (PRIVATEKEYBLOB): Add define.
8990
8991 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8992
8993         * include/shlobj.h (SHGetFolderPath): Add define.
8994         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8995         (SHGetFolderPath): Ditto.
8996
8997 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8998
8999         * include/commdlg.h: Don't include COM headers or use
9000         COM-dependent symbols if __OBJC__.
9001
9002 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9003
9004         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
9005         Add prototypes.
9006
9007 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
9008
9009         * include/shellapi.h (FOF_NOERRORUI): Add define.
9010
9011 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
9012
9013         * include/objidl.h (IEnumMoniker): Put 'interface' back.
9014
9015 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
9016
9017         * include/objidl.h (IEnumMoniker): Correct declaration.
9018
9019 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
9020
9021         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
9022
9023 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
9024
9025         * include/commctrl.h: Whitespace change.
9026
9027 2002-08-09  Lars Munch  <lars@segv.dk>
9028
9029         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
9030         struct name _TVHITTESTINFO and typedefs and add defines for
9031         backward compatability.
9032         (ListView_SetExtendedListViewStyleEx): Add macro.
9033
9034 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
9035
9036         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
9037         Add prototypes.
9038         * lib/msimg32.def: New file, with stubs for above.
9039
9040 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
9041
9042         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
9043         GetFileSizeEx, SetFilePointerEx): Add prototypes.
9044         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
9045         and UNICODE mappings.
9046
9047 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9048
9049         * include/winbase.h (ReadFileScatter, WriteFileGather):
9050         Change second parameter to pointer.
9051
9052 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
9053
9054         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
9055         UNICODE mappings.
9056         * lib/wininet.def: Regenerate.
9057
9058 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9059
9060         * include/windef.h (PVOID): Move typedef to...
9061         * include/winnt: ...here.
9062         (PVOID64): New typedef.
9063
9064         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
9065         * include/winbase.h (ReadFileScatter, WriteFileGather):
9066         Add prototypes.
9067
9068         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
9069         (PROCESSOR_INTEL_IA64): Add define.
9070
9071 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9072
9073         * include/oleidl.h (MK_ALT): Define.
9074
9075 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9076
9077         * include/exdisp.h: New file.
9078         * include/exdispid.h: New file.
9079         * include/mshtml.h: New file.
9080         * lib/test.c: #include exdisp.h and mshtml.h
9081         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
9082         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
9083         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
9084         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
9085         New GUIDs.
9086
9087 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9088
9089         * include/docobj.h: New file.
9090         * include/idispids.h: New file.
9091         * include/objidl.h (IID_IMoniker): Declare.
9092         * include/ocidl.h (READYSTATE): New enum.
9093         (IOleInPlaceSiteEx): New interface.
9094         * include/olectlid.h (IID_IEnumSTATSTG): New interface
9095         identifier.
9096         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
9097         IOleInPlaceSite): New interfaces.
9098         * lib/test.c: #include docobj.h,idispids.h,
9099
9100 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9101
9102         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
9103         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
9104
9105 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
9106
9107         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
9108         * include/commdlg.h: Likewise.
9109
9110 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
9111
9112         * include/oleauto.h (V_UNION): Correct definition for case of
9113         NONAMELESSUNION:
9114         (V_VT): Likewise.
9115
9116 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
9117
9118         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
9119         not bool, for C as well as C++.
9120
9121 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
9122
9123         * include/shlwapi.h: New file.
9124         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
9125         Victor Porton  <porton@narod.ru> for contributions.
9126         * lib/shlwapi.def: New file.
9127         * lib/test.c: #include shlwapi.h.
9128
9129 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
9130
9131         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
9132         character.
9133         * include/winsock2.h (struct sockaddr): Use __int64 instead of
9134         long long.
9135         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
9136         does not need external *Fiber library functions.
9137
9138 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9139
9140         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
9141         definition.
9142         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
9143         avoid compile error when already defined.
9144
9145 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
9146
9147         * include/winuser.h (WM_MENURBUTTONUP): Add define.
9148
9149 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9150
9151         * include/commdlg.h: Define CDN_* notification message constants
9152         as UINT.
9153
9154 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
9155
9156         * include/commctrl.h: Define notification message constants for
9157         NMHDR.code as UINT.
9158
9159 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
9160
9161         * include/ddeml.h (MH_*) Add defines.
9162         (MONHSZSTRUCT): Add structure and typedefs.
9163         (MONLINKSTRUCT): Ditto.
9164         (MONCONVSTRUCT): Ditto.
9165         (MONCBSTRUCT): Ditto.
9166         (MONERRSTRUCT): Ditto.
9167         (MONMSGSTRUCT): Ditto.
9168         * include/windef.h: Don't define __cdecl or _cdecl for
9169         __WATCOM__.
9170         Don't define _export or __export for __WATCOM__.
9171         * include/windows.h (imm.h): #include.
9172         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9173
9174 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9175
9176         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9177         rpcndr.h.
9178
9179 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9180
9181         * include/winbase.h (OpenThread): Add prototype.
9182         * lib/kernel32.def (OpenThread): Add symbol.
9183
9184 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9185
9186         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9187
9188 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9189
9190         * include/rpc.h: Conditionally include <windows.h> before
9191         header guard.
9192         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9193         header guard.
9194
9195 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9196
9197         * include/commctrl.h (WC_*): Remove some duplicate defines.
9198
9199 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9200
9201         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9202         UNICODE mappings.
9203         (IPM*): Add defines.
9204         (IPN_*): Add defines.
9205         (NMIPADDRESS): Add structure and typedefs.
9206         (MAKEIPADDRESS): Add macro.
9207         (MAKEIPRANGE): Add macro.
9208         (FIRST_IPADDRESS): Add macro.
9209         (SECOND_IPADDRESS): Add macro.
9210         (THIRD_IPADDRESS): Add macro.
9211         (FOURTH_IPADDRESS): Add macro.
9212
9213 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9214
9215         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9216
9217 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9218
9219         * include/winbase.h (WINBASEAPI): Don't define if prior
9220         definition.
9221
9222         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9223         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9224         PARTITION_UNIX): Add defines.
9225         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9226         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9227         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9228         (IsContainerPartition): Add macro.
9229
9230 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9231
9232         * include/commctrl.h: (CBEIF_*): Add defines.
9233         (CBEN_*): Add defines and UNICODE mappings
9234         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9235         (CBEMAXSTRLEN): Add define.
9236         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9237         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9238         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9239         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9240
9241 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9242
9243         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9244         union member _VARIANT_BOOL bool.
9245
9246 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9247
9248         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9249
9250 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9251
9252         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9253         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9254         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9255         Add typedefs.
9256         (CCHAR): Correct typedef.
9257         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9258         Add defines.
9259
9260 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9261
9262         * README.w32api: Correct spelling error.
9263
9264 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9265
9266         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9267         INPUT_HARDWARE): Add defines.
9268         (HDEVNOTIFY): Add typedef.
9269         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9270         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9271         typedefs.
9272         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9273         GetClassInfoEx[AW],GetKeyboardLayoutList,
9274         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9275         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9276         RegisterClassEx[AW]): Correct prototypes.
9277
9278 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9279
9280         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9281         prototypes.
9282         * include/winsvc.h (StartServiceW): Correct prototype.
9283         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9284         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9285         GetTickCount,InterlockedExchangeAdd,
9286         WritePrivateProfileStruct[AW]: Correct prototypes.
9287         (GetEnvironmentStrings): Correct mapping to
9288         GetEnvironmentStringsA.
9289         * include/winver.h (VerQueryValueA,VerQueryValueW):
9290         Correct prototypes.
9291         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9292         prototype.
9293         * include/winreg.h (RegQueryMultipleValues[AW],
9294         RegQueryValueEx[AW]):Correct prototypes.
9295         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9296         PPOLYTEXTW): Add typedefs.
9297         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9298         structures and typedefs.
9299         (MM_MAX_NUMAXES): Add define.
9300         (EnumFontsW,GetEnhMetaFilePixelFormat,
9301         wglGetLayerPaletteEntries): Correct prototypes.
9302         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9303         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9304         RPC_S_SEND_INCOMPLETE): Add defines.
9305
9306 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9307
9308         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9309         Add defines.
9310
9311 2002-06-16  Egor Duda  <deo@logos-m.ru>
9312
9313         * include/ntdll.h: New file.
9314         * lib/ntdll.def: Add NtShutdownSystem.
9315
9316 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9317
9318         * lib/dinput.def (DirectInputCreateEx): Add stub.
9319         * lib/ntdll.def: New file.
9320
9321 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9322
9323         * include/w32api.h: Change to version 2.0 to reflect the change
9324         in the license.
9325         * README: Renamed.
9326         * README.w32api: Renamed from README.  Modified license to remove
9327         the restriction of notifying the author based on the fact that the
9328         author is unreachable at the notified address.
9329         * Makefile.in (VERSION): Change to 2.0.
9330
9331 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9332
9333         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9334         * Makefile.in (bindist): Correct the MinGW distribution.
9335
9336 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9337
9338         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9339         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9340
9341 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9342
9343         * lib/test.c: #include comcat.h.
9344
9345 2002-06-13  John K. Hohm  <jhohm@acm.org>
9346
9347         * include/comcat.h: New file.
9348
9349 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9350
9351         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9352         (GETTEXTEX): Add structure definition.
9353
9354 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9355
9356         * include/windows.h (ole2.h): #include if !__OBJC__ and
9357         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9358
9359 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9360
9361         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9362
9363 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9364
9365         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9366         PACCESS_DENIED_ACE): Add typedefs.
9367
9368 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9369
9370         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9371
9372 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9373
9374         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9375
9376 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9377
9378         * include/windef.h: Fix typo in last change.
9379
9380 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9381
9382         * include/windef.h: Add no-op __try, __except, __finally
9383         defines from ...
9384         * include/excpt.h: Remove file.
9385         * include/windows.h: Don't include excpt.h.
9386
9387 2002-05-30  Christopher January  <chris@atomice.net>
9388
9389         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9390         Add missing typedefs.
9391
9392 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9393
9394         * include/w32api.h: Increment version to 1.5
9395         * Makefile.in: Ditto.
9396
9397
9398 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9399
9400         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9401         LP[W]STR with LPC[W]STR.
9402         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9403         Clean up whitespace.
9404
9405 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9406
9407         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9408
9409 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9410
9411         * Makefile.in: Increment VERSION to 1.4.
9412         (conf_prefix): New variable.
9413         (bindist): Modify target to use $(conf_prefix).
9414
9415 2002-05-20  Philip Aston  <philipa@mail.com>
9416
9417         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9418
9419 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9420
9421         * include/lmaccess.h: (NetAccess*, NetGroup*,
9422         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9423         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9424
9425 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9426
9427         * include/commctrl.h (ImageList_DragShowNolock): Remove
9428         conflicting redeclaration.
9429
9430 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9431
9432         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9433         STRICT and related defines to ...
9434         * include/windef.h: Here.
9435
9436 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9437
9438         * include/winsock2.h (int32): Remove typedef.
9439         (SERVICETYPE): Add typedef.
9440         (struct _flowspec):Revise struct definition,  Comment
9441         on types used for members.
9442
9443 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9444
9445         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9446         more defines added in earlier change.
9447         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9448
9449 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9450
9451         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9452         added in last change.
9453
9454 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9455
9456         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9457         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9458
9459 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9460
9461         * include/commctrl.h (SNDMSG): Define and use throughout
9462         in other macros instead of SendMessage.
9463         * include/commdlg.h (SNDMSG): Ditto.
9464
9465 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9466
9467         * include/GL/gl.h: New file.
9468         * include/GL/glext.h: Ditto.
9469         * include/GL/glu.h: Ditto.
9470
9471 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9472
9473         * include/w32api.h: Increment version.
9474         * Makefile.in: Ditto.
9475
9476 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9477
9478         * Makefile.in (bindist): Use * instead of . for file list for tar
9479         command.
9480
9481 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9482
9483         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9484
9485 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9486
9487         * include/objidl.h (IRunningObjectTable.Register): Correct
9488         prototype.
9489         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9490         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9491
9492 2002-03-31  Victor Porton  <porton@narod.ru>
9493
9494         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9495
9496 2002-03-29  David Robinow  <drobinow@yahoo.com>
9497
9498         * include/wingdi.h (SetPixelFormat): Correct prototype.
9499
9500 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9501
9502         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9503
9504 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9505
9506         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9507         Add defines.
9508
9509 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9510
9511         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9512         * include/shlobj.h (IContextMenu2): Put methods in right order.
9513         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9514         CINTERFACE before defining.
9515
9516 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9517
9518         * include/accctrl.h: Add #pragma GCC system_header
9519         if __GNUC__ >= 3.
9520         * include/aclapi.h: Same.
9521         * include/basetsd.h: Same.
9522         * include/basetyps.h: Same.
9523         * include/cderr.h: Same.
9524         * include/cguid.h: Same.
9525         * include/commctrl.h: Same.
9526         * include/commdlg.h: Same.
9527         * include/cpl.h: Same.
9528         * include/cplext.h: Same.
9529         * include/custcntl.h: Same.
9530         * include/dbt.h: Same.
9531         * include/dde.h: Same.
9532         * include/ddeml.h: Same.
9533         * include/dlgs.h: Same.
9534         * include/excpt.h: Same.
9535         * include/httpext.h: Same.
9536         * include/imagehlp.h: Same.
9537         * include/imm.h: Same.
9538         * include/initguid.h: Same.
9539         * include/intshcut.h: Same.
9540         * include/ipexport.h: Same.
9541         * include/iphlpapi.h: Same.
9542         * include/ipifcons.h: Same.
9543         * include/iprtrmib.h: Same.
9544         * include/iptypes.h: Same.
9545         * include/isguids.h: Same.
9546         * include/largeint.h: Same.
9547         * include/lm.h: Same.
9548         * include/lmaccess.h: Same.
9549         * include/lmalert.h: Same.
9550         * include/lmapibuf.h: Same.
9551         * include/lmat.h: Same.
9552         * include/lmaudit.h: Same.
9553         * include/lmbrowsr.h: Same.
9554         * include/lmchdev.h: Same.
9555         * include/lmconfig.h: Same.
9556         * include/lmcons.h: Same.
9557         * include/lmerr.h: Same.
9558         * include/lmerrlog.h: Same.
9559         * include/lmmsg.h: Same.
9560         * include/lmremutl.h: Same.
9561         * include/lmrepl.h: Same.
9562         * include/lmserver.h: Same.
9563         * include/lmshare.h: Same.
9564         * include/lmsname.h: Same.
9565         * include/lmstats.h: Same.
9566         * include/lmsvc.h: Same.
9567         * include/lmuse.h: Same.
9568         * include/lmuseflg.h: Same.
9569         * include/lmwksta.h: Same.
9570         * include/lzexpand.h: Same.
9571         * include/mapi.h: Same.
9572         * include/mciavi.h: Same.
9573         * include/mcx.h: Same.
9574         * include/mmsystem.h: Same.
9575         * include/mswsock.h: Same.
9576         * include/nb30.h: Same.
9577         * include/nddeapi.h: Same.
9578         * include/nspapi.h: Same.
9579         * include/ntdef.h: Same.
9580         * include/ntsecapi.h: Same.
9581         * include/ntsecpkg.h: Same.
9582         * include/oaidl.h: Same.
9583         * include/objbase.h: Same.
9584         * include/objfwd.h: Same.
9585         * include/objidl.h: Same.
9586         * include/odbcinst.h: Same.
9587         * include/ole.h: Same.
9588         * include/ole2.h: Same.
9589         * include/ole2ver.h: Same.
9590         * include/oleauto.h: Same.
9591         * include/olectl.h: Same.
9592         * include/olectlid.h: Same.
9593         * include/oledlg.h: Same.
9594         * include/oleidl.h: Same.
9595         * include/pbt.h: Same.
9596         * include/prsht.h: Same.
9597         * include/psapi.h: Same.
9598         * include/rapi.h: Same.
9599         * include/ras.h: Same.
9600         * include/raserror.h: Same.
9601         * include/rassapi.h: Same.
9602         * include/regstr.h: Same.
9603         * include/richedit.h: Same.
9604         * include/richole.h: Same.
9605         * include/rpc.h: Same.
9606         * include/rpcdce.h: Same.
9607         * include/rpcdce2.h: Same.
9608         * include/rpcdcep.h: Same.
9609         * include/rpcndr.h: Same.
9610         * include/rpcnsi.h: Same.
9611         * include/rpcnsip.h: Same.
9612         * include/rpcnterr.h: Same.
9613         * include/rpcproxy.h: Same.
9614         * include/schannel.h: Same.
9615         * include/schnlsp.h: Same.
9616         * include/scrnsave.h: Same.
9617         * include/security.h: Same.
9618         * include/setupapi.h: Same.
9619         * include/shellapi.h: Same.
9620         * include/shlguid.h: Same.
9621         * include/shlobj.h: Same.
9622         * include/sql.h: Same.
9623         * include/sqlext.h: Same.
9624         * include/sqltypes.h: Same.
9625         * include/sqlucode.h: Same.
9626         * include/sspi.h: Same.
9627         * include/subauth.h: Same.
9628         * include/tlhelp32.h: Same.
9629         * include/unknwn.h: Same.
9630         * include/userenv.h: Same.
9631         * include/w32api.h: Same.
9632         * include/winbase.h: Same.
9633         * include/wincon.h: Same.
9634         * include/wincrypt.h: Same.
9635         * include/windef.h: Same.
9636         * include/windows.h: Same.
9637         * include/windowsx.h: Same.
9638         * include/winerror.h: Same
9639         * include/wingdi.h: Same.
9640         * include/wininet.h: Same.
9641         * include/winioctl.h: Same.
9642         * include/winnetwk.h: Same.
9643         * include/winnls.h: Same.
9644         * include/winnt.h: Same.
9645         * include/winperf.h: Same.
9646         * include/winreg.h: Same.
9647         * include/winresrc.h: Same.
9648         * include/winsock.h: Same.
9649         * include/winsock2.h: Same.
9650         * include/winspool.h: Same.
9651         * include/winsvc.h: Same.
9652         * include/winuser.h: Same.
9653         * include/winver.h: Same.
9654         * include/ws2tcpip.h: Same.
9655         * include/wsnetbs.h: Same.
9656         * include/wtypes.h: Same.
9657         * include/zmouse.h: Same.
9658         * include/mapi.h: Change header guard name to _MAPI_H  for
9659         consistency.
9660
9661 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9662
9663         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9664         Remove unnecessary inclusion of <wtypes.h>.
9665         * ChangeLog: Fix omission of name in recent entries.
9666
9667 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9668
9669         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9670
9671 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9672
9673         * include/mswsock.h: Group winsock2 dependants
9674         together and protect with #ifdef _WINSOCK2_H.
9675         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9676         has been included.
9677
9678 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9679
9680         * include/mswsock.h (TP_*): Add new defines.
9681         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9682         (WSAMSG): Likewise.
9683         (WSACMSGHDR): Likewise.
9684         (DisconnectEx): Add new prototype.
9685         (WSARecvMsg): Likewise.
9686         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9687
9688 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9689
9690         * ChangeLog: Fix typo in last entry.
9691         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9692         * include/ws2tcpip.h: (IP_*): Add new defines.
9693         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9694         (NI_*): Add getnameinfo constants and bitmasks.
9695         (AI_*): Add getaddrinfo flags.
9696         (EAI_*): Add getaddrinfo error codes.
9697         (ip_mreq_source): Add new structure.
9698         (ip_msfilter): Add new structure.
9699         (IP_MSFILTER_SIZE): Add new macro.
9700         (in_pktinfo): Add new structure.
9701         Add preliminary IPv6 support.
9702         (in6_addr): Add new structure and some defines.
9703         (sockaddr_in6): Add new structure.
9704         (in6addr_any, in6addr_loopback): Declare extern structures.
9705         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9706         initialization macros for above.
9707         (IN6_ARE_ADDR_EQUAL): Define macro.
9708         (IN6_IS_ADDR_*): Define address testing macros.
9709         (socklen_t) Add new typedef.
9710         (ipv6_mreq): Add new structure.
9711         (in6_pktinfo): Same.
9712         (addrinfo): Same.
9713         (freeaddrinfo):Add new prototype.
9714         (getaddrinfo): Same.
9715         (gai_strerror[AW]): Same.
9716         (getnameinfo): Same.
9717         (sockaddr_in6_old): Add structure.
9718         (sockaddr_gen): Add union definition.
9719         (INTERFACE_INFO): Use sockaddr_gen as members.
9720         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9721         with INTERFACE_INFO on NT4 prior to sp4.
9722
9723 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9724
9725         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9726         when selecting winsock interface.
9727         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9728         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9729         Expand FIXME comment.
9730         (WSACOMPLETIONTYPE): Add enum.
9731         (WSACOMPLETION): Add structure and typedefs.
9732         (WSANSPIoctl): Add function prototpe and callback typedef.
9733         (SIO_NSP_NOTIFY_CHANGE): Add define.
9734         (sockaddr_storage): Add structure and typedefs.
9735
9736 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9737
9738         * include/winuser.h (OIC_*): Add resource constants.
9739
9740 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9741
9742         * include/ntsecpkg.h: New file.
9743         * include/schannel.h: New file.
9744         * include/schnlsp.h: New file.
9745         * include/security.h: New file.
9746         * include/sspi.h: New file.
9747         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9748         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9749         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9750         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9751         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9752         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9753         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9754         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9755         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9756         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9757         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9758         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9759         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9760         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9761         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9762         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9763         CERT_CHAIN_CONTEXT): Add missing structures.
9764         (CertCloseStore, CertGetCertificateChain,
9765         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9766         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9767         CertFindCertificateInStore, CertFreeCertificateContext,
9768         CertGetIssuerCertificateFromStore,
9769         CertFindChainInStore): Add missing functions.
9770         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9771         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9772         * lib/crypt32.def: New file.
9773         * lib/secur32.def: Add mising stubs.
9774         * lib/test.c: Include new headers.
9775
9776 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9777
9778         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9779         parameter.
9780
9781 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9782
9783         * lib/test.c: Include mapi.h.
9784         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9785         Thanks to: "Ron"  <ron@debian.org>
9786
9787 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9788
9789         * include/mapi.h: New file.
9790         * lib/mapi.def: Add missing function stubs.
9791
9792 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9793
9794         * include/winuser.h (GetWindowLongPtr[AW],
9795         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9796
9797 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9798
9799         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9800         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9801         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9802         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9803
9804 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9805
9806         * lib/test.c: Include wsnetbs.h.
9807
9808 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9809
9810         * include/wsnetbs.h: New file.
9811
9812 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9813
9814         * include/winnt.h: Remove merge conflict.
9815
9816 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9817
9818         * include/winnt.h (_TCHAR): Add typedefs.
9819
9820 2002-01-25  Tim Hughes  <tjh@delcam.com>
9821
9822         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9823         defines.
9824
9825 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9826
9827         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9828         Add defines.
9829         (LPACCESSTIMEOUT): Add typedef.
9830
9831 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9832
9833         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9834
9835 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9836
9837         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9838         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9839         backward compatability with old names. Update UNICODE mappings.
9840         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9841         for struct _HD_LAYOUT and add defines for backward
9842         compatability with old names.
9843         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9844         parallel chages to typedefs. Add defines for backward
9845         compatability with old names.
9846         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9847
9848 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9849
9850         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9851         hex for readability.
9852
9853 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9854
9855         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9856         and typedefs.
9857         (SPI_SETSCREENSAVERRUNNING): Add define.
9858         (LLKHF_ALTDOWN): Add define.
9859         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9860         PFD_DEPTH_DONTCARE): Add defines.
9861
9862 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9863
9864         * include/objbase.h (CoGetObject): Add prototype.
9865
9866 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9867
9868         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9869         ENUM_REGISTRY_SETTINGS): Add defines.
9870
9871 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9872
9873         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9874         (FILE_ATTRIBUTE_DEVICE): Add define.
9875
9876 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9877
9878         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9879
9880 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9881
9882         * ChangeLog: correct date in last entry.
9883
9884 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9885
9886         * include/winuser.h (MONITORENUMPROC): Add typedef.
9887         (EnumDisplayMonitors): Add prototype.
9888         * lib/user32.def (EnumDisplayMonitors): Add stub.
9889
9890 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9891
9892         * include/ntsecapi.h:  Fixed missing void parameter type in some
9893         prototypes.
9894         * include/objbase.h: Ditto.
9895         * include/rapi.h: Ditto.
9896         * include/rpc.h: Ditto.
9897         * include/rpcdce.h: Ditto.
9898         * include/rpcdcep.h: Ditto.
9899         * include/rpcndr.h: Ditto.
9900         * include/rpcnsip.h: Ditto.
9901         * include/rpcproxy.h: Ditto.
9902         * include/windef.h: Ditto.
9903
9904 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9905
9906         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9907
9908 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9909
9910         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9911          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9912         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9913         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9914         WS_EX_NOINHERITLAYOUT): Add defines.
9915         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9916         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9917         MEM_WRITE_WATCH): Add defines.
9918
9919
9920 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9921
9922         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9923         Add prototype.
9924         (SetCriticalSectionSpinCount): Likewise.
9925
9926 2001-12-30  Guido Serassio  <serassio@libero.it>
9927
9928         * include/winsvc.h: Add EnumServiceStatusEx(),
9929         QueryServiceStatusEx()
9930         & RegisterServiceCtrlHandlerEx()
9931
9932 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9933
9934         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9935
9936 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9937
9938         * lib/Makefile.in: Revert inst_installdir definitions to working
9939         versions.
9940
9941 2001-12-17  Guido Serassio  <serassio@libero.it>
9942
9943         * include/winsvc.h: Add ChangeServiceConfig2() &
9944         QueryServiceConfig2() definition
9945
9946 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9947
9948         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9949         on MSDN documentation for XP.
9950
9951 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9952
9953         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9954         mappings.
9955
9956 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9957
9958         * include/commctrl.h (ACS_*): Add new defines.
9959         (PGS_*): Ditto.
9960         (CBES_*): Ditto.
9961         (TBSTYLE_*): Ditto.
9962         (TB_*): Ditto.
9963         (TTS_*): Ditto.
9964         (UDS_HOTTRACK): Add define.
9965         (SBT_TOOLTIPS): Ditto.
9966         (TBS_*): Add new defines.
9967         (HDS_*): Ditto.
9968         (LVS_EX_*) Ditto.
9969         (LVKF_*): Ditto.
9970         (TCM_GETEXTENDEDSTYLE): Add define.
9971         (TVS_NOHSCROLL): Ditto.
9972         (TVIF_INTEGRAL): Ditto.
9973         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9974         (TCS_*): Add new defines.
9975         (CBEM_*): Add defines.
9976         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9977         (tagTVITEMEX[AW]: Ditto.
9978         (tagTVINSERTSTRUCT[AW]: Add union member.
9979         * include/winbase.h (VirtualAllocEx): Add prototype.
9980         * include/winuser.h (SS_*): Add new defines.
9981
9982 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9983
9984         * Makefile.in: Increment VERSION.
9985         * include/w32api.h: Ditto.
9986
9987 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9988
9989         * Makefile.in: Increment VERSION.
9990         * include/w32api.h: Ditto.
9991
9992 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9993
9994         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9995         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9996         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9997         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9998         SetupDiOpenDevRegKey): Correct function names.
9999
10000 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
10001
10002         * include/winuser.h (IDC_STATIC): Don't define.
10003
10004 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
10005
10006         Cleanup merge between SourceForge and winsup CVS.
10007         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
10008         definitions.
10009         * include/winnt.h (VER_NT*): Remove duplicate defines.
10010         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
10011
10012 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
10013
10014         * include/accctrl.h: Change \r\n to \n.
10015
10016 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
10017
10018         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
10019         Add structure definition.
10020         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
10021         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
10022         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
10023         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
10024         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
10025         UnenableRouter) Declare functions.
10026         * lib/iphlpapi.def: Add function names to import lib.
10027
10028 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
10029
10030         * include/winnt.h (PACCESS_MASK): Add typedef.
10031         * include/aclapi.h: New file.
10032         * include/acctrl.h: New file.
10033         * lib/advapi32.def: Add missing symbols.
10034         * lib/test.c: Add #include <aclapi.h>.
10035
10036 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
10037
10038         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
10039         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
10040         here ...
10041         * include/winnt.h: ... to here.
10042         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
10043         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
10044         and typedefs.
10045         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
10046         Add defines.
10047
10048 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10049
10050         * w32api/include/winnt.h: prepare SSE register support.
10051         (CONTEXT_EXTENDED_REGISTERS): Add new define.
10052         (MAXIMUM_SUPPORTED_EXTENSION): New define.
10053         (struct CONTEXT): ExtendedRegisters field added.
10054
10055 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
10056
10057         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
10058         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
10059         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
10060         tagLASTINPUTINFO ): Define new structures.
10061         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
10062         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
10063         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
10064         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
10065         SetMenuInfo): Add new prototypes.
10066         * lib/user32.def: Add import stubs for above functions.
10067
10068         * include/winuser.h (IDC_STATIC): Protect against prior
10069         definition.
10070
10071 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
10072
10073         * include/winbase.h (OSVERSIONINFOEX): Add definition.
10074         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
10075
10076 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
10077
10078         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
10079         warnings with _AUTHORITY #defines.
10080
10081 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10082
10083         * include/winnt.h (GetCurrentFiber): Create a prototype before the
10084         implementation.
10085         (GetFiberData): Ditto.
10086
10087 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10088
10089         * include/winnt.h: Backout last change.
10090
10091 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
10092
10093         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
10094         GetCurrentFiber: Create a prototype before the implementation.
10095         GetFiberData: Ditto.
10096
10097 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
10098
10099         * include/winuser.h (IDC_STATIC): Add define.
10100         Thanks to: Benoit Laniel.
10101
10102 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
10103
10104         * include/commdlg.h: Include <unknwn.h> rather than local
10105         definition of LPUKNOWN.
10106         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
10107         Emit warning.
10108
10109 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
10110
10111         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
10112         for Watcom.
10113         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
10114         functions of the form 'type * function(...)' in a way compatible
10115         with both Watcom and GCC.
10116         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
10117         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
10118         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
10119         * include/windows.h: Watcom can use anonymous structs/unions.
10120         * include/winnt.h: Watcom can use 64 bit ints.
10121         (GetCurrentFiber): Add another inline definition using
10122         Watcom inline assembly syntax.
10123         (GetFiberData): Likewise.
10124         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
10125         (gethostbyname): Likewise.
10126         (gethostbyaddr}: Likewise.
10127         (getservbyport}: Likewise.
10128         (getservbyname}: Likewise.
10129         (getprotobynumber}: Likewise.
10130         (getprotobyname}: Likewise.
10131         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
10132         (gethostbyname}: Likewise.
10133         (gethostbyaddr}: Likewise.
10134         (getservbyport}: Likewise.
10135         (getservbyname}: Likewise.
10136         (getprotobynumber}: Likewise.
10137         (getprotobyname}: Likewise.
10138         * lib/diinut.c: Correction for Watcom.
10139         * lib/kernel32.c (GetCurrentFiber): Add another definition
10140         using Watcom inline assembly syntax.
10141         (GetFiberData): Likewise.
10142         * lib/scrnsave.c (WinMain): Add break after default:
10143         clause.
10144
10145 2001-11-04  "stefan"  <stefan@lkcc.org>
10146
10147         * include/winnt.h (GetCurrentFiber): Add prototype.
10148         (GetFiberData): Likewise.
10149
10150 2001-11-04  Christopher Faylor  <cgf@redhat.com>
10151
10152         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
10153         parallel invocations.
10154
10155 2001-11-03  Christopher Faylor  <cgf@redhat.com>
10156
10157         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
10158
10159 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10160
10161         * include/basetyps.h (DECLARE_INTERFACE): Don't add
10162         __attribute__((com_interface)) for __GNUC__ >= 3.
10163
10164 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10165
10166         * include/commdlg.h (PRINTPAGERANGE): Add structure
10167         definition.
10168         (PRINTDLGEX[AW]): Likewise.
10169         (PrintDlgEx[AW]): Add function declaration.
10170         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10171         * ChangeLog: Fix typo in last entry.
10172
10173 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10174
10175         * include/objbase.h (CoGetClassObject): Change third parameter
10176         to COSERVERINFO*.
10177
10178 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10179
10180         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10181         Thanks to: Kim Saunders.
10182         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10183         Thanks to: Pat Thoyts.
10184         * include/winnt.h: Change C++ style comment to C style.
10185         * include/shlobj.h: Ditto.
10186         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10187         list.
10188         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10189         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10190         (enum not limited to range of int).
10191         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10192         (struct with no named members), ifndef NONAMELESSUNION.
10193
10194 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10195
10196         * include/winuser.h (CREATESTRUCT): UNICODE it.
10197         (CBT_CREATEWND): Likewise.
10198
10199 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10200
10201         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10202         (WNetGetResourceInformationW): Ditto.
10203         (WNetGetResourceInformation): Add define.
10204
10205 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10206
10207         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10208         before extracting words.
10209
10210 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10211
10212         * include/winnt.h: Add PF_* defines.
10213         Thanks to: "Wizord"  <wizord@argoslabs.com>
10214
10215 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10216
10217         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10218         field as _ANONYMOUS_STRUCT.
10219         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10220         for UNICODE.
10221         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10222         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10223         test.
10224
10225 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10226
10227         * include/commctrl.h: Add some ListView constants.
10228
10229 2001-09-17  Earnie Boyd  <earnie@sf.net>
10230
10231         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10232         portion of the directory from the install.
10233         (inst_libdir): Ditto.
10234         * Makefile.in (VERSION): Increment.
10235         * include/w32api.h: Increment version.
10236
10237 2001-09-13  Earnie Boyd  <earnie@SF.net>
10238
10239         * lib/Makefile.in (inst_includedir): Change to always use w32api
10240         subdirectory for target == cygwin.
10241         (inst_libdir): Ditto.
10242
10243 2001-09-13  Earnie Boyd  <earnie@SF.net>
10244
10245         * lib/Makefile.in (config_prefix): New variable.
10246         (inst_includedir): Manipulate special value only if target == cygwin
10247         and build == target and prefix != config_prefix.
10248         (inst_libdir): Ditto.
10249
10250 2001-09-12  Earnie Boyd  <earnie@SF.net>
10251
10252         * Makefile.in (TARFLAGS): New variable.
10253         (TARFILEEXT): Ditto.
10254
10255 2001-09-12  Earnie Boyd  <earnie@SF.net>
10256
10257         * Makefile.in: Increment version.
10258         * include/w32api.h: Ditto.
10259         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10260
10261 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10262
10263         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10264         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10265         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10266
10267 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10268
10269         * include/wininet.h (InternetAutodial): Add prototype.
10270         (InternetAutodialHangup): Ditto.
10271         (InternetDial): Ditto.
10272         (InternetGetConnectedState): Ditto.
10273         (InternetGoOnline): Ditto.
10274         (InternetHangUp): Ditto.
10275         (InternetSetDialState): Ditto.
10276         Add associated INTERNET_* auto dial flags.
10277         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10278
10279 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10280
10281         * lib/Makefile.in: Move the setting of variable libdir to after the
10282         setting of exec_prefix since the value of libdir is dependant on it.
10283
10284 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10285
10286         * include/winbase.h: Add missing closing parentheses to
10287         InterlockedExchangePointer declaration.
10288
10289 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10290
10291         * include/shlobj.h (CFSTR_* ): Add new defines.
10292         Thanks to: "Ron" <ron@debian.org> .
10293         Unicode them.
10294
10295 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10296
10297         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10298         anonymous structs are available rather than just testing preprocessor
10299         variable directly.
10300
10301 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10302
10303         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10304         with new `LARGE_INTEGER' definition.
10305
10306 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10307
10308         * include/winsock2.h: Remove "extra token" after #endif.
10309
10310 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10311
10312         * config.guess: Remove the \r from the end of line.
10313         * config.sub: Ditto.
10314
10315 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10316
10317         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10318         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10319
10320 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10321
10322         * config.guess: Add the MSYS system.
10323         * config.sub: Ditto.
10324         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10325         * incldue/winsock2.h: Ditto.
10326
10327 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10328
10329         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10330         non-anonymous (Xxx.u.LowPart) access to HighPart and
10331         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10332
10333 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10334
10335         * include/wingdi.h (HANGUL_CHARSET): Add define.
10336
10337 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10338
10339         * include/setupapi.h: Formatting.
10340
10341 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10342
10343         * include/shlobj.h: Remove \r from the line endings.
10344
10345 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10346
10347         * include/setupapi.h : New file.
10348         * lib/setupapi.def:New file.
10349         * lib/test.c: Include setupapi.h.
10350
10351 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10352         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10353
10354 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10355
10356         * include/richedit.h (ENLINK): Add structure definition.
10357         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10358
10359 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10360
10361         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10362         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10363         (GCS_*): Make UNICODE.
10364         (CSIDL_*): Add more defines.
10365         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10366         (_DISK_GEOMETRY): Ditto.
10367         (_DISK_PERFORMANCE): Ditto.
10368         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10369
10370 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10371
10372         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10373         of block protected by #ifndef VOID.
10374         (This reverts 1998-12-01 Anders Norlander change.)
10375         * include/odbcinst.h: End file with newline.
10376         * include/raserror.h: Ditto.
10377
10378 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10379
10380         * include/winsock2.h (#include <wtypes.h): Don't.
10381         (_BLOB): Define instead, if not already done.
10382         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10383         * include/wtypes.h (_BLOB): Guard against prior definition.
10384
10385 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10386
10387         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10388         as __extension__.
10389         (tagTYPEDESC): Ditto.
10390         (_wireBRECORD): Add structure definition.
10391         (_wireSAFEARR_BRECORD): Ditto.
10392         (_wireSAFEARR_HAVEIID): Ditto.
10393         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10394         SAFEARR_HAVEIID HaveIidStr.
10395         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10396         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10397         pparray to wirePSAFEARRAY*.
10398         (_wireVARIANT): Add field wireBRECORD brecVal.
10399         (wireVARIANT): Change typedef to struct _wireVariant*.
10400         (IRecordInfo): Add interface definition.
10401         (LPRECORDINFO): Add typedef for IRecordInfo*.
10402         (IID_IRecordInfo): Add forward decalaration.
10403
10404 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10405
10406         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10407         * include/nddeapi.h: Likewise.
10408
10409 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10410
10411         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10412         Add more includes of w32api headers.
10413
10414 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10415
10416         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10417         Swap asm code with that of GetFiberData.
10418         (GetFiberData): Ditto.
10419         * lib/kernel32.c: New file, containing library versions of
10420         GetCurrentFiber and GetFiberData.
10421         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10422
10423 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10424
10425         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10426         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10427
10428 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10429
10430         * lib/oleaut32.def: Regenerate.
10431
10432 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10433
10434         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10435
10436 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10437
10438         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10439         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10440         * include/oaidl.h: ... to here.
10441         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10442         (IErrorInfo::GetGUID): Change arg to GUID.
10443         (LPSUPPORTERRORINFO): Add typedef.
10444         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10445
10446 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10447
10448         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10449         defines.
10450
10451 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10452
10453         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10454
10455 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10456
10457         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10458         Thanks to: Jason Craig  <jacraig@softhome.net>
10459
10460 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10461
10462         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10463         and UNICODE mappings, if _WIN32_IE >= 0x400.
10464         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10465         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10466         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10467         (tagNMLVCUSTOMDRAW): Likewise.
10468         (tagNMTVCUSTOMDRAW): Likewise.
10469         (tagNMLVCACHEHINT): Likewise.
10470
10471 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10472
10473         * include/basetsd.h (#include <_mingw.h>): Remove.
10474         (__int64): Define.
10475
10476 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10477
10478         * include/wingdi.h (AC_SRC_OVER): Add define.
10479         (struct _BLENDFUNCTION): Add.
10480
10481 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10482
10483         * include/shlobj.h:  Add BIF_* defines.
10484
10485 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10486
10487         * include/winerror.h (E_PENDING): Add error code define.
10488
10489 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10490
10491         * include/basetsd.h (#include <_mingw.h>): Add directive.
10492
10493 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10494
10495         * include/winbase.h (InterlockedCompareExchange): Change args
10496         and return value from PVOID to LONG.
10497         (InterlockedExchange): Change first arg to LPLONG.
10498         (InterlockedCompareExchangePointer): New macro.
10499         (InterlockedExchangePointer): New macro.
10500
10501 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10502
10503         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10504         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10505
10506 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10507
10508         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10509         (IMalloc::Free()): Ditto.
10510
10511 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10512
10513         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10514         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10515         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10516
10517 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10518
10519         * include/shlobj.h (struct _browseinfo): UNICODE it.
10520         (SHBrowseForFolder): Ditto.
10521         (SHGetPathFromIDList): Ditto.
10522
10523 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10524
10525         * include/basetsd.h: RC_INVOKED protection and realignment.
10526         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10527
10528 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10529
10530         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10531         line.
10532
10533 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10534
10535         * lib/mapi32.def: Add MAPISendMail.
10536
10537 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10538
10539         * include/w32api.h: Update version.
10540         * Makefile.in: Ditto.
10541
10542 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10543
10544         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10545         compiler warnings.
10546
10547 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10548
10549         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10550         previous definition in include/ntsecapi.h.
10551         * include/ntsecapi.h: Vice versa.
10552
10553 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10554
10555         * include/winnt.h: Add defines for group attributes.
10556         Add define for SYSTEM_LUID.
10557         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10558         `PTOKEN_PRIMARY_GROUP'.
10559
10560 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10561
10562         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10563         for cygwin.
10564
10565 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10566
10567         * include/winsock2.h: Protect one *more* newlib defines when compiling
10568         cygwin.
10569
10570 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10571
10572         * include/winsock2.h: Protect some more newlib defines when compiling
10573         cygwin.
10574
10575 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10576
10577         * include/winsock.h: Protect some more newlib defines when compiling
10578         cygwin.
10579
10580 2001-04-17  Egor Duda  <deo@logos-m.ru>
10581
10582         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10583         as __extenstion__ when appropriate.
10584         * include/mmsystem.h: Mark anonymous structs and unions as
10585         __extension__ to prevent compiler warning when invoked with
10586         -pedantic
10587         * include/oaidl.h: Ditto.
10588         * include/objidl.h: Ditto.
10589         * include/olectl.h: Ditto.
10590         * include/prsht.h: Ditto.
10591         * include/shlobj.h: Ditto.
10592         * include/winbase.h: Ditto.
10593         * include/winnt.h: Ditto.
10594         * include/wtypes.h: Ditto.
10595
10596 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10597
10598         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10599         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10600
10601 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10602
10603         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10604
10605 2001-04-11  John Fortin  <fortinj@attglobal.net>
10606
10607         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10608         (*LPBOOL): Ditto.
10609
10610 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10611
10612         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10613         code will be included in every module which includes this header.
10614         (GetFiberData): Ditto.
10615
10616 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10617
10618         * include/winnt.h (GetCurrentFiber): Fix typo.
10619
10620 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10621
10622         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10623         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10624         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10625         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10626         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10627
10628         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10629         (GetCurrentFiber): Ditto.
10630         Thanks to: Andy Younger  <AndyY@redlemon.com>
10631
10632         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10633         DirectX 8 from complaining.
10634         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10635
10636 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10637
10638         * include/commctrl.h Updated TreeView and ListView defines and macros.
10639
10640 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10641
10642         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10643         and above.
10644
10645 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10646         * include/winuser.h (VK_KANA): New definition.
10647         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10648
10649 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10650
10651         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10652         (RT_FONT): Ditto.
10653         * include/basetsd.h (INT32): Ditto.
10654         * include/windef.h (ATOM): Ditto.
10655         (BOOL): Ditto.
10656         (BYTE): Ditto.
10657         * include/winbase.h (FreeResource): Ditto.
10658         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10659
10660 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10661
10662         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10663         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10664         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10665         macro now defined in newlib sys/types.h.  Emit warning if defined.
10666         * include/winsock2.h: Ditto.
10667         * include/windows.h (Win32_Winsock): Replace with new macros
10668         __USE_W32_SOCKETS and warn of deprecation.
10669
10670 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10671
10672         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10673         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10674
10675 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10676
10677         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10678         (TB_GETBUTTONSIZE): Ditto.
10679         (TCS_HOTTRACK): Ditto.
10680         Thanks to: Chris Hansen <popeofpop@softhome.net>
10681
10682 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10683
10684         * Makefile.in: (snapshot): Add target.
10685         * lib/Makefile.in: (install-headers): Use installdir variable.
10686         (installdir): Set value based on target-alias.
10687
10688 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10689
10690         * include/w32api.h: (_W32API_VERSION): Remove.
10691         (__W32API_VERSION): Add.
10692         (__W32API_MAJOR_VERSION): Ditto.
10693         (__W32API_MINOR_VERSION): Ditto.
10694
10695 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10696
10697         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10698         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10699         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10700         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10701
10702 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10703
10704         * include/mswsock.h: New file.
10705         * include/ws2tcpip.h: New file.
10706         * include/winsock.h (IPPROTO_IGMP): New define.
10707         (IPPROTO_GGP): Correct value.
10708         (SO_* macros): Remove mswsock defines.
10709         (TCP_BSDURGENT): Likewise.
10710         (IP_* macros): Add comment warning of WinSock2 incompatibility
10711         (WSARecvEx): Remove mswsock prototype.
10712         (TransmitFile): Likewise.
10713         (AcceptEx): Likewise.
10714         (GetAcceptExSockaddrs): Likewise.
10715         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10716         (#include <mswsock.h>): Add directive and explanatory comment
10717         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10718         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10719         (#include <winsock.h>): Replace directive with winsock.h file content
10720         The following changes apply to the merged file:
10721         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10722         (SOMAXCONN): Likewise
10723         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10724         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10725         in ws2tcpip.h)
10726         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10727         (FD_*_BIT and FD_* defines): Place together and extend to
10728         FD_MAX_EVENTS 10
10729         (AF* defines): Extend to AF_MAX 10
10730         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10731         (WSAUnhookBlockingHook): Likewise.
10732         (WSASetBlockingHook): Likewise.
10733         (WSACancelBlockingCall): Likewise.
10734         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10735         (#include <mswsock.h>): Delete directive inherited from winsock.h
10736         (WSA_QOS* defines): Add QualityOfService error codes.
10737         (SIO_* defines): Add new macros
10738         * include/ipexport.h (IP_STATUS flags): Add definitions.
10739         (IP_FLAG_DF): Likewise.
10740         (IP_OPT_* ): Likewise.
10741         (struct ip_option_information): Likewise.
10742         (struct icmp_echo_reply): Likewise.
10743
10744 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10745
10746         * include/commctrl.h: Revert TEXT change.
10747         * include/lmalert.h: Ditto.
10748         * include/lmcons.h: Ditto.
10749         * include/lmsname.h: Ditto.
10750         * include/lmsvc.h: Ditto.
10751         * include/ntsecapi.h: Ditto.
10752         * include/oledlg.h: Ditto.
10753         * include/ras.h: Ditto.
10754         * include/regstr.h: Ditto.
10755         * include/richedit.h: Ditto.
10756         * include/wininet.h: Ditto.
10757         * include/winnt.h: Ditto.
10758
10759 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10760
10761         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10762         * include/lmalert.h: Ditto.
10763         * include/lmcons.h: Ditto.
10764         * include/lmsname.h: Ditto.
10765         * include/lmsvc.h: Ditto.
10766         * include/ntsecapi.h: Ditto.
10767         * include/oledlg.h: Ditto.
10768         * include/ras.h: Ditto.
10769         * include/regstr.h: Ditto.
10770         * include/richedit.h: Ditto.
10771         * include/wininet.h: Ditto.
10772         * include/w32api.h: New File.
10773
10774 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10775
10776         * include/shlobj.h: Add missing SLR_* flags.
10777
10778 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10779
10780         * lib/Makefile.in: (host_alias): Add variable.
10781         (host_build): Ditto:
10782         (xinstall): Removed
10783         (xinstall-libraries): Ditto.
10784         (xinstall-headers): Ditto.
10785         (xuninstall): Ditto.
10786         (xuninstall-libraries): Ditto.
10787         (xuninstall-headers): Ditto.
10788         * Makefile.in: (host_alias): Add variable.
10789         (build_alias): Ditto.
10790
10791 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10792
10793         * include/winnt.h: (__TEXT): Add private macro.
10794         (_TEXT): Modify definition to use __TEXT.
10795         (_T): Ditto.
10796         This change allows the passing of a MACRO as an argument and have that
10797         MACRO resolved first.
10798         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10799
10800 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10801
10802         * Makefile.in: Increment VERSION to 0.5
10803         * include/winnt.h: Change TEXT to _TEXT throughout.
10804         (SID_RELEASE): Define.
10805         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10806
10807 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10808
10809         * Apply Phil Krylov patches.
10810         2001-01-19  Phil Krylov  <phil@mail.ru>
10811         * include/commctrl.h: (HDI_IMAGE) New definition.
10812         (HDI_DI_SETITEM) Ditto.
10813         (HDI_ORDER) Ditto.
10814         (HDI_FILTER) Ditto.
10815         (HDF_BITMAP_ON_RIGHT) Ditto.
10816         (HDF_IMAGE) Ditto.
10817         (HDM_SETORDERARRAY) Ditto.
10818         (Header_SetOrderArray) Ditto.
10819         (ICC_BAR_CLASSES) Ditto.
10820         (struct _HD_ITEMA) Change definition.
10821         (struct _HD_ITEMW) Ditto.
10822         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10823         (InitCommonControlsEx()) Ditto.
10824         2001-01-23  Phil Krylov  <phil@mail.ru>
10825         * include/richedit.h: Many Richedit 2.0 definitions.
10826
10827 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10828
10829         * include/winuser.h: (IDC_HAND)  New resource identifier.
10830         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10831
10832 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10833
10834         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10835         Fix typo's.
10836
10837 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10838
10839         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10840         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10841         Thanks To: <bge@users.sourceforge.net>
10842
10843 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10844
10845         * Apply Danny Smith patch 102386
10846         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10847         * lib/rasapi32.def: add symbols available in NT4 and W2k
10848
10849 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10850
10851         * Apply Danny Smith patch 102382
10852         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10853         * lib/mswsock.def: remove leading underscores from symbol names
10854
10855 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10856
10857         * Apply Danny Smith patch 102446
10858         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10859         * include/sql.h (ODBCVER): change default to 0x0351.
10860         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10861         (SQLColAttributes): likewise.
10862         (SQLBindParam): add prototype for ODBC 3.x function.
10863         (SQLCloseCursor): likewise.
10864         (SQLColAttribute): likewise.
10865         (SQLCopyDesc):likewise.
10866         (SQLEndTran): likewise.
10867         (SQLFetchScroll): likewise.
10868         (SQLGetConnectAttr): likewise.
10869         (SQLGetDescField): likewise.
10870         (SQLGetDescRec): likewise.
10871         (SQLGetDiagField): likewise.
10872         (SQLGetDiagRec): likewise.
10873         (SQLGetEnvAttr): likewise.
10874         (SQLGetStmtAttr): likewise.
10875         (SQLSetConnectAttr): likewise.
10876         (SQLSetDescField):likewise.
10877         (SQLSetDescRec): likewise.
10878         (SQLSetEnvAttr): likewise.
10879         (SQLSetStmtAttr): likewise.
10880         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10881         _WIN64 compatability;
10882         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10883         (SQL_ACTIVE_CONNECTIONS): likewise.
10884         (SQL_ACTIVE_STATEMENTS): likewise.
10885         (SQL_ALL_EXCEPT_LIKE): likewise.
10886         (SQL_API_ALL_FUNCTIONS): likewise.
10887         (SQL_API_LOADBYORDINAL): likewise.
10888         (SQL_API_SQLBINDPARAMETER): likewise.
10889         (SQL_API_SQLBROWSECONNECT): likewise.
10890         (SQL_API_SQLCOLATTRIBUTES): likewise.
10891         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10892         (SQL_API_SQLDESCRIBEPARAM): likewise.
10893         (SQL_API_SQLDRIVERCONNECT): likewise.
10894         (SQL_API_SQLDRIVERS): likewise.
10895         (SQL_API_SQLEXTENDEDFETCH): likewise.
10896         (SQL_API_SQLFOREIGNKEYS): likewise.
10897         (SQL_API_SQLMORERESULTS): likewise.
10898         (SQL_API_SQLNATIVESQL): likewise.
10899         (SQL_API_SQLNUMPARAMS): likewise.
10900         (SQL_API_SQLPARAMOPTIONS): likewise.
10901         (SQL_API_SQLPRIMARYKEYS): likewise.
10902         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10903         (SQL_API_SQLPROCEDURES): likewise.
10904         (SQL_API_SQLSETPOS): likewise.
10905         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10906         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10907         (SQL_ASYNC_ENABLE): likewise.
10908         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10909         (SQL_ASYNC_ENABLE_OFF): likewise.
10910         (SQL_ASYNC_ENABLE_ON): likewise.
10911         (SQL_ATTR_READONLY): likewise.
10912         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10913         (SQL_ATTR_WRITE): likewise.
10914         (SQL_AUTOCOMMIT): likewise.
10915         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10916         (SQL_AUTOCOMMIT_OFF): likewise.
10917         (SQL_AUTOCOMMIT_ON): likewise.
10918         (SQL_BEST_ROWID): likewise.
10919         (SQL_BIGINT): likewise.
10920         (SQL_BINARY): likewise.
10921         (SQL_BIND_BY_COLUMN): likewise.
10922         (SQL_BIND_TYPE): likewise.
10923         (SQL_BIND_TYPE_DEFAULT): likewise.
10924         (SQL_BIT): likewise.
10925         (SQL_BOOKMARK_PERSISTENCE): likewise.
10926         (SQL_BP_CLOSE): likewise.
10927         (SQL_BP_DELETE): likewise.
10928         (SQL_BP_DROP): likewise.
10929         (SQL_BP_OTHER_HSTMT): likewise.
10930         (SQL_BP_SCROLL): likewise.
10931         (SQL_BP_TRANSACTION): likewise.
10932         (SQL_BP_UPDATE): likewise.
10933         (SQL_C_BINARY): likewise.
10934         (SQL_C_BIT): likewise.
10935         (SQL_C_BOOKMARK): likewise.
10936         (SQL_C_CHAR): likewise.
10937         (SQL_C_DATE): likewise.
10938         (SQL_C_DEFAULT): likewise.
10939         (SQL_C_DOUBLE): likewise.
10940         (SQL_C_FLOAT): likewise.
10941         (SQL_C_LONG): likewise.
10942         (SQL_C_SHORT): likewise.
10943         (SQL_C_SLONG): likewise.
10944         (SQL_C_SSHORT): likewise.
10945         (SQL_C_STINYINT): likewise.
10946         (SQL_C_TIME): likewise.
10947         (SQL_C_TIMESTAMP): likewise.
10948         (SQL_C_TINYINT): likewise.
10949         (SQL_C_ULONG): likewise.
10950         (SQL_C_USHORT): likewise.
10951         (SQL_C_UTINYINT): likewise.
10952         (SQL_CB_NON_NULL): likewise.
10953         (SQL_CB_NULL): likewise.
10954         (SQL_CC_CLOSE): likewise.
10955         (SQL_CC_DELETE): likewise.
10956         (SQL_CC_PRESERVE): likewise.
10957         (SQL_CN_ANY): likewise.
10958         (SQL_CN_DIFFERENT): likewise.
10959         (SQL_CN_NONE): likewise.
10960         (SQL_COLATT_OPT_MAX): likewise.
10961         (SQL_COLATT_OPT_MIN): likewise.
10962         (SQL_COLUMN_ALIAS): likewise.
10963         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10964         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10965         (SQL_COLUMN_COUNT): likewise.
10966         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10967         (SQL_COLUMN_DRIVER_START): likewise.
10968         (SQL_COLUMN_LABEL): likewise.
10969         (SQL_COLUMN_LENGTH): likewise.
10970         (SQL_COLUMN_MONEY): likewise.
10971         (SQL_COLUMN_NAME): likewise.
10972         (SQL_COLUMN_NULLABLE): likewise.
10973         (SQL_COLUMN_OWNER_NAME): likewise.
10974         (SQL_COLUMN_PRECISION): likewise.
10975         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10976         (SQL_COLUMN_SCALE): likewise.
10977         (SQL_COLUMN_SEARCHABLE): likewise.
10978         (SQL_COLUMN_TABLE_NAME): likewise.
10979         (SQL_COLUMN_TYPE): likewise.
10980         (SQL_COLUMN_TYPE_NAME): likewise.
10981         (SQL_COLUMN_UNSIGNED): likewise.
10982         (SQL_COLUMN_UPDATABLE): likewise.
10983         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10984         (SQL_CONCUR_DEFAULT): likewise.
10985         (SQL_CONCUR_LOCK): likewise.
10986         (SQL_CONCUR_READ_ONLY): likewise.
10987         (SQL_CONCUR_ROWVER): likewise.
10988         (SQL_CONCUR_TIMESTAMP): likewise.
10989         (SQL_CONCUR_VALUES): likewise.
10990         (SQL_CONCURRENCY): likewise.
10991         (SQL_CONN_OPT_MAX): likewise.
10992         (SQL_CONN_OPT_MIN): likewise.
10993         (SQL_CONNECT_OPT_DRVR_START): likewise.
10994         (SQL_CONVERT_BIGINT): likewise.
10995         (SQL_CONVERT_BINARY): likewise.
10996         (SQL_CONVERT_BIT): likewise.
10997         (SQL_CONVERT_CHAR): likewise.
10998         (SQL_CONVERT_DATE): likewise.
10999         (SQL_CONVERT_DECIMAL): likewise.
11000         (SQL_CONVERT_DOUBLE): likewise.
11001         (SQL_CONVERT_FLOAT): likewise.
11002         (SQL_CONVERT_FUNCTIONS): likewise.
11003         (SQL_CONVERT_INTEGER): likewise.
11004         (SQL_CONVERT_LONGVARBINARY): likewise.
11005         (SQL_CONVERT_LONGVARCHAR): likewise.
11006         (SQL_CONVERT_NUMERIC): likewise.
11007         (SQL_CONVERT_REAL): likewise.
11008         (SQL_CONVERT_SMALLINT): likewise.
11009         (SQL_CONVERT_TIME): likewise.
11010         (SQL_CONVERT_TIMESTAMP): likewise.
11011         (SQL_CONVERT_TINYINT): likewise.
11012         (SQL_CONVERT_VARBINARY): likewise.
11013         (SQL_CONVERT_VARCHAR): likewise.
11014         (SQL_CORRELATION_NAME): likewise.
11015         (SQL_CR_CLOSE): likewise.
11016         (SQL_CR_DELETE): likewise.
11017         (SQL_CR_PRESERVE): likewise.
11018         (SQL_CUR_DEFAULT): likewise.
11019         (SQL_CUR_USE_DRIVER): likewise.
11020         (SQL_CUR_USE_IF_NEEDED): likewise.
11021         (SQL_CUR_USE_ODBC): likewise.
11022         (SQL_CURRENT_QUALIFIER): likewise.
11023         (SQL_CURSOR_DYNAMIC): likewise.
11024         (SQL_CURSOR_FORWARD_ONLY): likewise.
11025         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
11026         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
11027         (SQL_CURSOR_STATIC): likewise.
11028         (SQL_CURSOR_TYPE): likewise.
11029         (SQL_CURSOR_TYPE_DEFAULT): likewise.
11030         (SQL_CVT_BIGINT): likewise.
11031         (SQL_CVT_BINARY): likewise.
11032         (SQL_CVT_BIT): likewise.
11033         (SQL_CVT_CHAR): likewise.
11034         (SQL_CVT_DATE): likewise.
11035         (SQL_CVT_DECIMAL): likewise.
11036         (SQL_CVT_DOUBLE): likewise.
11037         (SQL_CVT_FLOAT): likewise.
11038         (SQL_CVT_INTEGER): likewise.
11039         (SQL_CVT_LONGVARBINARY): likewise.
11040         (SQL_CVT_LONGVARCHAR): likewise.
11041         (SQL_CVT_NUMERIC): likewise.
11042         (SQL_CVT_REAL): likewise.
11043         (SQL_CVT_SMALLINT): likewise.
11044         (SQL_CVT_TIME): likewise.
11045         (SQL_CVT_TIMESTAMP): likewise.
11046         (SQL_CVT_TINYINT): likewise.
11047         (SQL_CVT_VARBINARY): likewise.
11048         (SQL_CVT_VARCHAR): likewise.
11049         (SQL_DATABASE_NAME): likewise.
11050         (SQL_DATE): likewise.
11051         (SQL_DRIVER_HDBC): likewise.
11052         (SQL_DRIVER_HENV): likewise.
11053         (SQL_DRIVER_HLIB): likewise.
11054         (SQL_DRIVER_HSTMT): likewise.
11055         (SQL_DRIVER_NAME): likewise.
11056         (SQL_DRIVER_ODBC_VER): likewise.
11057         (SQL_DRIVER_VER): likewise.
11058         (SQL_ENSURE): likewise.
11059         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
11060         (SQL_EXT_API_LAST): likewise.
11061         (SQL_EXT_API_START): likewise.
11062         (SQL_FD_FETCH_BOOKMARK): likewise.
11063         (SQL_FD_FETCH_PREV): likewise.
11064         (SQL_FD_FETCH_RESUME): likewise.
11065         (SQL_FETCH_PREV): likewise.
11066         (SQL_FETCH_RESUME): likewise.
11067         (SQL_FILE_NOT_SUPPORTED): likewise.
11068         (SQL_FILE_QUALIFIER): likewise.
11069         (SQL_FILE_TABLE): likewise.
11070         (SQL_FILE_USAGE): likewise.
11071         (SQL_FN_CVT_CONVERT): likewise.
11072         (SQL_FN_NUM_ABS): likewise.
11073         (SQL_FN_NUM_ACOS): likewise.
11074         (SQL_FN_NUM_ASIN): likewise.
11075         (SQL_FN_NUM_ATAN): likewise.
11076         (SQL_FN_NUM_ATAN2): likewise.
11077         (SQL_FN_NUM_CEILING): likewise.
11078         (SQL_FN_NUM_COS): likewise.
11079         (SQL_FN_NUM_COT): likewise.
11080         (SQL_FN_NUM_DEGREES): likewise.
11081         (SQL_FN_NUM_EXP): likewise.
11082         (SQL_FN_NUM_FLOOR): likewise.
11083         (SQL_FN_NUM_LOG): likewise.
11084         (SQL_FN_NUM_LOG10): likewise.
11085         (SQL_FN_NUM_MOD): likewise.
11086         (SQL_FN_NUM_PI): likewise.
11087         (SQL_FN_NUM_POWER): likewise.
11088         (SQL_FN_NUM_RADIANS): likewise.
11089         (SQL_FN_NUM_RAND): likewise.
11090         (SQL_FN_NUM_ROUND): likewise.
11091         (SQL_FN_NUM_SIGN): likewise.
11092         (SQL_FN_NUM_SIN): likewise.
11093         (SQL_FN_NUM_SQRT): likewise.
11094         (SQL_FN_NUM_TAN): likewise.
11095         (SQL_FN_NUM_TRUNCATE): likewise.
11096         (SQL_FN_STR_ASCII): likewise.
11097         (SQL_FN_STR_CHAR): likewise.
11098         (SQL_FN_STR_CONCAT): likewise.
11099         (SQL_FN_STR_DIFFERENCE): likewise.
11100         (SQL_FN_STR_INSERT): likewise.
11101         (SQL_FN_STR_LCASE): likewise.
11102         (SQL_FN_STR_LEFT): likewise.
11103         (SQL_FN_STR_LENGTH): likewise.
11104         (SQL_FN_STR_LOCATE): likewise.
11105         (SQL_FN_STR_LOCATE_2): likewise.
11106         (SQL_FN_STR_LTRIM): likewise.
11107         (SQL_FN_STR_REPEAT): likewise.
11108         (SQL_FN_STR_REPLACE): likewise.
11109         (SQL_FN_STR_RIGHT): likewise.
11110         (SQL_FN_STR_RTRIM): likewise.
11111         (SQL_FN_STR_SOUNDEX): likewise.
11112         (SQL_FN_STR_SPACE): likewise.
11113         (SQL_FN_STR_SUBSTRING): likewise.
11114         (SQL_FN_STR_UCASE): likewise.
11115         (SQL_FN_SYS_DBNAME): likewise.
11116         (SQL_FN_SYS_IFNULL): likewise.
11117         (SQL_FN_SYS_USERNAME): likewise.
11118         (SQL_FN_TD_CURDATE): likewise.
11119         (SQL_FN_TD_CURTIME): likewise.
11120         (SQL_FN_TD_DAYNAME): likewise.
11121         (SQL_FN_TD_DAYOFMONTH): likewise.
11122         (SQL_FN_TD_DAYOFWEEK): likewise.
11123         (SQL_FN_TD_DAYOFYEAR): likewise.
11124         (SQL_FN_TD_HOUR): likewise.
11125         (SQL_FN_TD_MINUTE): likewise.
11126         (SQL_FN_TD_MONTH): likewise.
11127         (SQL_FN_TD_MONTHNAME): likewise.
11128         (SQL_FN_TD_NOW): likewise.
11129         (SQL_FN_TD_QUARTER): likewise.
11130         (SQL_FN_TD_SECOND): likewise.
11131         (SQL_FN_TD_TIMESTAMPadd): likewise.
11132         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
11133         (SQL_FN_TD_WEEK): likewise.
11134         (SQL_FN_TD_YEAR): likewise.
11135         (SQL_FN_TSI_DAY): likewise.
11136         (SQL_FN_TSI_FRAC_SECOND): likewise.
11137         (SQL_FN_TSI_HOUR): likewise.
11138         (SQL_FN_TSI_MINUTE): likewise.
11139         (SQL_FN_TSI_MONTH): likewise.
11140         (SQL_FN_TSI_QUARTER): likewise.
11141         (SQL_FN_TSI_SECOND): likewise.
11142         (SQL_FN_TSI_WEEK): likewise.
11143         (SQL_FN_TSI_YEAR): likewise.
11144         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
11145         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
11146         (SQL_GB_NO_RELATION): likewise.
11147         (SQL_GB_NOT_SUPPORTED): likewise.
11148         (SQL_GD_BLOCK): likewise.
11149         (SQL_GD_BOUND): likewise.
11150         (SQL_GET_BOOKMARK): likewise.
11151         (SQL_GROUP_BY): likewise.
11152         (SQL_INFO_DRIVER_START): likewise.
11153         (SQL_INFO_FIRST): likewise.
11154         (SQL_INFO_LAST): likewise.
11155         (SQL_INTERVAL_DAY): likewise.
11156         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
11157         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
11158         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
11159         (SQL_INTERVAL_HOUR): likewise.
11160         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
11161         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
11162         (SQL_INTERVAL_MINUTE): likewise.
11163         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11164         (SQL_INTERVAL_MONTH): likewise.
11165         (SQL_INTERVAL_SECOND): likewise.
11166         (SQL_INTERVAL_YEAR): likewise.
11167         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11168         (SQL_KEYSET_SIZE): likewise.
11169         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11170         (SQL_KEYWORDS): likewise.
11171         (SQL_LCK_EXCLUSIVE): likewise.
11172         (SQL_LCK_NO_CHANGE): likewise.
11173         (SQL_LCK_UNLOCK): likewise.
11174         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11175         (SQL_LIKE_ONLY): likewise.
11176         (SQL_LOCK_TYPES): likewise.
11177         (SQL_LOGIN_TIMEOUT): likewise.
11178         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11179         (SQL_LONGVARBINARY): likewise.
11180         (SQL_LONGVARCHAR): likewise.
11181         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11182         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11183         (SQL_MAX_DSN_LENGTH): likewise.
11184         (SQL_MAX_LENGTH): likewise.
11185         (SQL_MAX_LENGTH_DEFAULT): likewise.
11186         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11187         (SQL_MAX_OWNER_NAME_LEN): likewise.
11188         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11189         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11190         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11191         (SQL_MAX_ROWS): likewise.
11192         (SQL_MAX_ROWS_DEFAULT): likewise.
11193         (SQL_MODE_DEFAULT): likewise.
11194         (SQL_MODE_READ_ONLY): likewise.
11195         (SQL_MODE_READ_WRITE): likewise.
11196         (SQL_MULT_RESULT_SETS): likewise.
11197         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11198         (SQL_NC_END): likewise.
11199         (SQL_NC_START): likewise.
11200         (SQL_NEED_LONG_DATA_LEN): likewise.
11201         (SQL_NNC_NON_NULL): likewise.
11202         (SQL_NNC_NULL): likewise.
11203         (SQL_NO_TOTAL): likewise.
11204         (SQL_NON_NULLABLE_COLUMNS): likewise.
11205         (SQL_NOSCAN): likewise.
11206         (SQL_NOSCAN_DEFAULT): likewise.
11207         (SQL_NOSCAN_OFF): likewise.
11208         (SQL_NOSCAN_ON): likewise.
11209         (SQL_NUM_EXTENSIONS): likewise.
11210         (SQL_NUM_FUNCTIONS): likewise.
11211         (SQL_NUMERIC_FUNCTIONS): likewise.
11212         (SQL_OAC_LEVEL1): likewise.
11213         (SQL_OAC_LEVEL2): likewise.
11214         (SQL_OAC_NONE): likewise.
11215         (SQL_ODBC_API_CONFORMANCE): likewise.
11216         (SQL_ODBC_CURSORS): likewise.
11217         (SQL_ODBC_KEYWORDS): likewise.
11218         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11219         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11220         (SQL_ODBC_SQL_OPT_IEF): likewise.
11221         (SQL_ODBC_VER): likewise.
11222         (SQL_OPT_TRACE): likewise.
11223         (SQL_OPT_TRACE_DEFAULT): likewise.
11224         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11225         (SQL_OPT_TRACE_OFF): likewise.
11226         (SQL_OPT_TRACE_ON): likewise.
11227         (SQL_OPT_TRACEFILE): likewise.
11228         (SQL_OSC_CORE): likewise.
11229         (SQL_OSC_EXTENDED): likewise.
11230         (SQL_OSC_MINIMUM): likewise.
11231         (SQL_OSCC_COMPLIANT): likewise.
11232         (SQL_OSCC_NOT_COMPLIANT): likewise.
11233         (SQL_OU_DML_STATEMENTS): likewise.
11234         (SQL_OU_INDEX_DEFINITION): likewise.
11235         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11236         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11237         (SQL_OU_TABLE_DEFINITION): likewise.
11238         (SQL_OUTER_JOINS): likewise.
11239         (SQL_OWNER_TERM): likewise.
11240         (SQL_OWNER_USAGE): likewise.
11241         (SQL_PACKET_SIZE): likewise.
11242         (SQL_PC_NOT_PSEUDO): likewise.
11243         (SQL_POS_add): likewise.
11244         (SQL_POS_DELETE): likewise.
11245         (SQL_POS_OPERATIONS): likewise.
11246         (SQL_POS_POSITION): likewise.
11247         (SQL_POS_REFRESH): likewise.
11248         (SQL_POS_UPDATE): likewise.
11249         (SQL_POSITIONED_STATEMENTS): likewise.
11250         (SQL_PROCEDURE_TERM): likewise.
11251         (SQL_PROCEDURES): likewise.
11252         (SQL_PS_POSITIONED_DELETE): likewise.
11253         (SQL_PS_POSITIONED_UPDATE): likewise.
11254         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11255         (SQL_QL_END): likewise.
11256         (SQL_QL_START): likewise.
11257         (SQL_QU_DML_STATEMENTS): likewise.
11258         (SQL_QU_INDEX_DEFINITION): likewise.
11259         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11260         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11261         (SQL_QU_TABLE_DEFINITION): likewise.
11262         (SQL_QUALIFIER_LOCATION): likewise.
11263         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11264         (SQL_QUALIFIER_TERM): likewise.
11265         (SQL_QUALIFIER_USAGE): likewise.
11266         (SQL_QUERY_TIMEOUT): likewise.
11267         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11268         (SQL_QUICK): likewise.
11269         (SQL_QUIET_MODE): likewise.
11270         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11271         (SQL_RD_DEFAULT): likewise.
11272         (SQL_RD_OFF): likewise.
11273         (SQL_RD_ON): likewise.
11274         (SQL_RETRIEVE_DATA): likewise.
11275         (SQL_ROW_NUMBER): likewise.
11276         (SQL_ROW_UPDATES): likewise.
11277         (SQL_ROWSET_SIZE): likewise.
11278         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11279         (SQL_ROWVER): likewise.
11280         (SQL_SC_NON_UNIQUE): likewise.
11281         (SQL_SC_TRY_UNIQUE): likewise.
11282         (SQL_SC_UNIQUE): likewise.
11283         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11284         (SQL_SCROLL_DYNAMIC): likewise.
11285         (SQL_SCROLL_FORWARD_ONLY): likewise.
11286         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11287         (SQL_SCROLL_OPTIONS): likewise.
11288         (SQL_SCROLL_STATIC): likewise.
11289         (SQL_SEARCHABLE): likewise.
11290         (SQL_SIGNED_OFFSET): likewise.
11291         (SQL_SIMULATE_CURSOR): likewise.
11292         (SQL_SO_DYNAMIC): likewise.
11293         (SQL_SO_FORWARD_ONLY): likewise.
11294         (SQL_SO_KEYSET_DRIVEN): likewise.
11295         (SQL_SO_MIXED): likewise.
11296         (SQL_SO_STATIC): likewise.
11297         (SQL_SPEC_MAJOR): likewise.
11298         (SQL_SPEC_MINOR): likewise.
11299         (SQL_SPEC_STRING): likewise.
11300         (SQL_SQ_COMPARISON): likewise.
11301         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11302         (SQL_SQ_EXISTS): likewise.
11303         (SQL_SQ_IN): likewise.
11304         (SQL_SQ_QUANTIFIED): likewise.
11305         (SQL_SQLSTATE_SIZE): likewise.
11306         (SQL_SS_addITIONS): likewise.
11307         (SQL_SS_DELETIONS): likewise.
11308         (SQL_SS_UPDATES): likewise.
11309         (SQL_STATIC_SENSITIVITY): likewise.
11310         (SQL_STMT_OPT_MAX): likewise.
11311         (SQL_STMT_OPT_MIN): likewise.
11312         (SQL_STRING_FUNCTIONS): likewise.
11313         (SQL_SUBQUERIES): likewise.
11314         (SQL_SYSTEM_FUNCTIONS): likewise.
11315         (SQL_TABLE_STAT): likewise.
11316         (SQL_TABLE_TERM): likewise.
11317         (SQL_TIME): likewise.
11318         (SQL_TIMEDATE_add_INTERVALS): likewise.
11319         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11320         (SQL_TIMEDATE_FUNCTIONS): likewise.
11321         (SQL_TIMESTAMP): likewise.
11322         (SQL_TINYINT): likewise.
11323         (SQL_TRANSLATE_DLL): likewise.
11324         (SQL_TRANSLATE_OPTION): likewise.
11325         (SQL_TXN_ISOLATION): likewise.
11326         (SQL_TXN_VERSIONING): likewise.
11327         (SQL_TYPE_DRIVER_END): likewise.
11328         (SQL_TYPE_DRIVER_START): likewise.
11329         (SQL_TYPE_MAX): likewise.
11330         (SQL_TYPE_MIN): likewise.
11331         (SQL_TYPE_NULL): likewise.
11332         (SQL_U_UNION): likewise.
11333         (SQL_U_UNION_ALL): likewise.
11334         (SQL_UB_DEFAULT): likewise.
11335         (SQL_UB_OFF): likewise.
11336         (SQL_UB_ON): likewise.
11337         (SQL_UNICODE): likewise.
11338         (SQL_UNICODE_CHAR): likewise.
11339         (SQL_UNICODE_LONGVARCHAR): likewise.
11340         (SQL_UNICODE_VARCHAR): likewise.
11341         (SQL_UNION): likewise.
11342         (SQL_UNSEARCHABLE): likewise.
11343         (SQL_UNSIGNED_OFFSET): likewise.
11344         (SQL_USE_BOOKMARKS): likewise.
11345         (SQL_VARBINARY): likewise.
11346         (SQL_TRUE): add define for ODBC3.x.
11347         (SQL_FALSE): likewise.
11348         (SQL_AM_CONNECTION): likewise.
11349         (SQL_AM_NONE): likewise.
11350         (SQL_AM_STATEMENT): likewise.
11351         (SQL_API_SQLALLOCHANDLE): likewise.
11352         (SQL_API_SQLBINDPARAM): likewise.
11353         (SQL_API_SQLCLOSECURSOR): likewise.
11354         (SQL_API_SQLCOLATTRIBUTE): likewise.
11355         (SQL_API_SQLCOPYDESC): likewise.
11356         (SQL_API_SQLENDTRAN): likewise.
11357         (SQL_API_SQLFETCHSCROLL): likewise.
11358         (SQL_API_SQLFREEHANDLE): likewise.
11359         (SQL_API_SQLGETCONNECTATTR): likewise.
11360         (SQL_API_SQLGETDESCFIELD): likewise.
11361         (SQL_API_SQLGETDESCREC): likewise.
11362         (SQL_API_SQLGETDIAGFIELD): likewise.
11363         (SQL_API_SQLGETDIAGREC): likewise.
11364         (SQL_API_SQLGETENVATTR): likewise.
11365         (SQL_API_SQLGETSTMTATTR): likewise.
11366         (SQL_API_SQLSETCONNECTATTR): likewise.
11367         (SQL_API_SQLSETDESCFIELD): likewise.
11368         (SQL_API_SQLSETDESCREC): likewise.
11369         (SQL_API_SQLSETENVATTR): likewise.
11370         (SQL_API_SQLSETSTMTATTR): likewise.
11371         (SQL_ARD_TYPE): likewise.
11372         (SQL_AT_add_CONSTRAINT): likewise.
11373         (SQL_ATTR_APP_PARAM_DESC): likewise.
11374         (SQL_ATTR_APP_ROW_DESC): likewise.
11375         (SQL_ATTR_AUTO_IPD): likewise.
11376         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11377         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11378         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11379         (SQL_ATTR_IMP_ROW_DESC): likewise.
11380         (SQL_ATTR_METADATA_ID): likewise.
11381         (SQL_ATTR_OUTPUT_NTS): likewise.
11382         (SQL_CATALOG_NAME): likewise.
11383         (SQL_CODE_DATE): likewise.
11384         (SQL_CODE_TIME): likewise.
11385         (SQL_CODE_TIMESTAMP): likewise.
11386         (SQL_COLLATION_SEQ): likewise.
11387         (SQL_CURSOR_SENSITIVITY): likewise.
11388         (SQL_DATE_LEN): likewise.
11389         (SQL_DATETIME): likewise.
11390         (SQL_DEFAULT): likewise.
11391         (SQL_DESC_ALLOC_AUTO): likewise.
11392         (SQL_DESC_ALLOC_TYPE): likewise.
11393         (SQL_DESC_ALLOC_USER): likewise.
11394         (SQL_DESC_COUNT): likewise.
11395         (SQL_DESC_DATA_PTR): likewise.
11396         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11397         (SQL_DESC_INDICATOR_PTR): likewise.
11398         (SQL_DESC_LENGTH): likewise.
11399         (SQL_DESC_NAME): likewise.
11400         (SQL_DESC_NULLABLE): likewise.
11401         (SQL_DESC_OCTET_LENGTH): likewise.
11402         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11403         (SQL_DESC_PRECISION): likewise.
11404         (SQL_DESC_SCALE): likewise.
11405         (SQL_DESC_TYPE): likewise.
11406         (SQL_DESC_UNNAMED): likewise.
11407         (SQL_DESCRIBE_PARAMETER): likewise.
11408         (SQL_DIAG_ALTER_DOMAIN): likewise.
11409         (SQL_DIAG_ALTER_TABLE): likewise.
11410         (SQL_DIAG_CALL): likewise.
11411         (SQL_DIAG_CLASS_ORIGIN): likewise.
11412         (SQL_DIAG_CONNECTION_NAME): likewise.
11413         (SQL_DIAG_CREATE_ASSERTION): likewise.
11414         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11415         (SQL_DIAG_CREATE_COLLATION): likewise.
11416         (SQL_DIAG_CREATE_DOMAIN): likewise.
11417         (SQL_DIAG_CREATE_INDEX): likewise.
11418         (SQL_DIAG_CREATE_SCHEMA): likewise.
11419         (SQL_DIAG_CREATE_TABLE): likewise.
11420         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11421         (SQL_DIAG_CREATE_VIEW): likewise.
11422         (SQL_DIAG_DELETE_WHERE): likewise.
11423         (SQL_DIAG_DROP_ASSERTION): likewise.
11424         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11425         (SQL_DIAG_DROP_COLLATION): likewise.
11426         (SQL_DIAG_DROP_DOMAIN): likewise.
11427         (SQL_DIAG_DROP_INDEX): likewise.
11428         (SQL_DIAG_DROP_SCHEMA): likewise.
11429         (SQL_DIAG_DROP_TABLE): likewise.
11430         (SQL_DIAG_DROP_TRANSLATION): likewise.
11431         (SQL_DIAG_DROP_VIEW): likewise.
11432         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11433         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11434         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11435         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11436         (SQL_DIAG_GRANT): likewise.
11437         (SQL_DIAG_INSERT): likewise.
11438         (SQL_DIAG_MESSAGE_TEXT): likewise.
11439         (SQL_DIAG_NATIVE): likewise.
11440         (SQL_DIAG_NUMBER): likewise.
11441         (SQL_DIAG_RETURNCODE): likewise.
11442         (SQL_DIAG_REVOKE): likewise.
11443         (SQL_DIAG_ROW_COUNT): likewise.
11444         (SQL_DIAG_SELECT_CURSOR): likewise.
11445         (SQL_DIAG_SERVER_NAME): likewise.
11446         (SQL_DIAG_SQLSTATE): likewise.
11447         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11448         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11449         (SQL_DIAG_UPDATE_WHERE): likewise.
11450         (SQL_FALSE): likewise.
11451         (SQL_FETCH_ABSOLUTE): likewise.
11452         (SQL_FETCH_LAST): likewise.
11453         (SQL_FETCH_PRIOR): likewise.
11454         (SQL_FETCH_RELATIVE): likewise.
11455         (SQL_HANDLE_DBC): likewise.
11456         (SQL_HANDLE_DESC): likewise.
11457         (SQL_HANDLE_ENV): likewise.
11458         (SQL_HANDLE_STMT): likewise.
11459         (SQL_INSENSITIVE): likewise.
11460         (SQL_INTEGRITY): likewise.
11461         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11462         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11463         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11464         (SQL_MAX_IDENTIFIER_LEN): likewise.
11465         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11466         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11467         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11468         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11469         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11470         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11471         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11472         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11473         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11474         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11475         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11476         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11477         (SQL_MAXIMUM_ROW_SIZE): likewise.
11478         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11479         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11480         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11481         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11482         (SQL_NAMED): likewise.
11483         (SQL_NONSCROLLABLE): likewise.
11484         (SQL_NTSL): likewise.
11485         (SQL_NULL_HANDLE): likewise.
11486         (SQL_NULL_HDESC): likewise.
11487         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11488         (SQL_PRED_BASIC): likewise.
11489         (SQL_PRED_CHAR): likewise.
11490         (SQL_PRED_NONE): likewise.
11491         (SQL_ROW_IDENTIFIER): likewise.
11492         (SQL_SCROLLABLE): likewise.
11493         (SQL_SENSITIVE): likewise.
11494         (SQL_SUCCEEDED(rc)): likewise.
11495         (SQL_TIME_LEN): likewise.
11496         (SQL_TIMESTAMP_LEN): likewise.
11497         (SQL_TRANSACTION_CAPABLE): likewise.
11498         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11499         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11500         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11501         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11502         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11503         (SQL_TYPE_DATE): likewise.
11504         (SQL_TYPE_TIME): likewise.
11505         (SQL_TYPE_TIMESTAMP): likewise.
11506         (SQL_UNKNOWN_TYPE): likewise.
11507         (SQL_UNNAMED): likewise.
11508         (SQL_UNSPECIFIED): likewise.
11509         (SQL_XOPEN_CLI_YEAR): likewise.
11510         (SQLAllocConnect): add comment marking as deperecated.
11511         (SQLAllocEnv): likewise.
11512         (SQLAllocStmt): likewise.
11513         (SQLFreeConnect): likewise.
11514         (SQLFreeEnv): likewise.
11515         (SQLGetConnectOption): likewise.
11516         (SQLGetStmtOption): likewise.
11517
11518         * include/sqlext.h (#include <sqlucode.h>): add directive.
11519         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11520         (SQLColAttributes): likewise.
11521         (SQLBulkOperations): add function prototype.
11522         (SQLAllocHandleStd): likewise
11523         (TraceReturn): add Trace API prototype.
11524         (TraceVersion): likewise.
11525         (ODBCGetTryWaitValue):likewise.
11526         (ODBCSetTryWaitValue): likewise.
11527         (SQL_LOCK_RECORD): correct function macro.
11528         (SQL_REFRESH_RECORD): likewise.
11529         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11530         _WIN64 compatability.
11531         move defines for non-core functions from sql.h to sqlext.h (refer
11532         changes for sql.h)
11533         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11534         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11535         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11536         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11537         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11538         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11539         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11540         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11541         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11542         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11543         (SQL_AF_ALL): likewise.
11544         (SQL_AF_AVG): likewise.
11545         (SQL_AF_COUNT): likewise.
11546         (SQL_AF_DISTINCT): likewise.
11547         (SQL_AF_MAX): likewise.
11548         (SQL_AF_MIN): likewise.
11549         (SQL_AF_SUM): likewise.
11550         (SQL_AGGREGATE_FUNCTIONS): likewise.
11551         (SQL_ALL_CATALOGS): likewise.
11552         (SQL_ALL_SCHEMAS): likewise.
11553         (SQL_ALL_TABLE_TYPES): likewise.
11554         (SQL_ALTER_DOMAIN): likewise.
11555         (SQL_AM_CONNECTION): likewise.
11556         (SQL_AM_NONE): likewise.
11557         (SQL_AM_STATEMENT): likewise.
11558         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11559         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11560         (SQL_API_SQLALLOCHANDLESTD): likewise.
11561         (SQL_API_SQLBULKOPERATIONS): likewise.
11562         (SQL_ASYNC_MODE): likewise.
11563         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11564         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11565         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11566         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11567         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11568         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11569         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11570         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11571         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11572         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11573         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11574         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11575         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11576         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11577         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11578         (SQL_ATTR_ACCESS_MODE): likewise.
11579         (SQL_ATTR_ASYNC_ENABLE): likewise.
11580         (SQL_ATTR_AUTOCOMMIT): likewise.
11581         (SQL_ATTR_CONCURRENCY): likewise.
11582         (SQL_ATTR_CONNECTION_POOLING): likewise.
11583         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11584         (SQL_ATTR_CP_MATCH): likewise.
11585         (SQL_ATTR_CURRENT_CATALOG): likewise.
11586         (SQL_ATTR_CURSOR_TYPE): likewise.
11587         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11588         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11589         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11590         (SQL_ATTR_ENLIST_IN_XA): likewise.
11591         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11592         (SQL_ATTR_KEYSET_SIZE): likewise.
11593         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11594         (SQL_ATTR_MAX_LENGTH): likewise.
11595         (SQL_ATTR_MAX_ROWS): likewise.
11596         (SQL_ATTR_NOSCAN): likewise.
11597         (SQL_ATTR_ODBC_CURSORS): likewise.
11598         (SQL_ATTR_ODBC_VERSION): likewise.
11599         (SQL_ATTR_PACKET_SIZE): likewise.
11600         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11601         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11602         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11603         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11604         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11605         (SQL_ATTR_PARAMSET_SIZE): likewise.
11606         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11607         (SQL_ATTR_QUIET_MODE): likewise.
11608         (SQL_ATTR_RETRIEVE_DATA): likewise.
11609         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11610         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11611         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11612         (SQL_ATTR_ROW_NUMBER): likewise.
11613         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11614         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11615         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11616         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11617         (SQL_ATTR_TRACE): likewise.
11618         (SQL_ATTR_TRACEFILE): likewise.
11619         (SQL_ATTR_TRANSLATE_LIB): likewise.
11620         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11621         (SQL_ATTR_TXN_ISOLATION): likewise.
11622         (SQL_ATTR_USE_BOOKMARKS): likewise.
11623         (SQL_BATCH_ROW_COUNT): likewise.
11624         (SQL_BATCH_SUPPORT): likewise.
11625         (SQL_BRC_EXPLICIT): likewise.
11626         (SQL_BRC_PROCEDURES): likewise.
11627         (SQL_BRC_ROLLED_UP): likewise.
11628         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11629         (SQL_BS_ROW_COUNT_PROC): likewise.
11630         (SQL_BS_SELECT_EXPLICIT): likewise.
11631         (SQL_BS_SELECT_PROC): likewise.
11632         (SQL_C_INTERVAL_DAY): likewise.
11633         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11634         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11635         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11636         (SQL_C_INTERVAL_HOUR): likewise.
11637         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11638         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11639         (SQL_C_INTERVAL_MINUTE): likewise.
11640         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11641         (SQL_C_INTERVAL_MONTH): likewise.
11642         (SQL_C_INTERVAL_SECOND): likewise.
11643         (SQL_C_INTERVAL_YEAR): likewise.
11644         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11645         (SQL_C_NUMERIC): likewise.
11646         (SQL_C_SBIGINT): likewise.
11647         (SQL_C_TYPE_DATE): likewise.
11648         (SQL_C_TYPE_TIME): likewise.
11649         (SQL_C_TYPE_TIMESTAMP): likewise.
11650         (SQL_C_UBIGINT): likewise.
11651         (SQL_C_VARBOOKMARK): likewise.
11652         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11653         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11654         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11655         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11656         (SQL_CA_CREATE_ASSERTION): likewise.
11657         (SQL_CA1_ABSOLUTE): likewise.
11658         (SQL_CA1_BOOKMARK): likewise.
11659         (SQL_CA1_BULK_ADD): likewise.
11660         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11661         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11662         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11663         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11664         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11665         (SQL_CA1_LOCK_UNLOCK): likewise.
11666         (SQL_CA1_NEXT): likewise.
11667         (SQL_CA1_POS_DELETE): likewise.
11668         (SQL_CA1_POS_POSITION): likewise.
11669         (SQL_CA1_POS_REFRESH): likewise.
11670         (SQL_CA1_POS_UPDATE): likewise.
11671         (SQL_CA1_POSITIONED_DELETE): likewise.
11672         (SQL_CA1_POSITIONED_UPDATE): likewise.
11673         (SQL_CA1_RELATIVE): likewise.
11674         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11675         (SQL_CA2_CRC_APPROXIMATE): likewise.
11676         (SQL_CA2_CRC_EXACT): likewise.
11677         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11678         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11679         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11680         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11681         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11682         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11683         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11684         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11685         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11686         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11687         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11688         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11689         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11690         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11691         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11692         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11693         (SQL_CATALOG_LOCATION): likewise.
11694         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11695         (SQL_CATALOG_TERM): likewise.
11696         (SQL_CATALOG_USAGE): likewise.
11697         (SQL_CCOL_CREATE_COLLATION): likewise.
11698         (SQL_CCS_COLLATE_CLAUSE): likewise.
11699         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11700         (SQL_CCS_LIMITED_COLLATION): likewise.
11701         (SQL_CDO_COLLATION): likewise.
11702         (SQL_CDO_CONSTRAINT): likewise.
11703         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11704         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11705         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11706         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11707         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11708         (SQL_CDO_CREATE_DOMAIN): likewise.
11709         (SQL_CDO_DEFAULT): likewise.
11710         (SQL_CL_END): likewise.
11711         (SQL_CL_START): likewise.
11712         (SQL_COL_PRED_BASIC): likewise.
11713         (SQL_COL_PRED_CHAR): likewise.
11714         (SQL_COLUMN_DRIVER_START): likewise.
11715         (SQL_COLUMN_IGNORE): likewise.
11716         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11717         (SQL_CONVERT_GUID): likewise.
11718         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11719         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11720         (SQL_CONVERT_WCHAR): likewise.
11721         (SQL_CONVERT_WLONGVARCHAR): likewise.
11722         (SQL_CONVERT_WVARCHAR): likewise.
11723         (SQL_CP_DEFAULT): likewise.
11724         (SQL_CP_MATCH_DEFAULT): likewise.
11725         (SQL_CP_OFF): likewise.
11726         (SQL_CP_ONE_PER_DRIVER): likewise.
11727         (SQL_CP_ONE_PER_HENV): likewise.
11728         (SQL_CP_RELAXED_MATCH): likewise.
11729         (SQL_CP_STRICT_MATCH): likewise.
11730         (SQL_CREATE_ASSERTION): likewise.
11731         (SQL_CREATE_CHARACTER_SET): likewise.
11732         (SQL_CREATE_COLLATION): likewise.
11733         (SQL_CREATE_DOMAIN): likewise.
11734         (SQL_CREATE_SCHEMA): likewise.
11735         (SQL_CREATE_TABLE): likewise.
11736         (SQL_CREATE_TRANSLATION): likewise.
11737         (SQL_CREATE_VIEW): likewise.
11738         (SQL_CS_AUTHORIZATION): likewise.
11739         (SQL_CS_CREATE_SCHEMA): likewise.
11740         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11741         (SQL_CT_COLUMN_COLLATION): likewise.
11742         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11743         (SQL_CT_COLUMN_DEFAULT): likewise.
11744         (SQL_CT_COMMIT_DELETE): likewise.
11745         (SQL_CT_COMMIT_PRESERVE): likewise.
11746         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11747         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11748         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11749         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11750         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11751         (SQL_CT_CREATE_TABLE): likewise.
11752         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11753         (SQL_CT_LOCAL_TEMPORARY): likewise.
11754         (SQL_CT_TABLE_CONSTRAINT): likewise.
11755         (SQL_CTR_CREATE_TRANSLATION): likewise.
11756         (SQL_CU_DML_STATEMENTS): likewise.
11757         (SQL_CU_INDEX_DEFINITION): likewise.
11758         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11759         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11760         (SQL_CU_TABLE_DEFINITION): likewise.
11761         (SQL_CVT_GUID): likewise.
11762         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11763         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11764         (SQL_CVT_WCHAR): likewise.
11765         (SQL_CVT_WLONGVARCHAR): likewise.
11766         (SQL_CVT_WVARCHAR): likewise.
11767         (SQL_DA_DROP_ASSERTION): likewise.
11768         (SQL_DATETIME_LITERALS): likewise.
11769         (SQL_DB_DEFAULT): likewise.
11770         (SQL_DB_DISCONNECT): likewise.
11771         (SQL_DB_RETURN_TO_POOL): likewise.
11772         (SQL_DC_DROP_COLLATION): likewise.
11773         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11774         (SQL_DD_CASCADE): likewise.
11775         (SQL_DD_DROP_DOMAIN): likewise.
11776         (SQL_DD_RESTRICT): likewise.
11777         (SQL_DDL_INDEX): likewise.
11778         (SQL_DELETE_BY_BOOKMARK): likewise.
11779         (SQL_DESC_ARRAY_SIZE): likewise.
11780         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11781         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11782         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11783         (SQL_DESC_BASE_TABLE_NAME): likewise.
11784         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11785         (SQL_DESC_BIND_TYPE): likewise.
11786         (SQL_DESC_CASE_SENSITIVE): likewise.
11787         (SQL_DESC_CATALOG_NAME): likewise.
11788         (SQL_DESC_CONCISE_TYPE): likewise.
11789         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11790         (SQL_DESC_DISPLAY_SIZE): likewise.
11791         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11792         (SQL_DESC_LABEL): likewise.
11793         (SQL_DESC_LITERAL_PREFIX): likewise.
11794         (SQL_DESC_LITERAL_SUFFIX): likewise.
11795         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11796         (SQL_DESC_MAXIMUM_SCALE): likewise.
11797         (SQL_DESC_MINIMUM_SCALE): likewise.
11798         (SQL_DESC_NUM_PREC_RADIX): likewise.
11799         (SQL_DESC_PARAMETER_TYPE): likewise.
11800         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11801         (SQL_DESC_SCHEMA_NAME): likewise.
11802         (SQL_DESC_SEARCHABLE): likewise.
11803         (SQL_DESC_TABLE_NAME): likewise.
11804         (SQL_DESC_TYPE_NAME): likewise.
11805         (SQL_DESC_UNSIGNED): likewise.
11806         (SQL_DESC_UPDATABLE): likewise.
11807         (SQL_DI_CREATE_INDEX): likewise.
11808         (SQL_DI_DROP_INDEX): likewise.
11809         (SQL_DIAG_COLUMN_NUMBER): likewise.
11810         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11811         (SQL_DIAG_ROW_NUMBER): likewise.
11812         (SQL_DL_SQL92_DATE): likewise.
11813         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11814         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11815         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11816         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11817         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11818         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11819         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11820         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11821         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11822         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11823         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11824         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11825         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11826         (SQL_DL_SQL92_TIME): likewise.
11827         (SQL_DL_SQL92_TIMESTAMP): likewise.
11828         (SQL_DM_VER): likewise.
11829         (SQL_DRIVER_HDESC): likewise.
11830         (SQL_DROP_ASSERTION): likewise.
11831         (SQL_DROP_CHARACTER_SET): likewise.
11832         (SQL_DROP_COLLATION): likewise.
11833         (SQL_DROP_DOMAIN): likewise.
11834         (SQL_DROP_SCHEMA): likewise.
11835         (SQL_DROP_TABLE): likewise.
11836         (SQL_DROP_TRANSLATION): likewise.
11837         (SQL_DROP_VIEW): likewise.
11838         (SQL_DS_CASCADE): likewise.
11839         (SQL_DS_DROP_SCHEMA): likewise.
11840         (SQL_DS_RESTRICT): likewise.
11841         (SQL_DT_CASCADE): likewise.
11842         (SQL_DT_DROP_TABLE): likewise.
11843         (SQL_DT_RESTRICT): likewise.
11844         (SQL_DTC_DONE): likewise.
11845         (SQL_DTR_DROP_TRANSLATION): likewise.
11846         (SQL_DV_CASCADE): likewise.
11847         (SQL_DV_DROP_VIEW): likewise.
11848         (SQL_DV_RESTRICT): likewise.
11849         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11850         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11851         (SQL_EXT_API_LAST): likewise.
11852         (SQL_EXT_API_START): likewise.
11853         (SQL_FETCH_BY_BOOKMARK): likewise.
11854         (SQL_FETCH_FIRST_SYSTEM): likewise.
11855         (SQL_FETCH_FIRST_USER): likewise.
11856         (SQL_FN_CVT_CAST): likewise.
11857         (SQL_FN_STR_BIT_LENGTH): likewise.
11858         (SQL_FN_STR_CHAR_LENGTH): likewise.
11859         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11860         (SQL_FN_STR_OCTET_LENGTH): likewise.
11861         (SQL_FN_STR_POSITION): likewise.
11862         (SQL_FN_TD_CURRENT_DATE): likewise.
11863         (SQL_FN_TD_CURRENT_TIME): likewise.
11864         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11865         (SQL_FN_TD_EXTRACT): likewise.
11866         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11867         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11868         (SQL_FUNC_EXISTS(exists,api)): likewise.
11869         (SQL_GB_COLLATE): likewise.
11870         (SQL_HANDLE_SENV): likewise.
11871         (SQL_IK_ALL): likewise.
11872         (SQL_IK_ASC): likewise.
11873         (SQL_IK_DESC): likewise.
11874         (SQL_IK_NONE): likewise.
11875         (SQL_INDEX_KEYWORDS): likewise.
11876         (SQL_INFO_DRIVER_START): likewise.
11877         (SQL_INFO_LAST): likewise.
11878         (SQL_INFO_SCHEMA_VIEWS): likewise.
11879         (SQL_INITIALLY_DEFERRED): likewise.
11880         (SQL_INITIALLY_IMMEDIATE): likewise.
11881         (SQL_INSERT_STATEMENT): likewise.
11882         (SQL_INTERVAL): likewise.
11883         (SQL_IS_INSERT_LITERALS): likewise.
11884         (SQL_IS_INSERT_SEARCHED): likewise.
11885         (SQL_IS_INTEGER): likewise.
11886         (SQL_IS_POINTER): likewise.
11887         (SQL_IS_SELECT_INTO): likewise.
11888         (SQL_IS_SMALLINT): likewise.
11889         (SQL_IS_UINTEGER): likewise.
11890         (SQL_IS_USMALLINT): likewise.
11891         (SQL_ISV_ASSERTIONS): likewise.
11892         (SQL_ISV_CHARACTER_SETS): likewise.
11893         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11894         (SQL_ISV_COLLATIONS): likewise.
11895         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11896         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11897         (SQL_ISV_COLUMNS): likewise.
11898         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11899         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11900         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11901         (SQL_ISV_DOMAINS): likewise.
11902         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11903         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11904         (SQL_ISV_SCHEMATA): likewise.
11905         (SQL_ISV_SQL_LANGUAGES): likewise.
11906         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11907         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11908         (SQL_ISV_TABLES): likewise.
11909         (SQL_ISV_TRANSLATIONS): likewise.
11910         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11911         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11912         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11913         (SQL_ISV_VIEWS): likewise.
11914         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11915         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11916         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11917         (SQL_NO_COLUMN_NUMBER): likewise.
11918         (SQL_NO_ROW_NUMBER): likewise.
11919         (SQL_NOT_DEFERRABLE): likewise.
11920         (SQL_NUM_EXTENSIONS): likewise.
11921         (SQL_NUM_FUNCTIONS): likewise.
11922         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11923         (SQL_OIC_CORE): likewise.
11924         (SQL_OIC_LEVEL1): likewise.
11925         (SQL_OIC_LEVEL2): likewise.
11926         (SQL_OV_ODBC2): likewise.
11927         (SQL_OV_ODBC3): likewise.
11928         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11929         (SQL_PARAM_ARRAY_SELECTS): likewise.
11930         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11931         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11932         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11933         (SQL_PARAM_ERROR): likewise.
11934         (SQL_PARAM_IGNORE): likewise.
11935         (SQL_PARAM_PROCEED): likewise.
11936         (SQL_PARAM_SUCCESS): likewise.
11937         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11938         (SQL_PARAM_UNUSED): likewise.
11939         (SQL_PARC_BATCH): likewise.
11940         (SQL_PARC_NO_BATCH): likewise.
11941         (SQL_PAS_BATCH): likewise.
11942         (SQL_PAS_NO_BATCH): likewise.
11943         (SQL_PAS_NO_SELECT): likewise.
11944         (SQL_ROW_IGNORE): likewise.
11945         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11946         (SQL_ROW_PROCEED): likewise.
11947         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11948         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11949         (SQL_SC_SQL92_ENTRY): likewise.
11950         (SQL_SC_SQL92_FULL): likewise.
11951         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11952         (SQL_SCC_ISO92_CLI): likewise.
11953         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11954         (SQL_SCHEMA_TERM): likewise.
11955         (SQL_SCHEMA_USAGE): likewise.
11956         (SQL_SDF_CURRENT_DATE): likewise.
11957         (SQL_SDF_CURRENT_TIME): likewise.
11958         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11959         (SQL_SFKD_CASCADE): likewise.
11960         (SQL_SFKD_NO_ACTION): likewise.
11961         (SQL_SFKD_SET_DEFAULT): likewise.
11962         (SQL_SFKD_SET_NULL): likewise.
11963         (SQL_SFKU_CASCADE): likewise.
11964         (SQL_SFKU_NO_ACTION): likewise.
11965         (SQL_SFKU_SET_DEFAULT): likewise.
11966         (SQL_SFKU_SET_NULL): likewise.
11967         (SQL_SG_DELETE_TABLE): likewise.
11968         (SQL_SG_INSERT_COLUMN): likewise.
11969         (SQL_SG_INSERT_TABLE): likewise.
11970         (SQL_SG_REFERENCES_COLUMN): likewise.
11971         (SQL_SG_REFERENCES_TABLE): likewise.
11972         (SQL_SG_SELECT_TABLE): likewise.
11973         (SQL_SG_UPDATE_COLUMN): likewise.
11974         (SQL_SG_UPDATE_TABLE): likewise.
11975         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11976         (SQL_SG_USAGE_ON_COLLATION): likewise.
11977         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11978         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11979         (SQL_SG_WITH_GRANT_OPTION): likewise.
11980         (SQL_SNVF_BIT_LENGTH): likewise.
11981         (SQL_SNVF_CHAR_LENGTH): likewise.
11982         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11983         (SQL_SNVF_EXTRACT): likewise.
11984         (SQL_SNVF_OCTET_LENGTH): likewise.
11985         (SQL_SNVF_POSITION): likewise.
11986         (SQL_SP_BETWEEN): likewise.
11987         (SQL_SP_COMPARISON): likewise.
11988         (SQL_SP_EXISTS): likewise.
11989         (SQL_SP_IN): likewise.
11990         (SQL_SP_ISNOTNULL): likewise.
11991         (SQL_SP_ISNULL): likewise.
11992         (SQL_SP_LIKE): likewise.
11993         (SQL_SP_MATCH_FULL): likewise.
11994         (SQL_SP_MATCH_PARTIAL): likewise.
11995         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11996         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11997         (SQL_SP_OVERLAPS): likewise.
11998         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11999         (SQL_SP_UNIQUE): likewise.
12000         (SQL_SQL_CONFORMANCE): likewise.
12001         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
12002         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
12003         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
12004         (SQL_SQL92_GRANT): likewise.
12005         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
12006         (SQL_SQL92_PREDICATES): likewise.
12007         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
12008         (SQL_SQL92_REVOKE): likewise.
12009         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
12010         (SQL_SQL92_STRING_FUNCTIONS): likewise.
12011         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
12012         (SQL_SR_CASCADE): likewise.
12013         (SQL_SR_DELETE_TABLE): likewise.
12014         (SQL_SR_GRANT_OPTION_FOR): likewise.
12015         (SQL_SR_INSERT_COLUMN): likewise.
12016         (SQL_SR_INSERT_TABLE): likewise.
12017         (SQL_SR_REFERENCES_COLUMN): likewise.
12018         (SQL_SR_REFERENCES_TABLE): likewise.
12019         (SQL_SR_RESTRICT): likewise.
12020         (SQL_SR_SELECT_TABLE): likewise.
12021         (SQL_SR_UPDATE_COLUMN): likewise.
12022         (SQL_SR_UPDATE_TABLE): likewise.
12023         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
12024         (SQL_SR_USAGE_ON_COLLATION): likewise.
12025         (SQL_SR_USAGE_ON_DOMAIN): likewise.
12026         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
12027         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
12028         (SQL_SRJO_CROSS_JOIN): likewise.
12029         (SQL_SRJO_EXCEPT_JOIN): likewise.
12030         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
12031         (SQL_SRJO_INNER_JOIN): likewise.
12032         (SQL_SRJO_INTERSECT_JOIN): likewise.
12033         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
12034         (SQL_SRJO_NATURAL_JOIN): likewise.
12035         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
12036         (SQL_SRJO_UNION_JOIN): likewise.
12037         (SQL_SRVC_DEFAULT): likewise.
12038         (SQL_SRVC_NULL): likewise.
12039         (SQL_SRVC_ROW_SUBQUERY): likewise.
12040         (SQL_SRVC_VALUE_EXPRESSION): likewise.
12041         (SQL_SSF_CONVERT): likewise.
12042         (SQL_SSF_LOWER): likewise.
12043         (SQL_SSF_SUBSTRING): likewise.
12044         (SQL_SSF_TRANSLATE): likewise.
12045         (SQL_SSF_TRIM_BOTH): likewise.
12046         (SQL_SSF_TRIM_LEADING): likewise.
12047         (SQL_SSF_TRIM_TRAILING): likewise.
12048         (SQL_SSF_UPPER): likewise.
12049         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
12050         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
12051         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
12052         (SQL_SU_DML_STATEMENTS): likewise.
12053         (SQL_SU_INDEX_DEFINITION): likewise.
12054         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
12055         (SQL_SU_PROCEDURE_INVOCATION): likewise.
12056         (SQL_SU_TABLE_DEFINITION): likewise.
12057         (SQL_SVE_CASE): likewise.
12058         (SQL_SVE_CAST): likewise.
12059         (SQL_SVE_COALESCE): likewise.
12060         (SQL_SVE_NULLIF): likewise.
12061         (SQL_UB_FIXED): likewise.
12062         (SQL_UB_VARIABLE): likewise.
12063         (SQL_UNION_STATEMENT): likewise.
12064         (SQL_UPDATE_BY_BOOKMARK): likewise.
12065         (SQL_US_UNION): likewise.
12066         (SQL_US_UNION_ALL): likewise.
12067         (SQL_DESC_ROWVER): likewise.
12068         (SQL_GUID): likewise.
12069         (SQL_C_GUID): likewise.
12070         (ODBC_STD): likewise.
12071         (SQLAllocHandle): likewise.
12072         (SQLAllocEnv(p)): likewise.
12073         (SQL_YEAR): likewise.
12074         (SQL_MONTH): likewise.
12075         (SQL_DAY): likewise.
12076         (SQL_HOUR): likewise.
12077         (SQL_MINUTE): likewise.
12078         (SQL_SECOND): likewise.
12079         (SQL_YEAR_TO_MONTH): likewise.
12080         (SQL_DAY_TO_HOUR): likewise.
12081         (SQL_DAY_TO_MINUTE): likewise.
12082         (SQL_DAY_TO_SECOND): likewise.
12083         (SQL_HOUR_TO_MINUTE): likewise.
12084         (SQL_HOUR_TO_SECOND): likewise.
12085         (SQL_MINUTE_TO_SECOND): likewise.
12086         (SQL_ATTR_ANSI_APP): likewise.
12087         (SQL_AA_TRUE): likewise.
12088         (SQL_AA_FALSE): likewise.
12089
12090         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
12091         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
12092         (struct tagSQL_DAY_SECOND): likewise.
12093         (struct tagSQL_INTERVAL_STRUCT): likewise.
12094         (struct tagSQL_NUMERIC_STRUCT): likewise.
12095         (struct tagSQLGUID): add for 0DBC3.50.
12096         (enum SQLINTERVAL): add for ODBC3.x.
12097         (SQLWCHAR): add typedef.
12098         (SQLTCHAR): add typedef, conditional on UNICODE.
12099         (SQLLEN): add typedef for _WIN64, define for _WIN32.
12100         (SQLULEN): likewise.
12101         (SQLROWOFFSET): likewise.
12102         (SQLROWCOUNT): likewise.
12103         (SQLTRANSID): likewise.
12104         (SQLSETPOSIROW): likewise.
12105         (SQLHANDLE): add ODBC3.x typedef.
12106         (SQLHDESC): likewise.
12107         (SQLDATE): likewise.
12108         (SQLDECIMAL): likewise.
12109         (SQLDOUBLE): likewise.
12110         (SQLFLOAT): likewise.
12111         (SQLNUMERIC): likewise.
12112         (SQLREAL): likewise.
12113         (SQLTIME): likewise.
12114         (SQLTIMESTAMP): likewise.
12115         (SQLVARCHAR): likewise.
12116         (SQLBIGINT): likewise.
12117         (SQLUBIGINT): likewise.
12118         (SQL_DATE_STRUCT): likewise.
12119         (SQL_TIME_STRUCT): likewise.
12120         (SQL_TIMESTAMP_STRUCT): likewise.
12121         (ODBCINT64): add ODBC3.x define.
12122
12123         * lib/odbc32.def : regenerate.
12124
12125 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
12126
12127         * Apply Danny Smith patch 102275
12128         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12129         * include/objbase.h: (COM_RIGHTS): Add definition.
12130         (tagSTDMSHLFLAGS): add enumeration.
12131         (CoInitializeEx): Add prototypes.
12132         (CoGetStdMarshalEx): ditto.
12133         (CoCreateInstanceEx): ditto.
12134         (CoInitializeSecurity): ditto.
12135         (CoGetCallContext): ditto.
12136         (CoQueryProxyBlanket): ditto.
12137         (CoSetProxyBlanket): ditto.
12138         (CoCopyProxy): ditto.
12139         (CoQueryClientBlanket): ditto.
12140         (CoImpersonateClient): ditto.
12141         (CoRevertToSelf): ditto.
12142         (CoQueryAuthenticationServices): ditto.
12143         (CoSwitchCallContext): ditto.
12144         (CoGetInstanceFromFile): ditto.
12145         (CoGetInstanceFromIStorage): ditto.
12146         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
12147         (SOLE_AUTHENTICATION_INFO): ditto.
12148         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
12149         (COLE_DEFAULT_PRINCIPAL): Add definition.
12150         (COLE_DEFAULT_AUTHINFO): Ditto.
12151         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
12152         (RPC_PROTSEQ_VECTOR) Fix typo.
12153         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
12154         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
12155         attribute.
12156
12157 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
12158
12159         * lib/msvcp60.def: Apply Danny Smith patch 103321.
12160         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
12161         New file.
12162
12163 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12164
12165         * include/winnt.h: Add PTOKEN_USER.
12166
12167 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12168
12169         * include/sqlucode.h: Apply Danny Smith patch 102443
12170         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12171         New file.
12172
12173 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12174
12175         * lib/odbccp32.def: Apply Danny Smith patch 102442
12176         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12177         New file.
12178
12179 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12180
12181         * include/odbcinst.h: Apply Danny Smith patch 102441
12182         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12183         New file.
12184
12185 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12186
12187         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12188
12189 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12190
12191         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12192
12193 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12194
12195         * lib/Makefile.in: Install headers and libraries in tooldir.
12196
12197 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12198
12199         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12200         SORT_STRINGSORT: ditto.
12201         CMAP*: ditto.
12202         CTRY_*: add new defines.
12203         LGRPID_*: ditto.
12204         LCMAP*: change defines to hex notation.
12205         CALID: change from ULONG to DWORD.
12206         CALTYPE: ditto.
12207         _cpinfoex[AW]: add structure.
12208         FoldString: correct Unicode mappings.
12209         GetCPInfoEx[AW]: add prototypes.
12210         EnumCalendarInfoEx[AW]: ditto.
12211         EnumDateFormatsEx[AW]: ditto.
12212         EnumSystemLanguageGroups[AW]: ditto.
12213         EnumLanguageGroupLocales[AW]: ditto.
12214         EnumUILanguages[AW]: ditto.
12215         GetSystemDefaultUILanguage[AW]: ditto.
12216         GetUserDefaultUILanguage[AW]: ditto.
12217         IsValidLanguageGroup[AW]: ditto.
12218         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12219         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12220         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12221         UILANGUAGE_ENUMPROC[AW]: ditto
12222         DATEFMT_ENUMPROCEX[AW]: ditto
12223         LPCURRENCYFMT[AW]: add structure pointer typedef
12224         LPNUMBERFMT[AW]: ditto
12225
12226 2000-12-02  Matt Hargett  <matt@use.net>
12227
12228         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12229         possible return code for the SetFilePointer() win32 API call.
12230
12231 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12232
12233         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12234
12235 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12236
12237         * Makefile.in: increment VERSION.
12238         (dist:) Rename to srcdist.  Create new dist target to call
12239         srcdist and bindist targets.
12240         (srcdist:) New target.
12241         (clean-top:) add call to mostlyclean-top and add rm of distribution
12242         tarballs.
12243         * lib/Makefile.in: (uninstall:) modify to remove files from the
12244         new w32api subdirectory and to remove w32api subdirectory.
12245         (xuninstall:) Ditto.
12246         TODO: Add a task to redo the clean targets of Makefile.in
12247
12248 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12249
12250         * lib/Makefile.in: Install header files in w32api subdirectory.
12251
12252 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12253
12254         * CONTRIBUTIONS: New file.
12255         * README: Change the maintained by header.
12256         * TODO: Add a note about checking the TODO.
12257
12258 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12259
12260         * Merge in accepted changes from
12261         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12262         * include/basetyps.h: add comment for GUID_DEFINED
12263         * include/lm.h: add includes for lmerr.h and lmserver.h
12264         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12265         * include/lmerr.h:  add error codes
12266         * include/lmserver.h: replace LPTSTR with LPWSTR,
12267         LPTCSTR with LPWCSTR in structures and prototypes
12268         * include/lmshare.h: ditto
12269         * include/lmuse.h: ditto
12270         * include/lmstats.h: ditto
12271         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12272         * include/winbase.h: change first argument of CommConfigDialog to const
12273         * include/windowsx.h: add macros  defining FAR versions of
12274         mem and string functions for porting from Win16 code
12275         * include/winioctl.h:  added IOCTL_STORAGE defines
12276         * include/winnetwk.h:  added WNNC_NET flags
12277         * include/winnt.h: add include of <basetsd.h>;
12278         add structs; add pointer typedefs  for TOKEN structs
12279         * include/winsock.h: add guard around BSD-ish typedefs
12280         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12281         * include/basetsd.h: new file
12282         * include/raserror.h: ditto
12283         * include/rassapi.h: ditto
12284         * include/ras.h: ditto
12285         comment from Earnie: replaced original ras.h contribution with Danny's
12286         contribution as it is more complete.
12287         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12288
12289 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12290
12291         * Makefile.in: increment VERSION.  Change tar file name for dist and
12292         bindist targets to be more standard.
12293         * config.guess: Update with the currently published file.
12294         * config.sub: ditto.
12295         * configure.in: Use value of build_alias instead of testing for
12296         directory names to set BUILDENV.
12297         * configure: ditto.
12298         * lib/Makefile.in: Change the name of the targets install,
12299         install-headers and install-libraries to xinstall, xinstall-headers
12300         and xinstall-libraries for system target specified installation.
12301         Recreate targets install, install-headers and install-libraries for
12302         exec-prefix specified installation.  Ditto for the uninstall targets of
12303         the same name.
12304
12305 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12306
12307         * include/iprtrmib.h: Further layout changes according to standard.
12308         * include/iptypes.h: Ditto.
12309         * include/ntdef.h: Ditto.
12310         * include/ntsecapi.h: Ditto.
12311         * include/subauth.h: Ditto.
12312
12313 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12314
12315         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12316
12317 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12318
12319         * include/ntsecapi.h: New file.
12320         * include/subauth.h: Ditto.
12321         * include/ipexport.h: Fix global header define not to contain
12322         trailing underscore. Change layout according to standard.
12323         * include/iphlpapi.h: Ditto.
12324         * include/ipifcons.h: Ditto.
12325         * include/iprtrmib.h: Ditto.
12326         * include/iptypes.h: Ditto.
12327         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12328         of inclusion of ntsecapi.h and subauth.h.
12329         * lib/secur32.def: New stub for secur32.dll.
12330
12331 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12332
12333         * include/ras.h: New file.
12334         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12335         RasEnumDevicesW.
12336
12337 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12338
12339         * include/ntdef.h: Add define for NTAPI.
12340
12341 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12342
12343         * include/ipexport.h: Add missing `extern "C"' directives.
12344         * include/iphlpapi.h: Ditto.
12345         * include/iprtrmib.h: Ditto.
12346         * include/iptypes.h: Ditto.
12347
12348 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12349
12350         * include/ipifcons.h: New header file.
12351         * include/iprtrmib.h: Move operational states to ipifcons.h.
12352         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12353         declaration.
12354
12355 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12356
12357         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12358
12359 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12360
12361         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12362         * include/iptypes.h: New header file.
12363         * include/ipexport.h: Ditto.
12364         * include/iphlpapi.h: Ditto.
12365         * include/iprtrmib.h: Ditto.
12366
12367 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12368
12369         * include/ntdef.h: New file.
12370
12371 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12372
12373         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12374         to TOKEN_INFORMATION_CLASS type.
12375         Add QUOTA_LIMITS type.
12376
12377 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12378
12379         * include/userenv.h: New header file.
12380         * lib/userenv.def: New stub for userenv.dll.
12381
12382 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12383
12384         * include/winuser.h: Correct PCWPSTRUCT typo.
12385         (discovered by Axel Riese)
12386
12387 2000-07-27  DJ Delorie  <dj@redhat.com>
12388
12389         * include/windows.h: optimize non-inclusion of repeat headers
12390
12391 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12392
12393         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12394         LPTOKEN_SOURCE.
12395
12396 2000-07-11  DJ Delorie  <dj@cygnus.com>
12397
12398         * include/shlobj.h: add CSIDL_COMMON_*
12399
12400 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12401
12402         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12403         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12404         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12405         FILE_FLAG_OPEN_NO_RECALL.
12406         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12407         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12408         * winnt.h: Add typedef for GUID.
12409         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12410         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12411         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12412         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12413         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12414         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12415         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12416         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12417         * lib/psapi.def: New file.
12418
12419 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12420
12421         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12422         previously defined.
12423         * windef.h : Ditto.
12424
12425 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12426
12427         * include/winnt.h: Add some missing defines related to locale
12428         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12429
12430 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12431
12432         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12433
12434 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12435
12436         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12437
12438 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12439
12440         * include/wininet.h: Add another "INTERNET_OPTIONS".
12441
12442 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12443
12444         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12445
12446 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12447
12448         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12449         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12450         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12451         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12452
12453 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12454
12455         * include/winbase.h: Change first argument of ENUMRES* types to
12456         coincide with Microsoft usage.
12457
12458 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12459
12460         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12461
12462 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12463
12464         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12465         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12466         * include/winnt.h (SEC_*): Add macros.
12467         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12468         * include/ole.h: Workaround for C++ parser bug.
12469         * include/rpcdcep.h: Likewise.
12470         * include/winsock.h: Likewise.
12471
12472 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12473
12474         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12475
12476 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12477
12478         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12479         * include/wtypes.h (PBLOB, LPBLOB): Define.
12480         * include/winsock2.h: Much more complete version.
12481         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12482
12483         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12484         * include/winsock.h (FD_CLR): Add missing ')'.
12485         (timercmp): Fix macro to handle all 6 comparison operators.
12486         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12487         (AF_MAX): Update.
12488         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12489
12490         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12491         namespace pollution.
12492         * include/rpcndr.h: Likewise.
12493         * include/winnt.h: Likewise.
12494         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12495         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12496         * lib/ole32.def: Add missing exports.
12497         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12498         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12499         (NT_TIB): Define.
12500         * include/tlhelp32.h: New file.
12501
12502 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12503
12504         * include/rapi.h: New file.
12505         * lib/rapi.def: New file.
12506
12507 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12508
12509         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12510
12511 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12512
12513         * Snapshot 2000-02-03.
12514
12515 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12516
12517         * include/winnt.h: Add ARM support.
12518
12519 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12520
12521         From Greg Primes <gregory.l.priem@intel.com>:
12522         * include/oaidl.h (DESCKIND): Define macro.
12523         (ITypeComp): Define interface.
12524         (ITypeComp): Likewise.
12525         * rpcndr.h (DECLSPEC_UUID): Define macro.
12526         (MIDL_INTERFACE): Likewise.
12527
12528         * include/psapi.h: New file.
12529         * include/imagehlp.h: New file.
12530         * lib/imagehlp.def: New file.
12531
12532         * include/oaidl.h (tagVARIANT): Update fields.
12533
12534         From Craig Lanning <CraigL@DyCon.com>:
12535         * include/commctrl.h: Add some TCS_* macros.
12536         * include/winnls.h (IsValidLocale): Add prototype.
12537
12538 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12539
12540         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12541         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12542         * include/objbase.h: Likewise.
12543         * include/objidl.h: Likewise.
12544         * include/ocidl.h: New file.
12545         * include/oleauto.h: Likewise.
12546         * include/wtypes.h: Likewise.
12547         * lib/oleaut32.def: Likewise.
12548
12549         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12550         Thanks to "Jon Leichter" <jon@symas.com>.
12551         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12552         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12553         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12554         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12555         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12556         Dorsselaer" <frans@bia-bv.demon.nl>.
12557         * include/httpext.h: New file. Thanks to Jan Nijtmans
12558         <j.nijtmans@chello.nl>.
12559         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12560         redefinition of LPCWAVEFORMATEX in DirectX headers.
12561         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12562         <krzych00@priv7.onet.pl>.
12563         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12564         * include/windef.h (HRESULT): Guard definition to avoid
12565         redefinition in DirectX headers.
12566         * include/winnt.h: Add target macros from windows.h.
12567         * include/windows.h: Update synch comment for target macros.
12568         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12569         (_ANONYMOUS_UNION): Likewise.
12570         * include/wingdi.h (AbortPrinter): Move from here ...
12571         * include/winspool.h (AbortPrinter): to here and fix linkage.
12572         (MONITOR_INFO_2{A,W}): Define.
12573         * include/winsock.h (htons): Fix argument.
12574         (htonl): Likewise.
12575         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12576         (GROUP): Define.
12577         (GUID): Define conditionally.
12578         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12579         (WSASocket*): Declare.
12580         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12581
12582         * lib/dsetup.def: Remove leading underscore.
12583         * lib/dsound.def: Likewise.
12584         * lib/ws2_32.def: Likewise.
12585
12586 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12587
12588         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12589         handles.
12590
12591         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12592         * lib/dinput.c: Include windows.h for GCC.
12593         * lib/dxguid.c: Likewise.
12594         (INITGUID): Define macro.
12595
12596         * include/objidl.h (ISequentialStream): Define interface.
12597         (IStream): Derive from ISequentialStream.
12598
12599         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12600         Clone}): Mark as PURE.
12601         (IDataObject::EnumDAdvise): Likewise.
12602         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12603         (IViewObject::Unfreeze): Likewise.
12604         (IViewObject2::Unfreeze): Likewise.
12605
12606         * include/objidl.h: Add various IID_ declarations.
12607         * include/olectl.h: Likewise.
12608         * include/oleidl.h: Likewise.
12609
12610 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12611
12612         * Snapshot 1999-12-21.
12613
12614         * include/winbase.h (CancelIO): Rename to CancelIo.
12615         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12616         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12617
12618         * Merge with winsup-19991218.
12619         * include/winnt.h: Add defines for W2K ACL control flags.
12620
12621         * Merge with Anders Norlander's 19991130 snapshot.
12622
12623         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12624         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12625
12626         Patch from Harold Weissfield
12627         * include/shellapi.h: Added some ABN_* defines.
12628
12629         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12630         * lib/comctl32.def (_TrackMouseEvent): Import.
12631         * include/winuser.h: Misc. fixes from Sang Cho
12632         <sangcho@alpha94.chongju.ac.kr>.
12633         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12634         value of _WIN32_WINNT.
12635         * include/winuser.h: Reorganize SM_* defines in numerical order.
12636
12637 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12638
12639         * include/windef.h: Make RECTL a distinct type from RECT.
12640         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12641         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12642         (COMPAREITEMSTRUCT): Fix fields.
12643         (SERIALKEYSA): Likewise.
12644         (SERIALKEYSW): Likewise..
12645         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12646         (WIN32_FIND_DATAA): Likewise.
12647         (WIN32_FIND_DATAW): Likewise.
12648         * include/commdlg.h (SNDMSG): Define.
12649         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12650         (SO_CONNECT_TIME): Likewise.
12651         (AcceptEx): Declare.
12652         (GetAcceptExSockaddrs): Likewise.
12653         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12654         * include/winspool.h: Add RC_INVOKED guard.
12655         * lib/wsock32.def (AcceptEx@32): Export.
12656         (GetAcceptExSockaddrs@32): Likewise.
12657
12658 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12659
12660         * Snapshot 1999-11-18.
12661
12662         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12663         Octopod C++ IDE (and MSVC compatibility).
12664         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12665         * include/shellapi.h (ShellAbout*): Fix typo.
12666         * wingdi.h (FW_ULTRABOLD): Likewise.
12667         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12668         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12669         Add packing directives for various structures. All structure
12670         sizes now conform to MSVC.
12671
12672 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12673
12674         Released 1999-11-07.
12675
12676 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12677
12678         * include/winsock2.h: New file. Mostly a stub for now.
12679         * include/winbase.h (DllMain): Delete prototype.
12680         * include/commctrl.h (Header_SetItem): Fix macro.
12681         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12682         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12683         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12684
12685         Merge in changes from wxWindows.
12686         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12687         * include/oaidl.h (DISPID_*): Add macros.
12688         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12689         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12690         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12691         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12692
12693         Merge in changes from Octopod C++ IDE group.
12694         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12695         (Header_InsertItem): Fix macro.
12696         * include/oaidl.h (IID_IDispatch): Declare.
12697         (IID_ISupportErrorInfo): Likewise.
12698         (IDispatch): Rename Invoked to Invoke.
12699         * include/objidl.h (IPersist): Fix GetClassID.
12700         * include/oleauto.h (VectorFromBstr): Declare.
12701         (BstrFromVector): Likewise.
12702         * include/olectl.h (OLEMISC_*): Update.
12703         * include/olectlid.h (IID_IDispatch): Declare.
12704         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12705         (IOleInPlaceFrame): Fix.
12706         (ISupportErrorInfo): Define.
12707         (IErrorInfo): Define.
12708         * include/winuser.h (SIF_TRACKPOS): Define.
12709
12710 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12711
12712         Fix Merge errors:
12713         * include/winnt.h (PSID): Uncomment definition.
12714         (PISID): Rename from PSID.
12715         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12716         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12717
12718         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12719         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12720         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12721         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12722         include/shellapi.h, include/winbase.h, include/wingdi.h,
12723         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12724
12725 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12726
12727         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12728         Marius Kjeldahl <kjeldahl@hotmail.com>.
12729
12730 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12731
12732         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12733         (ERROR_SEVERITY_*): Likewise.
12734
12735 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12736
12737         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12738         (DllMain): Fix prototype.
12739
12740 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12741
12742         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12743         (cderr.h): Don't include.
12744         * include/winuser.h: Fix macro definitions.
12745
12746 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12747
12748         Merge with winsup 1999-07-29:
12749         * include/wincon.h (MOUSE_WHEELED): Define.
12750         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12751         (SECURITY_DESCRIPTOR): Add struct type.
12752         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12753         is equal to PVOID in the Platform SDK! So don't depend on accessing
12754         members through ->.
12755
12756 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12757
12758         * lib/Makefile.in (install-headers): Don't @ commands.
12759         (install-libraries): Ditto.
12760
12761 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12762
12763         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12764
12765 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12766
12767         Patch from Mumit Khan:
12768         * include/windows.h: Fix typo in winsock.h include guard and add
12769         _UWIN to the list.
12770         * include/winnt.h (__int64): Undefine first.
12771         (struct _SID): Declare.
12772
12773 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12774
12775         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12776
12777 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12778
12779         Patch from Mumit Khan:
12780         * Makefile.in: Do the right thing when cross-compiling.
12781         * include/windef.h: Don't define _export and __export if already
12782         defined.
12783
12784 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12785
12786         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12787         (DECLARE_INTERFACE_): Ditto.
12788
12789 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12790
12791         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12792
12793         Reported by Brad Porter
12794         * include/wingdi.h (FW_ULTRALIGHT): Add.
12795         (FW_DEMIBOLD): Add.
12796         (FW_ULTRABOLD): Add.
12797         (FW_BLACK): Add.
12798         (JOHAB_CHARSET): Add.
12799         (VIETNAMESE_CHARSET): Add.
12800
12801
12802 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12803
12804         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12805         * lib/Makefile.in (Makefile): Regenerate.
12806         * include/pshpack[1248].h: New files, if a program would use any of
12807         them.
12808         * include/poppack.h: Ditto.
12809         * include/windef.h (_WIN32_WINNT): Define
12810         * include/windows.h: Remove DUMMYUNIONNAME[45].
12811         * include/windows.h: Correctly define _M_IX86 to reflect the target
12812         processor.
12813         * include/windows.h: Add preliminary support for other architectures.
12814         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12815         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12816         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12817         issue with LARGE_INTEGER.
12818         (ANSI_NULL): Define.
12819         (PSZ): Define.
12820         (ACL_REVISION[1234]): Define.
12821         (MIN/MAX_ACL_REVISION): Define.
12822         (PTCHAR): Define.
12823         (LANG_USER_DEFAULT): Define.
12824         (LANG_SYSTEM_DEFAULT): Define.
12825         (LOCALE_NEUTRAL): Define.
12826         (SORTVERSIONFROMLCID): Define.
12827         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12828         (UNREFERENCED_LOCAL_VARIABLE): Define.
12829         (DBG_UNREFERENCED_PARAMETER): Define.
12830         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12831         * lib/mswsock.def: New file. Imports for mswsock.dll.
12832         * include/custcntl.h: New file. Necessary to compile some SDK
12833         samples.
12834         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12835         (WM_MOUSEWHEEL): Define.
12836         (WHEEL_DELTA): Define.
12837         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12838         (WM_NEXTMENU): Define.
12839         (CharNextA): Fix prototype.
12840         (CharNextW): Ditto.
12841
12842 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12843
12844         * include/winsock.h: Enclose in extern "C" if C++, huh?
12845         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12846
12847 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12848
12849         * include/windef.h (NULL): Define only ifndef
12850         (TRUE): Ditto, was previously only defined ifndef FALSE
12851         (PASCAL): Define as _pascal
12852         (__pascal): Define
12853         (WINAPIV): Define
12854         (min,max): Define only ifndef NOMINMAX
12855
12856 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12857
12858         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12859         You must define _WIN32_IE if you want support for it.
12860         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12861
12862 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12863
12864         * include/wincon.h: Add some ButtonState flags and EventFlags.
12865
12866 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12867
12868         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12869         interface define causes mayhem.
12870         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12871         defined.
12872         * include/windows.h: Undefine BOOL if __OBJC__ defined
12873
12874 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12875
12876         * include/winnls.h: Define additional code pages.
12877
12878 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12879
12880         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12881         order, corrected.
12882         (RtlZeroMemory): Use RtlFillMemory
12883
12884 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12885
12886         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12887         to get the correct size when used in some structs.
12888         (ULARGE_INTEGER): Ditto.
12889         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12890         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12891
12892 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12893
12894         * include/wininet.h: Enclose in extern "C" if c++
12895         (INTERNET_BUFFERSA/W): Define struct
12896         * include/wininet.h: Add some HSR_* defines
12897
12898 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12899
12900         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12901         * include/winnt.h (UNALIGNED): Define
12902         * include/windef.h (DECLSPEC_NORETURN): Define
12903
12904         * include/wininet.h (INTERNET_MAX_NAME): Remove
12905         (INTERNET_MAX_SCHEME_LENGTH): Define
12906         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12907         * include/wininet.def: Completely redone, it was losing badly.
12908
12909 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12910
12911         * lib/dplayx.def: Remove '_' prefixes
12912         * lib/shell32.def: Remove imports for IID_ContextMenu
12913
12914 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12915
12916         * Makefile.in (dist): Support dist target
12917         * lib/Makefile.in (dist): Likewise
12918         * lib/Makefile.in (uninstall-headers): Fix command
12919         * Makefile.in (bindist): Target to build a prebuilt dist
12920
12921         * lib/ws2_32.def: Winsock2 implib
12922
12923         * include/largeint.h: New header
12924         * include/largeint.c: Large integer support library
12925         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12926         (EXTRA_OBJS): Add largeint.o
12927
12928         * include/Makefile: Remove
12929         * lib/Makefile: Remove
12930         * Makefile: Remove
12931         * configure.in: New autoconf script
12932         * configure: generated configure script
12933         * Makefile.in: autoconf makefile template
12934         * lib/Makefile.in: Ditto
12935         * include/test.c: mv to lib/test.c
12936         * include/res.rc: mv to lib/res.rc
12937         * include/TODO: mv to .
12938         * include/Notes: mv to ./NOTES
12939
12940 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12941
12942         * include/zmouse.h (WHEEL_DELTA): Define
12943
12944 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12945
12946         * include/ddeml.h (HSZPAIR): Declare.
12947         * include/zmouse.h: New file.
12948
12949 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12950
12951         * lib/d3dim.def: New implib
12952         * lib/d3drm.def: Ditto
12953         * lib/d3dxof.def: Ditto
12954         * lib/ddraw.def: Ditto
12955         * lib/dinput.def: Ditto
12956         * lib/dplayx.def: Ditto
12957         * lib/dsetup.def: Ditto
12958         * lib/dsound.def: Ditto
12959         * lib/dinput.c: Guid library for DirectInput
12960         * lib/dxguid.c: Guid library for DirectX
12961
12962 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12963
12964         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12965         by Ron Aaron).
12966         * include/windowsx.h (GET_Y_LPARAM): Also missing
12967         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12968         by Mumit Khan).
12969
12970 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12971
12972         * include/scrnsave.h: New header file for screen saver library
12973         * lib/scrnsave.c: New file: screen saver library
12974
12975 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12976
12977         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12978         works well in when UNICODE is defined
12979
12980 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12981
12982         * include/winuser.h(STYLESTRUCT): New struct
12983         * include/wingdi.h:(GOBJENUMPROC): This function type should
12984         return void.
12985
12986 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12987
12988         * include/basetyps.h (LPGUID): New typedef
12989         * lib/glut.def: Import library defintions for glut.dll
12990         * lib/glu32.def: Ditto for glut32.dll
12991         * include/winnt.h: Fixed handling of wchar_t typedef
12992         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12993         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12994
12995 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12996
12997         * include/winbase.h(AbnormalTermination): Define as FALSE
12998         * include/commctrl.h: Support for new progress bar messages/styles
12999
13000 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
13001
13002         * include/commdlg.h(PageSetupDlg): New define
13003         * include/richedit.h: Missing SCF_* defines
13004         * include/winnt.h: Lots o' defines
13005         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
13006
13007 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
13008
13009         * include/commdlg.h: Removed pack pragma
13010         * lib/comctl32.def(InitCommonControlsEx@4): Added import
13011
13012 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
13013
13014         * Makefile: Set version to 0.1.5
13015         * lib/Makefile (clean): Fix typo
13016
13017         * include/commctrl.h: Removed pack pragma
13018         * include/cpl.h: Likewise
13019         * include/dbt.h: Likewise
13020         * include/dde.h: Likewise
13021         * include/nddeapi.h: Likewise
13022         * include/shellapi.h: Likewise
13023         * include/wincrypt.h: Likewise
13024         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
13025
13026         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
13027         (servent): Likewise
13028         (protoent): Likewise
13029
13030         * include/windows.h: Prevent inclusion of winsock.h if we are
13031         using or compiling cygwin. Define Win32_Winsock to force inclusion.
13032
13033 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
13034
13035         * include/winbase.h (CREATE_FORCEDOS): New define
13036
13037 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
13038
13039         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
13040         (COORD): Likewise
13041         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
13042         * include/windows.h: Added DUMMYUNIONNAME4 and 5
13043         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
13044         (PLUID_AND_ATTRIBUTES_ARRAY): New type
13045
13046         * include/ddeml.h: Removed unnecessary `#pragma pack'
13047         * include/imm.h: Likewise
13048         * include/nddeapi.h: Likewise
13049         * include/nspapi.h: Likewise
13050         * include/regstr.h: Likewise
13051         * include/wincon.h: Likewise
13052         * include/windef.h: Likewise
13053         * include/winioctl.h: Likewise
13054         * include/winnls.h: Likewise
13055         * include/winsvc.h: Likewise
13056         * include/winuser.h: Likewise
13057         * include/winver.h: Likewise
13058         * include/wtypes.h: Likewise
13059
13060 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
13061
13062         * Makefile (VERSION): Set to 0.1.4
13063         * include/basetyps.h: Check for NOCOMOBJECT
13064         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
13065         on comobject attribute.
13066         * lib/kernel32.def: Added a few functions
13067         * include/windef.h (DWORD): Changed back to unsigned long
13068
13069         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
13070         winresrc.h in turn includes the necessary headers. This makes things
13071         much simpler, no need to protect blocks of code in headers that
13072         should not be seen by the resource compiler.
13073
13074 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
13075
13076         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
13077         * include/wincon.h: Added console event type flags
13078         * include/winnt.h (FILE_SHARE_DELETE): Added
13079           (SECURITY_DESCRIPTOR): typedef as DWORD
13080
13081         * include/winuser.h (WM_PENWINFIRST): Fixed typo
13082         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
13083         define u_* types only if _SYS_TYPES_H is not defined.
13084
13085 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
13086
13087         * COPYING.LIB: Deleted
13088         * README: Updated to reflect license changes
13089         * include/shlobj.h: Remove extra comma on some enums
13090         * include/windef.h: Changed DWORD typedef from unsigned long to
13091         unsigned int in order to avoid warnings on bit fields that
13092         use DWORD.
13093         * include/Makefile (test): Compile with all warnings
13094         * include/unknwn.h: Include objfwd.h
13095         * include/winsock.h: Added missing copyright notices.
13096
13097 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
13098
13099         * lib/winmm.def: Corrected LIBRARY statement
13100         * include/mmsystem.h: Define mmioSeek codes if not already defined
13101         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
13102         (CreateStatusWindowW): Likewise
13103
13104         * include/winresrc.h: Include only files necessary instead of windows.h
13105         * include/dde.h: Allow inclusion in resource scripts.
13106         * include/winnt.h: Likewise
13107         * include/commctrl.h: Likewise
13108         * include/prsht.h: Likewise
13109         * README: Updated
13110
13111 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
13112
13113         * include/sqltypes.h (SQLHANDLE): Added this type
13114         (SQLHDESC): Likewise
13115         * include/sql.h (SQLFreeHandle): Added this prototype
13116         (SQLAllocHandle): Likewise
13117
13118 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
13119
13120         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
13121         conflicts with cygwin headers.
13122
13123 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
13124
13125         * Makefile: Changed VERSION to 0.1.3
13126         * Makefile (dist-lib): New target to make import library only
13127         distribution
13128         * Makefile (dist-hdr): New target to make headers only distribution
13129         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
13130         building one single distribution file.
13131         * dist.mak: Deleted
13132
13133         * include/lm.h: New file
13134         * include/lmcons.h: New file
13135         * include/lmalert.h: New file
13136         * include/lmaudit.h: New file
13137         * include/lmconfig.h: New file
13138         * include/lmapibuf.h: New file
13139         * include/lmaccess.h: New file
13140         * include/lmchdev.h: New file
13141         * include/lmremutl.h: New file
13142         * include/lmrepl.h: New file
13143         * include/lmerrlog.h: New file
13144         * include/lmat.h: New file
13145         * include/lmuse.h: New file
13146         * include/lmuseflg.h: New file
13147         * include/lmserver.h: New file
13148         * include/lmerr.h: New file
13149         * include/lmsname.h: New file
13150         * include/lmstats.h: New file
13151         * include/lmsvc.h: New file
13152         * include/lmwksta.h: New file
13153         * include/lmbrowsr.h: New file
13154
13155 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
13156
13157         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
13158         * include/unknwn.h: Added extern declaration for IID_IClassFactory
13159
13160         * include/initguid.h: New file
13161
13162         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13163         int not supported
13164
13165         * include/winnt.h: Added USN
13166         * include/winnt.h: Changed handling of 64 bit int support
13167
13168         * include/windows.h: Added support for BC,LCC and MSVC
13169
13170         * include/windows.h: Changed handling machine architecture defines
13171
13172         * include/olectl.h: New file
13173
13174 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13175
13176         * include/oleidl.h: Added IViewObject and IViewObject2
13177
13178         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13179         IStorage::MoveElement
13180
13181         * include/oledlg.h: New file
13182
13183         * include/winresrc.h: New file
13184
13185         * include/wingdi.h: Added LPDOCINFO
13186
13187         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13188         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13189         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13190         TabCtrl_SetImageList and TabCtrl_GetItemCount
13191         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13192
13193         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13194
13195         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13196         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13197
13198         * include/commdlg.h: Added LPDEVNAMES
13199
13200         * include/windows.h: Include excpt.h
13201
13202         * include/excpt.h: New file. This file just contains some
13203         stubs for SEH that do nothing.
13204
13205         * include/commctrl.h: Added general WM_NOTIFY codes
13206
13207         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13208         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13209         not be in the headers.
13210         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13211         * include/winuser.h: Added old WM_SIZE parameter names so
13212         wxWindows compiles.
13213         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13214         * include/winuser.h: Added LPDLGITEMTEMPLATE
13215         * include/winuser.h: HTCAPTION was missing value
13216         * include/winuser.h: Added WM_ACTIVE flags
13217
13218         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13219         _fxx defines for memmove, memset and memcmp
13220
13221         * include/windef.h: Changed _export and __export to empty defines
13222
13223         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13224         String parameters were not const and ExtractAssociatedIcon takes
13225         a WORD pointer not DWORD pointer as last parameter.
13226
13227         * Makefile: Changed VERSION to 0.1.2
13228
13229         * include/ole2ver.h: New file
13230
13231         * Makefile: Removed all dependencies on GLUT
13232
13233         * include/GL/glut.h: Removed file because of decision to remove
13234         files that are not part of the library.
13235         * lib/glut.def: Likewise
13236         * lib/glut32.def: Likewise
13237
13238         * include/windows.h: Include winperf.h
13239
13240         * include/winperf.h: New file
13241
13242         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13243
13244         * include/winnls.h: Added calendar types
13245         * include/winnls.h: Added country codes
13246
13247 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13248
13249         * include/windef.h: Added PROC and NEARPROC
13250
13251         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13252         * include/wingdi.h: Added OpenGL types and prototypes
13253         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13254         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13255         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13256         * include/wingdi.h: Added truetype character outline types
13257         * include/wingdi.h: Added DEVMODE initialization flags
13258         * include/wingdi.h: Added panose codes
13259         * include/wingdi.h: Added missing character sets
13260         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13261         NONANTIALIASED_QUALITY
13262         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13263         * include/wingdi.h: Added pointer types for EXTLOGPEN
13264         * include/wingdi.h: Added PATTERN type
13265         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13266         * include/wingdi.h: Added new text metric flags
13267         * include/wingdi.h: Added pitch and family flags
13268         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13269         * include/wingdi.h: Added METAHEADER
13270         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13271         * include/wingdi.h: Added TA_MASK
13272         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13273         * include/wingdi.h: Added error codes
13274
13275         * include/winuser.h: Added missing winhelp structures
13276         * include/winuser.h: Added dialog flags/styles/messages
13277         * include/winuser.h: Added EM_SETMARGIN codes
13278         * include/winuser.h: Made it possiblie to use IDI_XX values
13279         in resource files.
13280         * include/winuser.h: Added missing LoadImage load flags
13281         * include/winuser.h: Added missing message box flags
13282         * include/winuser.h: Added ScrollWindow codes
13283         * include/winuser.h: Added DT_WORD_ELLIPSIS
13284         * include/winuser.h: Added drag and drop support
13285         * include/winuser.h: Added WM_MENUCHAR return codes
13286         * include/winuser.h: Added DLGWINDOWEXTRA
13287         * include/winuser.h: Added missing SetWindowPos flags.
13288         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13289         * include/winuser.h: Added IDHOT_xx defines
13290         * include/winuser.h: Added MOD_WIN
13291         * include/winuser.h: Added missing defines and structs for owner draw
13292         controls.
13293         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13294         WPF_SETMINPOSITION
13295         * include/winuser.h: Added DrawAnimatedRects flags
13296         * include/winuser.h: Added WM_PRINT codes
13297         * include/winuser.h: Added CS_IME class style
13298         * include/winuser.h: Added WM_SIZE codes
13299         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13300         * include/winuser.h: Added WM_NCHITTEST return codes
13301         * include/winuser.h: Added WM_SIZING parameters
13302         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13303         * include/winuser.h: Added menu loop codes.
13304         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13305         NF_REQUERY
13306         * include/winuser.h: Added WM_POWER flags
13307         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13308         * include/winuser.h: Added missing message filter codes
13309         * include/winuser.h: Added WM_KEYXX message flags
13310         * include/winuser.h: Added WM_SHOWMESSAGE flags
13311         * include/winuser.h: Added old ShowWindow commands
13312         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13313         structures.
13314
13315         * include/mciavi.h: New file for the MCI AVI driver that for some
13316         reason is not in mmsystem.h.
13317
13318         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13319         * include/winbase.h: Added SECURITY_xx for CreateFile
13320         * include/winbase.h: Added RTS and DTS control values
13321         * include/winbase.h: Fixed SYSTEM_INFO structure
13322         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13323         * include/winbase.h: Added FILE_TYPE_REMOTE
13324         * include/winbase.h: Added modem status flags
13325         * include/winbase.h: Added HINSTANCE_ERROR
13326         * include/winbase.h: Added DefineDosDevice defines
13327         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13328         * include/winbase.h: Added STARTF_XX flags
13329         * include/winbase.h: Fixed typo on _lcreat prototype.
13330         * include/winbase.h: Moved DBG_XX to winnt.h
13331         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13332         winnt.h
13333
13334         * include/unknwn.h: Added extern declaration of IID_IUnknown
13335
13336         * include/windowsx.h: Added hmemcpy.
13337
13338         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13339         * include/winnt.h: Added PACCESS_TOKEN
13340         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13341         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13342         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13343         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13344         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13345         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13346
13347         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13348         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13349         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13350
13351         * include/winsvc.h: Removed conflicting defines which were supposed
13352         to be in winnt.h
13353
13354         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13355         and SERVICE_ERROR_TYPE.
13356
13357         * include/winnt.h: Added SERVICE_XX defines.
13358         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13359         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13360
13361         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13362         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13363         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13364         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13365
13366 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13367
13368         * include/winbase.h: Corrected prototype for CreateProcessA
13369
13370         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13371         driver extensions.
13372
13373         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13374         be LPSHELLFOLDER* not LPSHELLFOLDER.
13375
13376         * include/windows.h: Include commdlg.h
13377
13378         * include/winuser.h: Added MDICREATESTRUCT
13379
13380         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13381         CB_ERRSPACE, and CB_OKAY
13382
13383         * include/wingdi.h: Added LPBITMAPINFOHEADER
13384
13385         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13386         are meaningless.
13387         * include/rpcdce2.h: Likewise.
13388
13389         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13390
13391         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13392         * include/olectlid.h: Likewise
13393         * include/shlguid.h: Likewise
13394
13395         * include/coguid.h: Delete file since it was for 16 bit windows only.
13396
13397         * lib/*.def: Appended .dll to library name where needed.
13398
13399         * include/windef.h: Define _stdcall and __stdcall only if not
13400         previously defined instead of undefining first.
13401
13402         * include/dlgs.h: Put RC_INVOKED around structure defs
13403
13404         * include/intshcut.h: New file
13405         * include/isguids.h: New file
13406
13407         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13408
13409 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13410
13411         * include/winnt.h: Added check if _T is defined before defining it
13412
13413         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13414
13415         * include/dlgs.h: New file
13416
13417         * include/winbase.h: Removed DllEntryPoint define
13418
13419         * include/winbase.h: Added SetupComm prototype
13420
13421         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13422         supported anyway.
13423
13424         * include/basetyps.h: Removed use of COMOBJECT define, instead
13425         DECLARE_INTERFACE directly uses comobject attribute when GCC
13426         is used.
13427
13428         * include/wtypes.h: STGC enum was missing typedef
13429
13430         * include/objidl.h: ADVC enum was missing typedef
13431
13432         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13433         they are nested within the VOID definition.
13434
13435         * include/winbase.h: Added stream ids and attributes
13436
13437         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13438         to an ANYSIZE_ARRAY array.
13439
13440 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13441
13442         * include/windef.h: defined _declspec as __declspec since
13443         some programs (like VWCL) use _declspec instead of __declspec
13444
13445         * include/winnt.h: added COMPRESS_FORMAT defines
13446
13447         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13448
13449         * include/winnt.h: added HEAP_XXXX defines
13450
13451         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13452
13453         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13454         specification.
13455
13456         * include/winnt.h: added NTAPI define
13457
13458 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13459
13460         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13461         instead of CHAR or WCHAR.
13462
13463         * include/winnt.h: added _T define
13464
13465         * include/winnt.h: added test for _TCHAR_DEFINED
13466
13467         * include/winnt.h: included string.h for memory macros
13468
13469         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13470
13471         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13472
13473         * include/prsht.h: added PropSheet_XXX macros
13474
13475
13476 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13477
13478         * include/winspool.h: Changed DeletePrinterProcessor and
13479         DeletePrinterProvidor to DeletePrintXX.
13480
13481         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13482         LOGCOLORSPACEW.
13483
13484         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13485         variants
13486
13487         * include/wingdi.h: Likewise for GetLogColorSpace
13488
13489         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13490
13491         * include/richedit.h: Added missing defines and structures
13492
13493         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13494
13495         * include/winuser.h: Added HWND_DESKTOP
13496
13497 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13498
13499         * Makefile: Include ChangeLog when building source
13500         distribution (srcdist)
13501
13502         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13503         are always defined as STDAPI and STDAPI_
13504
13505         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13506         are always defined as STDAPI and STDAPI_
13507
13508         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13509
13510         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13511
13512         * ChangeLog started