OSDN Git Service

Make <prsht.h> header effectively self-contained.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2018-11-16  Keith Marshall  <keith@users.osdn.me>
2
3         Make <prsht.h> header effectively self-contained.
4
5         * include/prsht.h: Tidy layout; assert copyright.
6         Include <winuser.h> to resolve inter-header dependencies.
7         Correctly parenthesize argument references in macro definitions.
8         (pragma GCC system_header): Remove redundant GCC version guard.
9         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
10         (SNDMSG, POSTMSG) [ifndef]: Remove guard condition; it prevents GCC
11         from checking consistency of alternative definition sources.
12         (__AW_SUFFIXED__): Use it; it improves robustness of...
13         [UNICODE vs. ! UNICODE]: ...generic definitions.
14         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
15
16 2018-10-29  Keith Marshall  <keith@users.osdn.me>
17
18         Clean up <wincon.h>; consolidate its version dependencies.
19
20         * include/wincon.h: Tidy layout; assert copyright.
21         [_WIN32_WINNT]: Always compare it symbolically, with respect to...
22         [_WIN32_WINNT_WIN2K, _WIN32_WINNT_WINXP, _WIN32_WINNT_VISTA]: ...each
23         of these; group and consolidate respective version dependencies.
24         (FOREGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_RED)
25         (FOREGROUND_INTENSITY, BACKGROUND_BLUE, BACKGROUND_GREEN)
26         (BACKGROUND_RED, BACKGROUND_INTENSITY, COMMON_LVB_LEADING_BYTE)
27         (COMMON_LVB_TRAILING_BYTE, COMMON_LVB_GRID_HORIZONTAL)
28         (COMMON_LVB_GRID_LVERTICAL, COMMON_LVB_GRID_RVERTICAL)
29         (COMMON_LVB_REVERSE_VIDEO, COMMON_LVB_UNDERSCORE, CTRL_C_EVENT)
30         (CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT)
31         (CTRL_SHUTDOWN_EVENT, ENABLE_LINE_INPUT, ENABLE_ECHO_INPUT)
32         (ENABLE_PROCESSED_INPUT, ENABLE_WINDOW_INPUT, ENABLE_MOUSE_INPUT)
33         (ENABLE_INSERT_MODE, ENABLE_QUICK_EDIT_MODE, ENABLE_EXTENDED_FLAGS)
34         (ENABLE_AUTO_POSITION, ENABLE_VIRTUAL_TERMINAL_INPUT)
35         (ENABLE_PROCESSED_OUTPUT, ENABLE_WRAP_AT_EOL_OUTPUT)
36         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
37         (ENABLE_LVB_GRID_WORLDWIDE, KEY_EVENT, MOUSE_EVENT)
38         (WINDOW_BUFFER_SIZE_EVENT, MENU_EVENT, FOCUS_EVENT, CAPSLOCK_ON)
39         (ENHANCED_KEY, RIGHT_ALT_PRESSED, LEFT_ALT_PRESSED)
40         (RIGHT_CTRL_PRESSED, LEFT_CTRL_PRESSED, SHIFT_PRESSED, NUMLOCK_ON)
41         (SCROLLLOCK_ON, FROM_LEFT_1ST_BUTTON_PRESSED)
42         (FROM_LEFT_2ND_BUTTON_PRESSED, FROM_LEFT_3RD_BUTTON_PRESSED)
43         (FROM_LEFT_4TH_BUTTON_PRESSED, RIGHTMOST_BUTTON_PRESSED, MOUSE_MOVED)
44         (DOUBLE_CLICK, MOUSE_WHEELED, MOUSE_HWHEELED, CONSOLE_FULLSCREEN)
45         (CONSOLE_FULLSCREEN_HARDWARE, CONSOLE_FULLSCREEN_MODE)
46         (CONSOLE_WINDOWED_MODE, CONSOLE_NO_SELECTION)
47         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_SELECTION_NOT_EMPTY)
48         (CONSOLE_MOUSE_SELECTION, CONSOLE_MOUSE_DOWN, HISTORY_NO_DUP_FLAG):
49         Redefine, expressing all values in hexadecimal rather than decimal;
50         this is consistent with Microsoft documentation, and it is also more
51         logical, since all represent bit-flags, bit-fields, or bit-masks.
52
53 2018-10-24  Keith Marshall  <keith@users.osdn.me>
54
55         Make <wincon.h> header effectively self-contained.
56
57         * include/wincon.h [_WIN32_WINNT < 0x0600]: Include <windef.h>...
58         [_WIN32_WINNT >= 0x0600]: ...but, Vista and later need <wingdi.h>
59         [__GNUC__ >= 3]: Remove condition; used only in association with...
60         (#pragma GCC system_header): ...this, it is redundant in this context.
61         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them as appropriate.
62
63 2018-10-24  David Gressett  <texasgaidheal@users.osdn.me>
64
65         Improve WinXP/Vista console I/O support.
66
67         * include/wincon.h (AddConsoleAlias, GetConsoleAlias)
68         (GetConsoleAliases, GetConsoleAliasExes, GetConsoleAliasesLength)
69         (GetConsoleAliasExesLength, GetConsoleOriginalTitle): New function
70         name aliases; define them, mapping them conditionally to represent...
71         [UNICODE]: ...their corresponding UTF-16LE function names, else...
72         [!UNICODE]: ...their corresponding ASCII/DBCS function names.
73         (COMMON_LVB_LEADING_BYTE, COMMON_LVB_TRAILING_BYTE
74         (COMMON_LVB_GRID_HORIZONTAL, COMMON_LVB_GRID_LVERTICAL)
75         (COMMON_LVB_GRID_RVERTICAL, COMMON_LVB_REVERSE_VIDEO)
76         (COMMON_LVB_UNDERSCORE, ENABLE_VIRTUAL_TERMINAL_INPUT)
77         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
78         (ENABLE_LVB_GRID_WORLDWIDE,(MOUSE_HWHEELED): Define them.
79         (GetConsoleAliasA, GetConsoleAliasW, HandlerRoutine): Declare.
80         (CONSOLE_FULLSCREEN, CONSOLE_FULLSCREEN_HARDWARE): Define when...
81         [_WIN32_WINNT >= 0x0500]: ...this prevails; additionally...
82         (GetConsoleFontSize): ...declare function.
83         (CONSOLE_NO_SELECTION, CONSOLE_SELECTION_NOT_EMPTY)
84         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_MOUSE_SELECTION)
85         (CONSOLE_MOUSE_DOWN): Define them; make them visible only when...
86         [_WIN32_WINNT >= 0x0501]: ...this prevails.
87         (struct _CONSOLE_FONT_INFO): Make it visible, only when...
88         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
89         (CONSOLE_FONT_INFO, PCONSOLE_FONT_INFO): ...these typedefs.
90         (struct _CONSOLE_SELECTION_INFO): Declare it; visible only when...
91         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
92         (CONSOLE_SELECTION_INFO, PCONSOLE_SELECTION_INFO): ...these typedefs.
93         [_WIN32_WINNT >= 0x0501] (AddConsoleAliasA, AddConsoleAliasW)
94         (GetConsoleAliasesA, GetConsoleAliasesW, GetConsoleAliasExesA)
95         (GetConsoleAliasExesW, GetConsoleAliasesLengthA)
96         (GetConsoleAliasesLengthW, GetConsoleAliasExesLengthA)
97         (GetConsoleAliasExesLengthW, GetConsoleSelectionInfo)
98         (GetCurrentConsoleFont): Declare functions.
99         [_WIN32_WINNT >= 0x0600] (HISTORY_NO_DUP_FLAG): Define it.
100         (struct _CONSOLE_FONT_INFOEX): New structure; declare it only when...
101         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
102         (CONSOLE_FONT_INFOEX, PCONSOLE_FONT_INFOEX): ...these typedefs.
103         (CONSOLE_HISTORY_INFO, PCONSOLE_HISTORY_INFO): New typedefs; they
104         map to an anonymous structure, and are visible only when...
105         [_WIN32_WINNT >= 0x0600]: ...this prevails.
106         (struct _CONSOLE_READCONSOLE_CONTROL): New structure; declare when...
107         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
108         (CONSOLE_READCONSOLE_CONTROL, PCONSOLE_READCONSOLE_CONTROL): ...these.
109         (struct _CONSOLE_SCREEN_BUFFER_INFOEX): New structure; declare when...
110         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
111         (CONSOLE_SCREEN_BUFFER_INFOEX, PCONSOLE_SCREEN_BUFFER_INFOEX):
112         ...these typedefs.
113         [_WIN32_WINNT >= 0x0600] (GetConsoleHistoryInfo)
114         (GetConsoleOriginalTitleA, GetConsoleOriginalTitleW)
115         (GetConsoleScreenBufferInfoEx, GetCurrentConsoleFontEx)
116         (SetConsoleHistoryInfo, SetConsoleScreenBufferInfoEx)
117         (SetCurrentConsoleFontEx): Declare functions.
118
119 2018-09-03  Keith Marshall  <keith@users.osdn.me>
120
121         Prepare and publish MinGW.org WSL-5.1.1 release.
122
123         * All files (wsl-5.1.1-release): Tag assigned.
124
125 2018-07-29  Keith Marshall  <keith@users.osdn.me>
126
127         Don't restrict <winerror.h> exposure when including <winsock.h>
128
129         * include/winerror.h [__WINSOCK_H_SOURCED__]: Remove filters.
130         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): Do not define; delete
131         all dependent filter references.
132
133 2018-07-11  Keith Marshall  <keith@users.osdn.me>
134
135         Make <wincrypt.h> header effectively self-contained.
136
137         * include/wincrypt.h: Include <winbase.h>
138
139 2018-07-11  Keith Marshall  <keith@users.osdn.me>
140
141         Correct <wincrypt.h> typographic errors; fix issue [#38391]
142
143         * include/wincrypt.h (CALG_TLS1PRF): Delete symbolic reference to...
144         (ALG_CLASS_DHASH): ...this; there is no such symbol; replace it with...
145         (ALG_CLASS_HASH): ...this, which represents the correct reference.
146         (struct _CRYPTOAPI_BLOB): Delete extraneous "typedef" keyword; this
147         struct definition is not directly associated with any type name.
148         (struct _SSL_EXTRA_CERT_CHAIN_POLICY_PARA): Likewise.
149
150 2018-02-26  Keith Marshall  <keith@users.osdn.me>
151
152         Prepare and publish MinGW.org WSL-5.1 release.
153
154         * All files (wsl-5.1-release): Tag assigned.
155
156 2018-02-24  Keith Marshall  <keith@users.osdn.me>
157
158         Make <iptypes.h> header effectively self-contained.
159
160         * include/iptypes.h: Assert copyright; tidy layout.
161         Include <windef.h>; it is required for self-containment.
162         (__need_time_t): Define for selective inclusion of <sys/types.h>
163         (_BEGIN_C_DECLS, _END_C_DECLS): Use them as appropriate.
164         (_WIN32_WINNT): Always compare it symbolically.
165         (__dhcp_time_t): New temporary data type macro; define it...
166         [_WIN64]: ...as equivalent to __time64_t, otherwise...
167         [!_WIN64]: ...equivalent to __time32_t, and then...
168         (struct _IP_ADAPTER_INFO): ...use it as the data type for...
169         (LeaseObtained, LeaseExpires): ...these fields.
170
171 2017-12-20  Keith Marshall  <keith@users.osdn.me>
172
173         Make <winreg.h> header effectively self-contained.
174
175         * include/winreg.h: Include <winbase.h>, thus achieving effective
176         self-containment; since this also indirectly includes <_mingw.h>,
177         there is no longer any need to include it directly.
178
179 2017-12-20  Keith Marshall  <keith@users.osdn.me>
180
181         Clean up, following issue [#2262] patch application.
182
183         * include/winreg.h: Tidy layout; correct copyright assertion.
184         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
185         [UNICODE] (__AW): Do not use deleted macro; replace it with...
186         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
187         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
188         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
189         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
190         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
191         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
192         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
193         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
194         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
195         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
196         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
197         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
198         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
199         all "4.x" branches specified these incorrectly, dependent on...
200         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
201         "legacy" branch, whence the "5.x" branches are propagated, correctly
202         required an alternative condition which is the equivalent of...
203         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
204
205 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
206
207         Update registry management API, per issue [#2262].
208
209         * include/winreg.h: Merge changes from 4.1-dev branch.
210         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
211         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
212         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
213         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
214         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
215         (RRF_ZEROONFAILURE): New manifest constants; define them.
216         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
217         (RegOverridePredefKey): Add previously omitted function prototypes.
218         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
219         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
220         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
221         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
222         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
223         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
224         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
225         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
226         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
227         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
228         (RegDeleteKeyValueA, RegDeleteKeyValueW)
229         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
230         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
231         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
232         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
233         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
234         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
235         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
236         (RegSetKeyValue): Define, mapping each to its respective function...
237         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
238         [defined UNICODE] (__AW): ...for the UTF-16LE case.
239
240         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
241         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
242         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
243         (RegSaveKeyExW@16): Remove them; relocate them to...
244         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
245         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
246         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
247         (RegSaveKeyExW@16): ...their correct location, here.
248         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
249         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
250         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
251         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
252         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
253         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
254         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
255
256 2017-12-16  Keith Marshall  <keith@users.osdn.me>
257
258         Provide default definition for _WIN32_IE feature test macro.
259
260         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
261         (_WIN32_IE_IE50): ...this default value.
262
263         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
264         a conflicting proposal for the default value.
265
266 2017-12-06  Keith Marshall  <keith@users.osdn.me>
267
268         Prepare and publish MinGW.org WSL-5.0.2 release.
269
270         * All files (wsl-5.0.2-release): Tag assigned.
271
272 2017-11-28  Keith Marshall  <keith@users.osdn.me>
273
274         Make <wsnetbs.h> header effectively self-contained.
275
276         * include/wsnetbs.h: Assert copyright; tidy layout; include
277         "_winsock.h", so making this header effectively self-contained, and
278         thus relieving the user of a responsibility for ensuring that some
279         other appropriate WinSock header has been included first.
280
281 2017-11-28  Keith Marshall  <keith@users.osdn.me>
282
283         Factor <winsock.h> duplicate content out of <winsock2.h>
284
285         * include/winsock2.h: Remove all declarations and definitions which
286         are identically specified in <winsock.h>, but keep them in scope by...
287         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
288         declarations and definitions therefrom, which introduce conflicts.
289         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
290         definitions and declarations.
291
292         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
293         WinSock v1.1 and WinSock v2, the latter of which will override when
294         correctly included by <winsock2.h>
295
296 2017-11-24  Keith Marshall  <keith@users.osdn.me>
297
298         Make <winsock.h> and <winsock2.h> duplicate code congruent.
299
300         * include/winsock.h (SOMAXCONN): Move definition into...
301         [!__INSIDE_MSYS__]: ...this guarded scope.
302
303         * include/winsock2.h: Rearrange as necessary.
304         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
305         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
306         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
307         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
308         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
309         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
310         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
311         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
312         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
313         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
314         [!defined __INSIDE_MSYS__]: ...as this, throughout.
315         (gethostname): Update function prototype, adding...
316         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
317
318         * include/ws2spi.h: Tidy layout; assert copyright.
319         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
320         (LPFD_SET): Delete all type references; use...
321         (fd_set *): ...this instead.
322
323 2017-11-14  Keith Marshall  <keith@users.osdn.me>
324
325         Establish default selection for WinSock API declaration.
326
327         * include/windows.h include/nspapi.h: Include...
328         * include/_winsock.h: ...this new system private header; it selects...
329         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
330         provided by conditional inclusion of <winsock2.h>, otherwise...
331         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
332         as provided by inclusion of <winsock.h>
333
334         * tests/headers.at <_winsock.h>: Add reference.
335
336 2017-11-14  Keith Marshall  <keith@users.osdn.me>
337
338         Update gethostname() declaration; drop Cygwin specificity.
339
340         * include/winsock.h (gethostname): Declare unconditionally; add...
341         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
342         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
343         [!defined __INSIDE_MSYS__]: ...as this, throughout.
344
345 2017-11-09  Keith Marshall  <keith@users.osdn.me>
346
347         Normalize fd_set event macros for <winsock2.h> compatibility.
348
349         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
350         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
351         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
352         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
353         count to a bit flag with value of 1, in each case respectively.
354         [_WINSOCK2_H]: Extend shift count enumeration, to include...
355         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
356         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
357         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
358         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
359         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
360         of 1 greater than the offset of the last defined flag; hence...
361         (FD_ALL_EVENTS): ...derive this mask for all event flags.
362
363 2017-11-09  Keith Marshall  <keith@users.osdn.me>
364
365         Filter potential WinSock v2 conflicts out of <winsock.h>
366
367         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
368         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
369         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
370         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
371         not define any of these; they are not compatible with WinSock v2.
372         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
373         appropiately in <winsock2.h>
374
375 2017-11-09  Keith Marshall  <keith@users.osdn.me>
376
377         Filter out <winsock.h> typedef anomalies.
378
379         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
380         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
381         them as type definitions, but warn of potential conflict with...
382         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
383         function; declare its prototype.
384
385 2017-11-08  Keith Marshall  <keith@users.osdn.me>
386
387         Overhaul WinSock fd_set content management macros.
388
389         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
390         original implementations of each of these macros, redirecting to...
391         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
392         inline functions, respectively; these are more robust, and correct a
393         defect in the original FD_SET macro implementation, whereby duplicate
394         descriptors could be added to an fd_set array, but would not then be
395         removed by the corresponding FD_CLR macro.
396
397         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
398         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
399         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
400         function, which is implemented in each of these libraries.
401
402 2017-11-07  Keith Marshall  <keith@users.osdn.me>
403
404         Identify features which have been deprecated in WinSock v2.
405
406         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
407         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
408         (__MINGW_ATTRIB_DEPRECATED): ...to this.
409
410         * include/winsock.h include/winsock2.h: Qualify...
411         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
412         (WSACancelBlockingCall): ...each of these function prototypes, with...
413         (__WINSOCK2_DEPRECATED): ...this attribute.
414
415 2017-11-07  Keith Marshall  <keith@users.osdn.me>
416
417         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
418
419         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
420         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
421         with preferred convention for system feature test macros.
422
423 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
424
425         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
426
427         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
428         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
429         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
430         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
431         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
432         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
433         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
434         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
435         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
436         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
437         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
438
439         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
440         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
441
442 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
443
444         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
445
446         * include/wtypes.h: Tidy layout; assert copyright.
447         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
448         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
449         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
450         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
451         (__BLOB_T_DEFINED): ...this; do not define...
452         (_WTYPES_H): ...this external guard.
453
454         * include/nspapi.h: Tidy layout; assert copyright.
455         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
456         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
457         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
458         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
459         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
460         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
461         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
462         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
463         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
464         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
465         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
466         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
467         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
468         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
469         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
470         (__AW_ALIAS__): ...this, for definition of each of...
471         (SERVICE_INFO, LPSERVICE_INFO): ...these.
472
473         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
474         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
475         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
476         include nspapi.h selectively, to acquire them.
477
478 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
479
480         Factor <winerror.h> duplicate content out of winsock headers.
481
482         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
483         conditional block, and all of its content; selectively include...
484         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
485         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
486         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
487         define them, to segregate WSA error messages applicable to WinSock v2
488         only, from those applicable to both WinSock v1.1 and WinSock v2.
489         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
490         codes, except WSABASEERR, relative to WSABASEERR itself.
491
492 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
493
494         Factor <sys/time.h> duplicate content out of winsock headers.
495
496         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
497         conditional block, and all its content; include <sys/time.h> instead.
498         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
499         processing this header, such that only selected content from other
500         internally referenced headers is exposed.
501
502 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
503
504         Source BSD non-standard type definitions from mingwrt header.
505
506         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
507         conditional block, and its entire type definition content; include...
508         * include/sys/bsdtypes.h: ...this common file instead; it defines...
509         (u_char, u_int, u_long, u_short): ...these non-standard data types.
510
511 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
512
513         Correct misuse of __INSIDE_MSYS__ feature test.
514
515         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
516         omits "defined" operator; it should be expressed consistently as...
517         [! defined __INSIDE_MSYS__]: ...this; correct it.
518
519 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
520
521         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
522
523         * include/winsock.h: Tidy layout; assert copyright.
524         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
525
526         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
527         sections, which are common with <winsock.h>, are laid out congruently.
528         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
529         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
530         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
531         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
532         [UNICODE]: ...alternative typedefs, and function name aliases...
533         [!UNICODE]: ...versus this case.
534
535 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
536
537         Resolve secondary issue arising from MinGW-Bug [#2350]
538
539         * include/winuser.h (GetTitleBarInfo)
540         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
541         it conflicted with current MSDN documentation, so now falls within...
542         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
543
544 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
545
546         Resolve MinGW-Bug [#2350]
547
548         * include/winuser.h (GetTitleBarInfo): Move prototype after...
549         (PTITLEBARINFO): ...this type definition; it is used as a function
550         argument type, so must be defined beforehand.
551
552 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
553
554         Extend testsuite to cover winsock fd_set macro operations.
555
556         * tests/winsock.at: New file; it implements appropriate tests, and
557         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
558         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
559
560         * tests/testsuite.at.in (winsock.at): Integrate it.
561         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
562         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
563         default list of libraries, or resets the list to this initial default.
564         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
565         library specifications, to be used until subsequently reset.
566
567 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
568
569         Prepare and tag for release of MinGW.org WSL-5.0.1
570
571         * All files (wsl-5.0.1-release): Tag assigned.
572
573 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
574
575         Automate testsuite dependency generation.
576
577         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
578         enumerate all such wildcard matches as prerequisites, instead of...
579         (headers.at): ...this sole explicit dependency.
580
581 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
582
583         Make <winnt.h> header effectively self-contained.
584
585         * include/winnt.h (_WINNT_H): Defer definition unless included via...
586         (windef.h): ...this; include it, to enforce inclusion order, then...
587         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
588
589 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
590
591         Consolidate <winuser.h> version specific conditionals.
592
593         * include/winuser.h: Reorganize file content; group manifest constant
594         definitions into one nested collection of conditional blocks, with one
595         block per Windows version evolution; do likewise for type definitions
596         and function prototypes which are always exposed, and separately...
597         [! defined NOGDI]: ...for those which may be suppressed, when GDI
598         support is not required.
599
600 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
601
602         Make <winuser.h> header effectively self-contained.
603
604         * include/winuser.h (stdarg.h): Include it, in addition to...
605         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
606         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
607
608 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
609
610         Consolidate <wingdi.h> version specific conditionals.
611
612         * include/wingdi.h: Reorganize file content; group manifest constant
613         definitions into a single nested collection of conditional blocks, for
614         those definitions which are common to both Win9x and WinNT, with one
615         block per Windows version evolution, sorting alphabetically within
616         each block; do likewise for additional manifest constant definitions
617         which are specific to WinNT, and also for data type definitions and
618         function prototypes.
619
620 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
621
622         Tidy, and make <wingdi.h> header effectively self-contained.
623
624         * include/wingdi.h: Tidy layout; assert copyright.
625         (windef.h): Include it; this achieves self-containment.
626         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
627         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
628         (__AW_ALIAS__): ...this, when defining each of...
629         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
630         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
631         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
632         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
633         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
634         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
635         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
636         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
637         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
638         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
639         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
640         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
641         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
642         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
643         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
644         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
645         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
646         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
647         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
648         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
649         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
650         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
651         (wglUseFontOutlines, GetGlyphIndices): ...these.
652
653 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
654
655         Declare CONDITION_VARIABLE API, per feature request [#2314]
656
657         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
658         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
659         (InitializeConditionVariable, SleepConditionVariableCS)
660         (SleepConditionVariableSRW, WakeAllConditionVariable)
661         (WakeConditionVariable): ...declare prototypes.
662
663 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
664
665         Declare SRWLOCK API, to support feature request [#2314]
666
667         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
668         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
669         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
670         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
671         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
672         (TryAcquireSRWLockShared): Declare additional prototypes.
673
674 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
675
676         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
677
678         * include/winerror.h: Tidy layout; assert copyright.
679
680         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
681         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
682         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
683         both locations; it permitted inconsistency between the two.
684
685 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
686
687         Consolidate <winbase.h> version specific conditionals.
688
689         * include/winbase.h: Reorganize file content; group manifest constant
690         definitions into one nested collection of conditional blocks, with one
691         block per Windows version evolution, sorting alphabetically within each
692         block; do likewise for data type definitions and function prototypes.
693
694 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
695
696         Tidy, and make <winbase.h> header effectively self-contained.
697
698         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
699         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
700         (__AW_EXTENDED__): ...this; subsequently reimplement...
701         (__AW_ALIAS__): ...this, with original name, now encapsulating...
702         (__AW_SUFFIXED__): ...this.
703
704         * include/dbt.h (__AW_ALIAS__): Replace all references with...
705         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
706         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
707         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
708
709         * include/winbase.h: Tidy layout; assert copyright.
710         (stdarg.h, windef.h): Include them, to achieve self-containment.
711         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
712         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
713         [__AW_ALIAS__]: ...this, to correctly specify each of...
714         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
715         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
716         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
717         [__AW_SUFFIXED__]: ...this, to correctly map each of...
718         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
719         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
720         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
721         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
722         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
723         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
724         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
725         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
726         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
727         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
728         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
729         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
730         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
731         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
732         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
733         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
734         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
735         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
736         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
737         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
738         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
739         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
740         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
741         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
742         (GetPrivateProfileInt, GetPrivateProfileSection)
743         (GetPrivateProfileSectionNames, GetPrivateProfileString)
744         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
745         (GetProfileString, GetShortPathName, GetStartupInfo)
746         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
747         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
748         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
749         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
750         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
751         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
752         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
753         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
754         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
755         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
756         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
757         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
758         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
759         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
760         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
761         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
762         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
763         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
764         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
765         (WritePrivateProfileString, WritePrivateProfileStruct)
766         (WriteProfileSection, WriteProfileString): ...these, and add...
767         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
768         (GetFirmwareEnvironmentVariable): ...these previously missing generic
769         function name aliases.
770
771 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
772
773         Refactor mingwrt and w32api common makefile content.
774
775         * Makefile.in (w32api-srcdist-config-files): Rename it...
776         (w32api-srcdist-common-files): ...as this phoney build rule.
777         (shared_include_file): New macro; define it, and include named file.
778         (configure, config.status, Makefile, config.status.missing, _mingw.h)
779         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
780         out; relocate them to new file in common parent directory...
781         * ../Makefile.comm: ...here.
782
783 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
784
785         Correct a copyright notice update omission.
786
787         * configure.ac: Extend copyright date range to include 2017.  Also
788         clean up superfluous trailing whitespace.
789
790 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
791
792         Fix generated header file dependencies.
793
794         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
795         [VERSION.m4]: ...this; package version changes are no longer made...
796         [configure.ac]: ...here; delete associated prerequisite reference.
797         (distclean-local): Delete them.
798
799 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
800
801         Prepare and tag for release of w32api-5.0 package set.
802
803         * All files (wsl-5.0-release): Tag assigned.
804
805 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
806
807         Implement basic test suite infrastructure.
808
809         * tests: New subdirectory; it hosts...
810         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
811         * tests/headers.at: ...these new files; they implement the basic test
812         suite infrastructure, initially comprising header integrity checks.
813
814         * configure.ac (AC_PROG_CXX): Check it.
815         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
816         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
817         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
818         tests/Makefile.
819
820         * Makefile.in (check test tests): New rules; all are synonymous.
821         (check-recursive): New rule; invoked by each of the preceding three.
822         (w32api-srcdist-testsuite-files): New rule; implement and use it...
823         (w32api-srcdist-files): ...here.
824
825 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
826
827         Add missing constant definition, per issue [#2249].
828
829         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
830
831 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
832
833         Avoid unnecessary duplication of configuration files.
834
835         * Makefile.in (vpath install-sh): Define it; it matches...
836         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
837         rule for creating duplicate file reference links in $top_srcdir.
838         (configure): Add '-I ..' option, when running autoconf.
839         (w32api-srcdist-files): Rename it as...
840         (w32api-srcdist-package-files): ...this; remove dependencies on...
841         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
842         (w32api-srcdist-config-files): ...this new distributable files
843         enumeration goal; add it as one new prerequisite of...
844         (w32api-srcdist-files): ...this repurposed goal; also depends on...
845         (w32api-srcdist-package-files): ...this; populate it using...
846         (SRCDIST_ADD): ...this macro; redefine it accordingly.
847
848 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
849
850         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
851
852         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
853         it was previously transcribed incorrectly, as being equivalent to...
854         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
855         (FILE_DEVICE_DISK): ...this.
856
857 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
858
859         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
860
861         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
862         alternative generic symbol mapping definitions, and typedefs, with...
863         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
864         their respective ANSI and UNICODE specific references.
865
866 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
867
868         Deprecate obsolete <winable.h> and <pbt.h> headers.
869
870         * Makefile.in (%.h.in): Generalize vpath definition.
871         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
872         (w32api_generated_headers, replace_headers, macro_name): New macros.
873         (install-w32api-headers): Add dependency on w32api_dist_headers.
874         (%.h): New static pattern rule; it generates generic dependants of...
875         * include/obsolete.h.in: ...this new template for obsolete headers.
876
877         * include/winable.h include/pbt.h: Delete them; they are obsolete;
878         replace them by install-time generated generic stubs.
879
880 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
881
882         Update <winuser.h> and <dbt.h>; fix issue [#2317].
883
884         * include/winuser.h: Tidy layout; add copyright notice.
885         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
886         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
887         selective inclusion of content from other headers; delete when done.
888         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
889         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
890         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
891         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
892         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
893         them selectively from <dbt.h>, where they are properly defined.
894         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
895         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
896         formerly UINT, which doesn't match 64-bit size required for Win64.
897         (SetTimer): Likewise; also declare similar return type.
898         (WINEVENTPROC): Add missing CALLBACK attribute.
899         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
900
901         * include/w32api.h (__AW_ALIAS__): New macro; define it.
902         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
903
904         * include/dbt.h: Tidy layout; add copyright notice.
905         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
906         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
907         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
908         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
909         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
910         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
911         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
912         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
913         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
914         structure typedef names, and their respectively corresponding...
915         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
916         type names.
917
918 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
919
920         Fix a minor ISO-C++11 conformity issue.
921
922         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
923         by ISO-C++11, between concatenated string literal elements.
924         (GetFiberData, NtCurrentTeb): Likewise.
925
926 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
927
928         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
929
930         * include/ddk/winddk.h: Update per issue [#2307] resolution.
931         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
932
933 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
934
935         Prepare and tag all files for release of w32api-3.18.1
936
937         * configure.ac (AC_INIT): Increment patch level to 3.18.1
938
939 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
940
941         Resolve improper macro expansion issue [#2307].
942
943         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
944         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
945         dependent macro WITHIN the expansion of each of these; hence...
946
947         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
948         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
949         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
950         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
951         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
952         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
953         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
954         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
955         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
956         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
957         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
958         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
959         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
960         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
961         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
962         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
963         ...adjust these dependent macro definitions accordingly.
964
965         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
966         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
967         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
968         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
969         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
970         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
971         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
972         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
973         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
974         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
975
976 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
977
978         Update install-sh to match mingw.org/build-aux package.
979
980         * install-sh: Delete it; use version in parent directory instead,
981         recreating local copy, (as symlink, if supported), on demand.
982
983 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
984
985         Eliminate redundant configuration files.
986
987         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
988         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
989
990         * configure.ac (AC_PROG_LN_S): Add configuration check.
991
992 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
993
994         Discard redundant config.guess and config.sub files.
995
996         * config.guess config.sub: Delete them; they are no longer required.
997         * Makefile.in (SRCDIST_ADD): Remove related references.
998
999 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1000
1001         Merge recent legacy branch updates to 5.0-active branch.
1002
1003         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
1004         * include/sdkddkver.h include/setupapi.h include/windows.h
1005         * include/winnt.h include/winuser.h include/winver.h
1006         * include/wtsapi32.h lib/wtsapi32.def: Updated.
1007
1008 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1009
1010         Prepare and tag all files for release of w32api-3.18.
1011
1012 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1013
1014         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
1015
1016         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
1017         references from $(MAKE) command lines; make passes them implicitly.
1018
1019 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1020
1021         Backport MemoryBarrier() implementation from 4.0-dev branch.
1022
1023         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
1024         Earnie's original inline implementation, but declared 'static' to fix
1025         issue [#1661]; it is further modified, to avoid the broken pre-Vista
1026         fallback identified by issue [#2131], and to remove references to...
1027         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
1028         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
1029         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
1030         back to inline assembly code when necessary.
1031
1032         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
1033         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
1034         code, for hosts which do not support the SSE2 'mfence' instruction.
1035
1036 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1037
1038         Merge further W32API updates from Cygwin CVS.
1039         Incorporated selected changes from 2012-08-01 to 2012-08-04.
1040
1041         * include/setupapi.h include/winuser.h include/winver.h
1042         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
1043
1044 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1045
1046         Update mapping of GCC to MSVC host identification macros.
1047
1048         * include/windows.h: Assert copyright; tidy layout.
1049         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
1050         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
1051         [!_WINSVC_H]: Do not explicitly test these here; they are properly
1052         managed implicitly, by GCC, when including the associated headers.
1053
1054         * include/winnt.h: Assert copyright; tidy layout.
1055         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1056         (__aligned__, __always_inline__, __selectany__): Prefer these...
1057         (aligned, always_inline, selectany): ...to these attribute forms.
1058         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
1059         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
1060         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
1061         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
1062         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
1063         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
1064         (_M_IX86): ...also removing this, but relocate it to...
1065         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
1066         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
1067         appropriate.
1068
1069         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
1070         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
1071
1072 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1073
1074         Merge W32API updates, from Cygwin CVS, into legacy branch.
1075         Incorporate changes since release of w32api-3.17, until 2012-07-06.
1076
1077         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
1078         2012-04-28 commit to Cygwin CVS.
1079
1080         * include/gdiplus/gdiplustypes.h include/imagehlp.h
1081         * include/routprot.h include/shlwapi.h include/userenv.h
1082         * include/winbase.h include/wincon.h include/windef.h
1083         * include/winerror.h include/wingdi.h include/winnt.h
1084         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
1085         match Cygwin CVS state, as of 2012-07-06.
1086
1087         * include/wincrypt.h: Updated to remove duplicate manifest constant
1088         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
1089         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
1090         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
1091         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
1092         copies of these further duplicated definitions, identified during
1093         the merging operation.
1094
1095 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1096
1097         Synchronize package version management with MinGW Runtime.
1098
1099         * VERSION.m4: New file; link it to keep in sync with identically named
1100         file in top level composite package source directory; it defines...
1101         (__VERSION__): ...this new composite package version macro.
1102
1103         * aclocal.m4: Link it, to keep in sync with identically named files in
1104         top level composite source and sibling mingwrt sub-package directories.
1105         (__VERSION__): New macro; include VERSION.m4 to define it.
1106         (__BUG_REPORT_URL__): New macro; define it.
1107
1108         * configure.ac (AC_INIT): Assign package version and bug report URL...
1109         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
1110         automatic inclusion of aclocal.m4
1111
1112         * Makefile.in (configure): Add dependency on VERSION.m4
1113
1114 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1115
1116         Eliminate redundant <parts/winioctl.h> header.
1117
1118         * include/parts/winioctl.h: Delete it; distribute its content...
1119         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
1120         ...among these, separating it into discrete sections based on...
1121         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
1122         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
1123         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
1124         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
1125
1126         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
1127         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
1128
1129 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1130
1131         Enforce consistent specification of package version.
1132
1133         * include/w32api.h: Rename as...
1134         * include/w32api.h.in: ...this build-time template file.
1135         (__W32API_VERSION): Redefine it, in terms of...
1136         (%PACKAGE_VERSION_LONG%): ...this substitution template.
1137         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
1138         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
1139         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
1140         (%PACKAGE_VERSION_PATCH%): ...these.
1141
1142         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
1143         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
1144         mingwrt/include/_mingw.h.in file.
1145
1146         * Makefile.in (all-w32api-libs): Add dependency on...
1147         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
1148         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
1149         they apply appropriate substitutions to the renamed template files.
1150         (install-w32api-headers): Explicitly add w32api.h
1151
1152 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1153
1154         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
1155
1156         * include/parts/winioctl.h: New file; it provides infrastructure for
1157         sharing of common code between DDK headers and primary <winioctl.h>
1158         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
1159         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
1160         macros; they facilitate more consise expression of factored out IOCTL
1161         and FSCTL macros; define them.
1162
1163         * include/ddk/ntddk.h: Assert copyright; tidy layout.
1164         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
1165         (_DDK_NTDDK_H): ...this; it provides better indication of location.
1166         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1167
1168         * include/ddk/winddk.h: Assert copyright; tidy layout.
1169         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
1170         (_DDK_WINDDK_H): ...this; it provides better indication of location.
1171         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
1172         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1173         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
1174         (METHOD_NEITHER): Redefine as enumeration; factor it out.
1175         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
1176         (FILE_WRITE_ACCESS): Likewise.
1177         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1178         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1179         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1180         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1181         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1182         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1183         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1184         (PPARTITION_INFORMATION_MBR): Likewise.
1185         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1186         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1187         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1188         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1189         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1190         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1191         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1192         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1193         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1194         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1195         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1196         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1197         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1198         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1199         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1200         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1201         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1202         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1203         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1204         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1205         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1206         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1207         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1208         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1209         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1210         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1211         was defined only when including this enumeration from winioctl.h
1212         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1213         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1214         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1215         include parts/winioctl.h
1216
1217         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1218         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1219         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1220         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1221         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1222         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1223         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1224         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1225         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1226         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1227         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1228         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1229         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1230         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1231         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1232
1233         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1234         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1235         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1236         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1237         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1238         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1239         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1240         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1241         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1242         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1243         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1244         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1245         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1246         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1247         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1248         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1249         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1250         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1251         these macros are now defined in parts/winioctl.h; include it.
1252         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1253         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1254         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1255         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1256         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1257         (VALID_NTFT): Redefine as enumeration; factor it out.
1258         (IsRecognizedPartition, IsContainerPartition): Factor out.
1259         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1260         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1261         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1262         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1263         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1264         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1265         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1266         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1267         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1268         (struct _PARTITION_INFORMATION): Change field data types for...
1269         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1270         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1271         with Windows DDK convention, then factor out struct, together with...
1272         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1273         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1274         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1275         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1276         (struct _GET_LENGTH_INFORMATION)
1277         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1278         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1279         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1280         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1281         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1282         (PFORMAT_EX_PARAMETERS): Factor out.
1283         (struct _REASSIGN_BLOCKS): Change field data types for...
1284         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1285         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1286         convention, then factor out the struct definition, together with...
1287         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1288         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1289         (PSET_PARTITION_INFORMATION): Factor out.
1290         (struct _VERIFY_INFORMATION): Change field data type for...
1291         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1292         factor out the entire struct definition, together with...
1293         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1294         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1295         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1296         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1297         (PDISK_GROW_PARTITION): Factor out.
1298
1299         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1300         definitions from Windows DDK headers, by including parts/winioctl.h;
1301         delete duplicate definitions already identified as having been factored
1302         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1303         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1304         UCHAR, resulting in no significant changes, except that...
1305         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1306         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1307         (StorageManagerName): ...these previously missing fields, originally
1308         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1309         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1310
1311 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1312
1313         Windows application module version information API updates.
1314
1315         * include/winver.h: Assert copyright; tidy layout.
1316         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1317         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1318         having both ANSI and UTF-16LE specific alternative implementations.
1319         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1320         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1321         note that both are generic, with ANSI and UTF-16LE implementations,
1322         but the ANSI implementations are missing from MSVCRT.DLL when...
1323         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1324
1325         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1326         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1327
1328 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1329
1330         Revert a failed experimental macro construct.
1331
1332         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1333         code, and doesn't work in the C preprocessor conditional context where
1334         its associated constant definitions are most likely to be required.
1335         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1336         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1337         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1338         now in terms of their preferred equivalents from <sdkddkver.h>
1339
1340 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1341
1342         Code clean-up; fix MinGW-Bug [#2263].
1343
1344         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1345         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1346         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1347
1348         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1349         style comments, using ISO-C conforming style; remove all redundant
1350         parameter names from function prototype declarations, throughout.
1351         (pragma GCC system_header): Remove pointless conditional guard.
1352         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1353         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1354         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1355         alternatives, respectively; they offer improved self-documentation.
1356         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1357         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1358         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1359         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1360         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1361         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1362         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1363         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1364         from their __AW_STRING_A__ equivalent string constant definitions.
1365         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1366         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1367         a hexadecimal expression of the mask value over the former decimal.
1368         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1369         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1370         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1371         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1372         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1373         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1374         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1375         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1376         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1377         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1378         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1379         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1380         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1381         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1382         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1383         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1384         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1385         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1386         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1387         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1388         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1389         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1390         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1391         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1392         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1393         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1394         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1395         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1396         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1397         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1398         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1399         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1400         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1401         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1402         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1403         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1404         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1405         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1406         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1407         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1408         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1409         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1410         express them in hexadecimal, in preference to original decimal form.
1411         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1412         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1413         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1414         a string literal, but was missing delimiting quotes; insert them.
1415         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1416         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1417         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1418         aliases for each of the UNICODE/non-UNICODE cases respectively.
1419         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1420         was declared as type LPTSTR, but should be type LPSTR.
1421         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1422         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1423         type LPSTR, but should be type LPWSTR.
1424         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1425         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1426         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1427
1428 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1429
1430         Correct defect in build system compilation rule.
1431
1432         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1433         source file; it expands to also include prerequisite header files,
1434         which should not appear on the compilation command line.  Rewrite
1435         rule in static pattern format, and use $< instead.
1436
1437 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1438
1439         Build system corrections for GCC build time support.
1440
1441         * configure.ac (AC_PROG_CC): Don't use this; we need...
1442         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1443         building with only a stage 1 partially built GCC installation.
1444
1445         * Makefile.in (install-headers): New make objective; map it to...
1446         (install-w32api-headers): ...this, for which it is a logical alias.
1447
1448 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1449
1450         Overhaul and streamline build system configuration.
1451
1452         * configure.in: Delete obsolete file; replace with...
1453         * configure.ac: New file; rewritten per current autoconf conventions.
1454
1455         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1456         it now processes the entire build without using separate sub-makes.
1457
1458         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1459         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1460
1461 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1462
1463         Remove unused aclocal.m4 configuration file.
1464
1465         * aclocal.m4: Delete it; it provides no content used by this package.
1466
1467 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1468
1469         Adapt platform feature checks to NTDDI_VERSION conventions.
1470
1471         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1472         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1473         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1474         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1475         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1476
1477         * include/w32api.h: Assert copyright; include sdkddkver.h.
1478         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1479         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1480         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1481         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1482         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1483         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1484         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1485         macro definitions by long integer constants, and mark as deprecated.
1486         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1487         mingwrt/include/_mingw.h, whence we similarly relocate...
1488         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1489
1490         * include/windef.h: Assert copyright; include w32api.h, whence we
1491         infer default assignments, per included sdkddkver.h, for each of...
1492         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1493         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1494
1495 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1496
1497         Remove generated configure script from revision control.
1498
1499         * configure: Delete from SCM; maintainer must regenerate it, when
1500         required, as SCM will now ignore it.
1501
1502 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1503
1504         Cosmetic adjustment to match MSDN documentation.
1505
1506         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1507         of parameter #1 to be LPCVOID, in preference to formerly specified,
1508         and functionally equivalent, 'const LPVOID'.
1509
1510 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1511
1512         Correct typos, as identified by issue [#1534].
1513
1514         * include/setupapi.h (SetupCancelTemporary): Should be...
1515         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1516         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1517         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1518         (SetupQueryA, SetupQueryW): ...these respectively to...
1519         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1520         (SetupDiGetWizardage): Misspelled; correct it to...
1521         (SetupDiGetWizardPage): ...this.
1522
1523 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1524
1525         Declare WTSVirtualChannel API functions per issue [#1342].
1526
1527         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1528         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1529         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1530         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1531         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1532
1533         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1534
1535 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1536
1537         Correct MENUITEMINFO structure definition per issue [#1659].
1538
1539         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1540         field was defined as type DWORD; correct it to type ULONG_PTR.
1541
1542 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1543
1544         Extend visibility of winsock definitions when building Cygwin.
1545
1546         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1547         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1548         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1549         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1550         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1551         [__INSIDE_MSYS__]: ...keep them hidden.
1552
1553         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1554         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1555         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1556         [__INSIDE_MSYS__]: ...also keep them hidden.
1557
1558 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1559
1560         Correct version guard for WinXP minimum requirement.
1561
1562         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1563         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1564         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1565         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1566
1567 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1568
1569         Add missing <shobjidl.h> and associated UUID implementation.
1570
1571         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1572         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1573
1574 2012-03-19  Ben Greear  <greear@users.sf.net>
1575
1576         Adjust header file definition order, to fix issue [#1570].
1577
1578         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1579         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1580
1581 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1582
1583         Add missing return value, flagged by 'make test'.
1584
1585         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1586         Return NO_ERROR in virtual definition.
1587
1588 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1589
1590         Remove duplicate definitions, identified by 'make test'.
1591
1592         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1593         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1594         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1595         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1596         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1597         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1598
1599         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1600         correctly defined (per MSDN) in <wincrypt.h>
1601
1602 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1603
1604         Correct misuse of #ifdef, identified by 'make test'.
1605
1606         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1607         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1608
1609 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1610
1611         Replace more incorrectly named manifest constants.
1612
1613         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1614         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1615         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1616         definitions respectively; retain for backward compatibility only.
1617
1618 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1619
1620         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1621
1622         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1623
1624 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1625
1626         Add missing MAPVK manifest constant definitions.
1627
1628         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1629         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1630
1631 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1632
1633         Correct some misspelled manifest constant names.
1634
1635         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1636         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1637         alias to original misspelling, to maintain backward compatibility.
1638         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1639         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1640         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1641         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1642
1643 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1644
1645         Add a missing Win2K sockets IOCTL feature.
1646
1647         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1648
1649 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1650
1651         Fix an incorrectly typed structure member.
1652
1653         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1654         should be LPSTR; correct it.
1655
1656 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1657
1658         Add another missing manifest constant definition.
1659
1660         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1661
1662 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1663
1664         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1665
1666         * include/windef.h (PACKED): Delete macro definition; its name is not
1667         reserved, and may thus conflict with a user defined name; replace it...
1668         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1669         use __attribute__((packed)) directly instead.
1670
1671 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1672
1673         Fix bad typedef, per MinGW-Bug [#1529].
1674
1675         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1676         conform with MSDN reference, as identified by Safety0ff.
1677
1678 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1679
1680         Add a missing manifest constant definition.
1681
1682         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1683
1684 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1685
1686         Win2K and Vista userenv updates.
1687
1688         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1689         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1690         (ExpandEnvironmentStringsForUser): Define function aliases.
1691         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1692         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1693         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1694         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1695         (GetProfileType): Declare function prototypes.
1696         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1697         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1698         New manifest constants; define them.
1699
1700 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1701
1702         * Makefile.in: Increment CYGRELEASE to 2.
1703
1704 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1705
1706         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1707
1708 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1709
1710         * include/w32api.h: Increment version to 3.17.
1711         * Makefile.in: Ditto.
1712
1713 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1714
1715         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1716         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1717         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1718         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1719
1720 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1721
1722         * include/w32api.h: Increment version to 3.16.
1723         * Makefile.in: Ditto.
1724
1725 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1726
1727         * include/commctrl.h (NMTCKEYDOWN): Define.
1728
1729 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1730
1731         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1732         Define.
1733
1734 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1735
1736         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1737         PSAPI_WORKING_SET_INFORMATION): Define.
1738
1739 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1740
1741         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1742
1743 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1744
1745         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1746
1747 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1748
1749         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1750         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1751         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1752
1753 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1754
1755         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1756         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1757         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1758
1759 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1760
1761         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1762         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1763
1764 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1765
1766         * include/winbase.h (__MINGW_EXTENSION): Define.
1767         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1768         struct to correct issue with -std=c99.
1769
1770 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1771
1772         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1773         (TIMER_BASIC_INFORMATION): Define.
1774         (NtQueryTimer): Define.
1775         (ZwQueryTimer): Define.
1776
1777 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1778
1779         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1780
1781 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1782
1783         * include/winbase.h (GetComputerNameEx): Define.
1784
1785 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1786
1787         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1788
1789 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1790
1791         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1792         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1793         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1794         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1795         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1796         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1797         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1798         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1799         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1800
1801 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1802
1803         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1804         Add defines for backward compatibility.
1805
1806 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1807
1808         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1809         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1810         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1811         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1812         EnumResourceTypesW): Ditto.
1813         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1814
1815 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1816
1817         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1818
1819 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1820
1821         * include/bdatypes.h: Add missing semicolons.
1822
1823 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1824
1825         * include/w32api.h: Increment version to 3.15.
1826         * Makefile.in: Ditto.
1827
1828 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1829
1830         * Makefile.in: Update naming convention and compression format (lzma),
1831         leaving existing naming convention and compression format as is for Cygwin.
1832
1833 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1834
1835         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1836         STATE_SYSTEM_PROTECTED): Define.
1837
1838         Thank you to Marcus von Appen for reporting the issue.
1839
1840 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1841
1842         * include/winuser.h (CF_DIBV5): Define.
1843         (CF_MAX): Adjust accordingly.
1844
1845         Thank you to Lenard Lindstrom for reporting the issue.
1846
1847 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1848
1849         * include/sspi.h (QuerySecurityContextToken): Define.
1850         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1851
1852         Thank you to Magnus Hagander for reporting the issue.
1853
1854 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1855
1856         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1857
1858 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1859
1860         * include/shlwapi (ASSOCDATA): Update definition.
1861
1862         Thank you to Frederic Deschamps for reporting the issue.
1863
1864 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1865
1866         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1867         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1868         COPY_FILE_NO_BUFFERING): Define.
1869
1870         Thank you to Roland Schwingel for reporting the issue.
1871
1872 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1873
1874         * include/winuser.h (HHOOK): Move definition from here...
1875         * include/windef.h: ...to here, as per MSDN.
1876
1877         Thank you to Samuel Thibault for reporting the issue.
1878
1879 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1880
1881         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1882         MSDN, change return type to LPCH.
1883         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1884
1885         Thank you to Emmanuel Stapf for reporting the issue.
1886
1887 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1888
1889         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1890         * include/windowsx.h (SNDMSG): Ditto.
1891
1892 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1893
1894         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1895
1896         Thank you to Ozkan Sezer for reporting the issue.
1897
1898 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1899
1900         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1901
1902         Thank you to Chris Oldwood for reporting the issue.
1903
1904 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1905
1906         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1907
1908         Thank you to Rick Walsh for reporting the issue.
1909
1910 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1911
1912         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1913
1914 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1915
1916         * include/winbase.h (OVERLAPPED): Correct definition.
1917
1918 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1919
1920         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1921         definition.
1922
1923         Thank you to Pasi Ruokola for reporting the issue.
1924
1925 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1926
1927         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1928
1929         Thank you to cheznonnon for reporting the issue.
1930
1931 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1932
1933         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1934
1935 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1936
1937         * winnt.h: Fix several SUBLANG ID errors (ref:
1938         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1939         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1940         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1941         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1942         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1943         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1944         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1945         (SUBLANG_LAO_LAO): ... this.
1946         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1947         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1948         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1949         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1950         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1951         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1952         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1953         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1954         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1955         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1956         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1957
1958 2010-08-24  LRN  <lrn1986@gmail.com>
1959
1960         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1961         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1962         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1963         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1964         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1965         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1966         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1967         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1968         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1969         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1970         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1971         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1972         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1973         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1974         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1975         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1976         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1977         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1978         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1979         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1980         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1981         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1982         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1983         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1984         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1985         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1986         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1987         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1988         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1989         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1990         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1991         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1992         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1993         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1994         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1995         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1996         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1997         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1998         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1999         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
2000         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
2001         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
2002         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
2003         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
2004         WAVE_FORMAT_DTS2): Define.
2005         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
2006         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
2007         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
2008         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
2009         Define.
2010
2011 2010-08-23  LRN  <lrn1986@gmail.com>
2012
2013         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
2014         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
2015         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
2016         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
2017         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
2018         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
2019         GetFinalPathNameByHandleW): Define.
2020
2021 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2022
2023         * lib/CheckConflicts.sh: New file.
2024
2025 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2026
2027         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
2028         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
2029         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
2030         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
2031         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
2032         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
2033         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
2034         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
2035         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
2036         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
2037         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
2038         conflicting definition.
2039         * lib/th32.def: Remove.
2040         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
2041         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
2042         definition.
2043
2044 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2045
2046         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
2047
2048 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2049
2050         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
2051
2052 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
2053
2054         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
2055         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
2056         * include/ddk/winddk.h: Ditto.
2057
2058 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
2059
2060         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
2061         CreateSymbolicLinkA, CreateSymbolicLink): Define
2062
2063 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2064
2065         * lib/kernel32.def(FatalExit): Correct definiton.
2066
2067 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2068
2069         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
2070         from 2010-07-17 since it breaks several applications.
2071
2072 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2073
2074         * lib/kernel32.def: Regenerate using gendef.
2075
2076 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
2077
2078         * include/commctrl.h (LVIF_GROUPID): Fix definition.
2079
2080 2010-07-20  Michael James  <james.me@gmail.com>
2081
2082         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
2083
2084 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2085
2086         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
2087         definition.
2088         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
2089         NdrMarshSCtxtHdl): Ditto.
2090         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
2091         definition in favour of typedef definition.
2092
2093         Thank you to Yuta Tomino for reporting the issues.
2094
2095 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
2096
2097         * include/gdiplus.h: New file.
2098         * include/gdiplus/gdiplus.h: New file.
2099         * include/gdiplus/gdiplusbase.h: New file.
2100         * include/gdiplus/gdiplusbrush.h: New file.
2101         * include/gdiplus/gdipluscolor.h: New file.
2102         * include/gdiplus/gdipluscolormatrix.h: New file.
2103         * include/gdiplus/gdipluseffects.h: New file.
2104         * include/gdiplus/gdiplusenums.h: New file.
2105         * include/gdiplus/gdiplusflat.h: New file.
2106         * include/gdiplus/gdiplusgpstubs.h: New file.
2107         * include/gdiplus/gdiplusgraphics.h: New file.
2108         * include/gdiplus/gdiplusheaders.h: New file.
2109         * include/gdiplus/gdiplusimageattributes.h: New file.
2110         * include/gdiplus/gdiplusimagecodec.h: New file.
2111         * include/gdiplus/gdiplusimaging.h: New file.
2112         * include/gdiplus/gdiplusimpl.h: New file.
2113         * include/gdiplus/gdiplusinit.h: New file.
2114         * include/gdiplus/gdipluslinecaps.h: New file.
2115         * include/gdiplus/gdiplusmatrix.h: New file.
2116         * include/gdiplus/gdiplusmem.h: New file.
2117         * include/gdiplus/gdiplusmetafile.h: New file.
2118         * include/gdiplus/gdiplusmetaheader.h: New file.
2119         * include/gdiplus/gdipluspath.h: New file.
2120         * include/gdiplus/gdipluspen.h: New file.
2121         * include/gdiplus/gdipluspixelformats.h: New file.
2122         * include/gdiplus/gdiplusstringformat.h: New file.
2123         * include/gdiplus/gdiplustypes.h: New file.
2124         * lib/gdiplus.c: New file containing GDI+ variable definitions
2125         and GUIDs.
2126         * lib/gdiplus.def: New file.
2127         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
2128         add gdiplus.c to SOURCES.
2129         * lib/test.c: Include gdiplus.h.
2130
2131 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
2132
2133         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
2134         GetPerformanceInfo): Define.
2135         * lib/psapi.def (GetPerformanceInfo): Define.
2136         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
2137         CryptEnumProviders): Define.
2138
2139 2010-02-17  LRN  <lrn1986@gmail.com>
2140
2141         * include/shlguid.h (IID_IFolderView): Define.
2142         * include/shlobj.h (IFolderView interface): Define.
2143         * lib/shell32.c (IID_IFolderView): Export.
2144
2145 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2146
2147         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
2148         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2149
2150 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2151
2152         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
2153
2154 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2155
2156         * include/shlobj.h (SHParseDisplayName): Fix definition.
2157
2158 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2159
2160         * include/w32api.h: Increment version to 3.14.
2161         * Makefile.in: Ditto.
2162
2163 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2164
2165         * include/shlobj.h (SHParseDisplayName): Define.
2166
2167         Thanks to James Roberts-Thomson for the report.
2168
2169 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2170
2171         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
2172
2173         Thanks to Alexander Vassilev for the report.
2174
2175 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2176
2177         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2178
2179         Thanks to Thomas Denk for the report.
2180
2181 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2182
2183         * include/winbase.h (UnmapViewOfFile): Correct definition.
2184
2185         Thanks to Dimitry Sibiryakov for the report.
2186
2187 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2188
2189         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2190
2191 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2192
2193         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2194         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2195
2196 2009-20-10  Michael James  <james.me@gmail.com>
2197
2198         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2199         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2200         >= 0x0501.
2201         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2202         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2203         RemoveWindowSubclass@12): Add exports.
2204         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2205
2206 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2207
2208         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2209         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2210         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2211         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2212         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2213         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2214         RegisterTouchWindow, UnregisterTouchWindow): Define.
2215         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2216         RegisterTouchWindow, UnregisterTouchWindow): Define.
2217
2218 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2219
2220         * include/winver.h (VerQueryValue[AW]): Correct definition.
2221
2222 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2223
2224         * include/shlobj.h (SHARD): Add enum.
2225         (SHARD_PATH): Define based on UNICODE.
2226
2227         Thanks to Jacek Caban for the report.
2228
2229 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2230
2231         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2232
2233         Thanks to Bruno Martinez for the report.
2234
2235 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2236
2237         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2238         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2239         SHGetIconOverlayIndex): Define.
2240
2241         Thanks to Tim Kosse for the report.
2242
2243 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2244
2245         * include/wincon.h (AttachConsole): Correct guard.
2246
2247         Thanks to Alexander Shaduri for the report.
2248
2249 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2250
2251         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2252         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2253
2254 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2255
2256         * include/winerror.h: Fix typos in macro names.
2257
2258 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2259
2260         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2261         definition.
2262
2263 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2264
2265         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2266
2267 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2268
2269         Honor DESTDIR for winsup/mingw and winsup/w32api.
2270         Detect and report error if installation paths are win32
2271         format, but DESTDIR is non-empty.
2272
2273         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2274         when invoking make in subdirs.
2275         * lib/Makefile.in (DESTDIR): Honor per convention.
2276         (need-DESTDIR-compatibility): New macro; define it and a
2277         corresponding rule.
2278         (fail-DESTDIR-compatibility): New dependency goal.
2279         (install-libraries, install-headers, uninstall-libraries,
2280         uninstall-headers): Require need-DESTDIR-compatibility.
2281         * lib/ddk/Makefile.in: Ditto.
2282         * lib/directx/Makefile.in: Ditto.
2283
2284 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2285
2286         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2287         _WIN32_WINNT >= 0x0500.
2288         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2289         WRITE_RESTRICTED): Define.
2290         (IsTokenRestricted): Declare for >= Win 2000.
2291
2292 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2293
2294         * include/wtsapi32.h (WTSQuerySessionInformationA,
2295         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2296         Moved to (_WIN32_WINNT >= 0x0500) guard.
2297         (thanks to Pierre Ossman)
2298
2299 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2300
2301         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2302         IS_SURROGATE_PAIR): Define.
2303
2304 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2305
2306         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2307         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2308         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2309         * include/ddk/ntifs.h: Ditto.
2310         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2311
2312 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2313
2314         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2315         from here...
2316         * lib/gdo32.dll: ...to here.
2317
2318 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2319
2320         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2321         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2322         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2323         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2324         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2325         entry points.
2326
2327 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2328
2329         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2330         WTSEnumerateSessionsA): Add function prototypes.
2331         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2332         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2333         defines dependent on UNICODE setting.
2334
2335 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2336
2337         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2338         and vice versa.
2339         * include/ddk/ntifs.h: Ditto.
2340         * include/ddk/winddk.h: Ditto.
2341         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2342         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2343         in header, but missing in lib.  Omit NT4-only entry points.
2344
2345 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2346
2347         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2348         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2349         * lib/shell32.def (SHGetImageList): Define.
2350
2351 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2352
2353         * winnt.h: Add Vista token security extensions.
2354         (SID_HASH_SIZE): Define.
2355         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2356         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2357         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2358         (SID_HASH_ENTRY): Define.
2359         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2360         (struct _TOKEN_LINKED_TOKEN): Define.
2361         (struct _TOKEN_MANDATORY_LABEL): Define.
2362         (struct _TOKEN_MANDATORY_POLICY): Define.
2363         (struct _TOKEN_ELEVATION): Define.
2364         (struct _TOKEN_ACCESS_INFORMATION): Define.
2365         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2366         information enumeration values.
2367
2368 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2369
2370         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2371         from ddk/ntifs.h.
2372
2373 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2374
2375         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2376
2377 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2378
2379         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2380
2381 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2382
2383         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2384         NtSetEaFile.
2385
2386 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2387
2388         * include/winbase.h (SCS_64BIT_BINARY): Define.
2389
2390 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2391
2392         * include/w32api.h: Increment version to 3.13.
2393         * Makefile.in: Ditto.
2394
2395 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2396
2397         * lib/glut.def: remove.
2398         * lib/glut32.def: ditto.
2399
2400 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2401
2402         * include/winbase.h (PROCESS_DEP_ENABLE,
2403         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2404         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2405         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2406
2407 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2408
2409         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2410
2411 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2412
2413         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2414
2415 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2416
2417         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2418
2419 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2420
2421         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2422         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2423         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2424         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2425         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2426         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2427         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2428         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2429         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2430         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2431         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2432         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2433         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2434         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2435         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2436         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2437         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2438         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2439         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2440         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2441         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2442         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2443         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2444         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2445         (capSendMessage): Don't undef.
2446
2447 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2448
2449         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2450         undefined.
2451
2452 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2453
2454         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2455         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2456         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2457         SUBLANG_ROMANIAN_MOLDOVA): Define.
2458
2459 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2460
2461         * include/shlwapi.h (ASSOCSTR): Update enum.
2462
2463 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2464
2465         * include/w32api.h: Increment version to 3.12.
2466         * Makefile.in: Ditto.
2467
2468 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2469
2470         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2471
2472 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2473
2474         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2475
2476 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2477
2478         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2479         Thanks to Richard Hughes for report.
2480
2481 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2482
2483         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2484         naming standard for Cygwin.
2485
2486 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2487
2488         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2489
2490 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2491
2492         * include/ddk/scsi.h: Define READ_TOC formats.
2493         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2494
2495 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2496
2497         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2498         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2499         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2500         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2501         NdisMCancelTimer): Define.
2502         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2503         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2504         eliminate warnings.
2505         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2506         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2507         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2508         Export.
2509
2510 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2511
2512         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2513         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2514
2515 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2516
2517         * include/ddk/winddk.h (KeRaiseIrql): Define.
2518         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2519
2520 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2521
2522         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2523         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2524         (InterlockedIncrement, InterlockedDecrement): fix warning.
2525         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2526         (KeNumberProcessors): Export.
2527
2528 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2529
2530         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2531         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2532         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2533         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2534         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2535
2536 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2537
2538         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2539
2540         Thanks to Tim Kosse <botg at users dot sf dot net>.
2541
2542 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2543
2544         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2545         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2546         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2547         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2548         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2549         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2550         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2551
2552 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2553
2554         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2555         WTSQuerySessionInformation, WTSFreeMemory): Define.
2556
2557 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2558
2559         * lib/gdi32.def (SetLayout): Export.
2560
2561 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2562
2563         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2564         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2565         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2566         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2567         CertSetCertificateContextProperty, CertCompareCertificateName,
2568         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2569         CryptGetDefaultProviderW and many corresponding macroes): Define.
2570         * lib/crypt32.def (Export the above 11 functions): Export.
2571         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2572         macroes): Define.
2573
2574
2575 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2576
2577         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2578         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2579
2580 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2581
2582         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2583
2584 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2585
2586         * include/lmaccess.h (struct _USER_INFO_4): Define.
2587         (struct _USER_INFO_23): Define.
2588         (struct _GROUP_INFO_3): Define.
2589
2590 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2591
2592         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2593         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2594         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2595         MIB_TCP6TABLE_OWNER_PID): Define.
2596         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2597
2598 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2599
2600         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2601         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2602         of 0x0502.
2603         Bug reported by Thomas Denk.
2604
2605 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2606
2607         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2608         InterlockedCompareExchange, InterlockedExchange,
2609         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2610         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2611         Bug reported by Erik Blake.
2612
2613 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2614
2615         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2616         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2617         Bug reported by Brian Hawley.
2618
2619 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2620
2621         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2622         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2623         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2624         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2625         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2626         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2627         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2628         (DsGetDcNameW, DsGetDcNameA): Declare.
2629         (DsGetDcName): Define.
2630         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2631
2632 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2633
2634         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2635
2636         Thanks to Tim Kosse <botg at users dot sf dot net>.
2637
2638 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2639
2640         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2641
2642         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2643
2644 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2645
2646         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2647         (FILE_SUPPORTS_TRANSACTIONS): Define.
2648
2649 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2650
2651         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2652         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2653
2654 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2655
2656         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2657         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2658         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2659         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2660         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2661         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2662         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2663         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2664         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2665         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2666         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2667         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2668         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2669         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2670         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2671         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2672         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2673         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2674         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2675         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2676         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2677         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2678         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2679         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2680         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2681         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2682         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2683         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2684         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2685         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2686         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2687         capDriverConnect, capDriverDisconnect, capDriverGetName,
2688         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2689         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2690         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2691         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2692         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2693         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2694         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2695         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2696         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2697         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2698         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2699         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2700         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2701         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2702         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2703
2704 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2705
2706         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2707         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2708         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2709         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2710         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2711         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2712         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2713         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2714         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2715         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2716         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2717         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2718         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2719         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2720         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2721         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2722         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2723         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2724         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2725         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2726         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2727         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2728         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2729         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2730         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2731         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2732         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2733         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2734         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2735         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2736         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2737         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2738         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2739         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2740         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2741         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2742         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2743         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2744         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2745         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2746         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2747         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2748         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2749         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2750         *SpUserModeInitializeFn): Define.
2751         * include/sspi.h (SECURITY_STRING): Define.
2752
2753 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2754
2755         * include/specstrings.h: Add more dummy defines.
2756
2757 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2758
2759         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2760         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2761         (SECURITY_MANDATORY_LOW_RID): Define.
2762         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2763         (SECURITY_MANDATORY_HIGH_RID): Define.
2764         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2765         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2766         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2767         (SE_GROUP_INTEGRITY): Define.
2768         (SE_GROUP_INTEGRITY_ENABLED): Define.
2769
2770 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2771
2772         * include/sddl.h (ConvertStringSidToSidA): Declare.
2773         (ConvertStringSidToSidW): Declare.
2774         (ConvertStringSidToSid): Define.
2775
2776 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2777
2778         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2779         and MPR_INTERFACE_3 structure since they are available only in Windows
2780         Server 2008
2781
2782         Thanks to crackedmind  <crackedmind at sf dot net>.
2783
2784 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2785
2786         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2787         definitions.
2788         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2789
2790 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2791
2792         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2793
2794 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2795
2796         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2797         * include/windef.h (IN, OUT, OPTIONAL): Define.
2798
2799 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2800
2801         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2802         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2803         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2804         __out_bcount_opt): Move to specstrings.h.
2805
2806 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2807
2808         * lib/bthprops.def: new file, bluetooth imports.
2809
2810 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2811
2812         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2813         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2814         __out_bcount_opt): Defined additional pseudo-modifiers.
2815
2816 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2817         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2818         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2819         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2820         dwRedialPause.
2821
2822 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2823
2824         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2825         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2826         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2827         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2828         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2829         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2830         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2831         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2832         * include/winuser.h (RegisterPowerSettingNotification,
2833         UnregisterPowerSettingNotification): Add prototypes.
2834         * lib/user32.def: Added imports for the above prototypes.
2835         * lib/Makefile.in: Added build support for power-uuid.c.
2836         * lib/power-uuid.c: New file containing power GUID definitions.
2837
2838 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2839
2840         * include/ras.h (RAS_MaxDnsSuffix): define.
2841
2842 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2843
2844         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2845         Add prototypes.
2846         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2847         Add exports.
2848
2849 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2850
2851         * include/w32api.h: Increment version to 3.11.
2852         * Makefile.in: Ditto.
2853
2854 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2855
2856         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2857         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2858
2859 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2860
2861         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2862
2863 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2864
2865         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2866         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2867
2868 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2869
2870         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2871
2872 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2873
2874         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2875         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2876         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2877         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2878         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2879         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2880         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2881         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2882         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2883         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2884         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2885         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2886         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2887         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2888         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2889         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2890         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2891         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2892         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2893         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2894         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2895         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2896         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2897         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2898         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2899         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2900         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2901         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2902         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2903         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2904         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2905         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2906         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2907         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2908         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2909         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2910         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2911         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2912         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2913         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2914         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2915         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2916         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2917         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2918         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2919         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2920         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2921         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2922         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2923         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2924         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2925         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2926         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2927         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2928         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2929         CryptEncodeObjectEx): define.
2930
2931 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2932
2933         * include/winbase.h (CheckTokenMembership): define.
2934
2935 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2936
2937         * include/rpcndr.h: Missing NdrClientCall2 entry.
2938         * lib/rpcrt4.def: Ditto.
2939
2940 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2941         * lib/scnsave.c: Multi-monitor support.
2942
2943 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2944
2945         * include/w32api.h: Increment version to 3.10.
2946         * Makefile.in: Ditto.
2947
2948 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2949
2950         * include/winbase.h (ReOpenFile): Add prototype.
2951         * lib/kernel32.def (ReOpenFile@16): Add export.
2952
2953 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2954
2955         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2956
2957 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2958
2959         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2960         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2961
2962 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2963
2964         * include/wtypes.h (LPDECIMAL): Define.
2965         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2966
2967 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2968
2969         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2970
2971 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2972
2973         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2974         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2975
2976 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2977
2978         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2979         Define.
2980
2981 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2982
2983         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2984         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2985         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2986         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2987         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2988         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2989         Sync with include/pbt.h.
2990
2991 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2992
2993         [mingw-Bugs-1751518]
2994         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2995         get_URL.
2996
2997         [mingw-Bugs-1751565]
2998         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2999
3000         [mingw-Bugs-1751595]
3001         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
3002         methods.
3003
3004         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3005
3006 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
3007
3008         [mingw-Bugs-1750898]
3009         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
3010         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3011
3012 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
3013
3014         [mingw-Bugs-1749305]
3015         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
3016
3017 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
3018
3019         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
3020
3021 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
3022
3023         * include/oaidl.h: Include windows.h and ole2.h,
3024         unless COM_NO_WINDOWS_H.
3025
3026         [mingw-Bugs-1742130]
3027         * include/oaidl.h (struct tagVARIANT): Add union members
3028         LONGLONG  * pllVal and ULONGLONG * pullVal.
3029
3030 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
3031
3032         * include/ws2tcpip.h (s6_addr32): Correct definition.
3033         Thanks to Alfred E. Heggestad <aeh at db dot org>
3034
3035 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3036
3037         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
3038
3039         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
3040         supplying the information.
3041
3042 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3043
3044         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
3045
3046 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3047
3048         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
3049         Vista.
3050
3051 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
3052
3053          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
3054         CRYPTPROTECT_LOCAL_MACHINE): Define.
3055
3056 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
3057
3058         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
3059         Define.
3060
3061 2007-03-30  Brian Dessent  <brian@dessent.net>
3062
3063         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
3064
3065 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3066
3067         * include/w32api.h: Increment version to 3.9.
3068         * Makefile.in: Ditto.
3069
3070 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
3071
3072         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
3073
3074 2007-03-23  Matthew Gregan  <kinetik@flim.org>
3075
3076         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
3077
3078 2007-03-06  Brandon Sneed  <brandon@oqo.com>
3079
3080         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
3081         Added SetupConfigureWmiFromInfSectionW
3082         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
3083
3084         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
3085
3086         * include/winuser.h: Added PBT_APMQUERYSUSPEND
3087         Added PBT_APMQUERYSTANDBY
3088         Added PBT_APMQUERYSUSPENDFAILED
3089         Added PBT_APMQUERYSTANDBYFAILED
3090         Added PBT_APMSUSPEND
3091         Added PBT_APMSTANDBY
3092         Added PBT_APMRESUMECRITICAL
3093         Added PBT_APMRESUMESUSPEND
3094         Added PBT_APMRESUMESTANDBY
3095         Added PBT_APMBATTERYLOW
3096         Added PBT_APMPOWERSTATUSCHANGE
3097         Added PBT_APMOEMEVENT
3098         Added PBT_APMRESUMEAUTOMATIC
3099
3100         * include/wtsapi32.h: New file
3101
3102         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
3103
3104 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
3105
3106         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
3107         argument to constant.
3108
3109 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
3110
3111         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
3112         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
3113         Add prototypes.
3114         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
3115
3116 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
3117
3118         * lib/user32.def (InternalGetWindowText): Add stub.
3119
3120 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
3121
3122         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
3123         LANG_BOSNIAN_NEUTRAL): Define.
3124
3125 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
3126
3127         * include/winuser.h: Add guards around TITLEBARINFO and
3128         GetTitleBarInfo().
3129
3130 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
3131
3132         * include/winbase.h (struct _OVERLAPPED): Change type of
3133         Internal, InternalHigh members to ULONG_PTR.
3134         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
3135         (CreateIoCompletionPort): Likewise.
3136         (PostQueuedCompletionStatus): Likewise.
3137         (QueueUserAPC): Likewise.
3138
3139 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
3140
3141         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
3142         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
3143         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
3144         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
3145         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
3146         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
3147         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
3148         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
3149         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
3150         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
3151
3152 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
3153
3154         * Makefile.in: Add aclocal.m4 to source release.
3155
3156 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3157
3158         * include/w32api.h: Increment version to 3.8.
3159         * Makefile.in: Ditto.
3160
3161 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
3162
3163         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
3164         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
3165
3166         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
3167
3168 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
3169
3170         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
3171
3172         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
3173         inline static.
3174         (GetFiberData): Likewise.
3175         * lib/kernel32.c: Remove.
3176         * lib/Makefile.in: Remove reference to kernel32.[co].
3177
3178 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3179
3180         * include/winnt.h (SE_RELABEL_NAME): Define.
3181         (SE_INCREASE_WORKING_SET_NAME): Define.
3182         (SE_TIME_ZONE_NAME): Define.
3183         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3184
3185 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3186
3187         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3188         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3189         SymbolicLinkReparseBuffer substructure.
3190
3191 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3192
3193         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3194
3195 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3196
3197         * lib/Makefile.in: Fix order for 'all' rule.
3198
3199 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3200
3201         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3202
3203 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3204
3205         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3206         mappings.
3207         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3208         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3209
3210 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3211
3212         * include/rpc.h: Add whitespace.
3213         * include/winnt.h (C_ASSERT): Define.
3214
3215 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3216
3217         [mingw-Bugs-1568067]
3218         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3219         * include/wingdi.h: (DM_POSITION): Define.
3220
3221 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3222
3223         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3224         * lib/user32.def: Likewise.
3225
3226 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3227
3228         * lib/Makefile.in: fix typo.
3229         * lib/ddk/Makefile.in: fix typo.
3230         * lib/directx/Makefile.in: fix typo.
3231
3232         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3233         for pointing it out.
3234
3235 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3236
3237         * Makefile.in: Remove files from lib directory with distclean target
3238
3239 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3240
3241         * include/winuser.h (CS_DROPSHADOW): Define.
3242
3243 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3244
3245         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3246         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3247         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3248         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3249
3250         Increase each constant by 1.
3251
3252 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3253
3254         [mingw-Bugs-1553275]
3255         * include/wingdi.h (SetLayout): Add prototype.
3256         (GetLayout): Likewise.
3257
3258 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3259
3260         [mingw-Bugs-1550139]
3261         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3262         Tanks to:  Samit Basu <samitbasu at sf dot net>
3263         (GetRecordInfoFromGuids): Add prototype.
3264
3265 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3266
3267         * include/winbase.h: Add comment about 'missing' SEM flag.
3268
3269 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3270
3271         * configure.in: Substitute with_cross_host in depending files.
3272         * configure: Regenerate.
3273         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3274         Set installation directories accordingly.
3275         * lib/ddk/Makefile.in: Ditto.
3276         * lib/directx/Makefile.in: Ditto.
3277
3278 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3279
3280         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3281         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3282         Bug reported by: <macleone at users dot sf dot net>
3283
3284 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3285
3286         Update some more IMAGE relocation type indicators
3287         to PECOFF v8 (May, 2006) specs.
3288
3289         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3290         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3291         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3292         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3293         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3294         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3295         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3296         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3297         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3298         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3299         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3300         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3301         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3302         IMAGE_REL_SHM_NOMODE): Add defines.
3303
3304         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3305         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3306         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3307         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3308         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3309         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3310         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3311         IMAGE_REL_M32R_TOKEN): Add defines.
3312
3313         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3314
3315 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3316
3317         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3318         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3319         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3320         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3321         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3322         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3323         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3324         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3325         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3326         Add defines.
3327
3328         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3329         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3330         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3331         Add defines.
3332
3333         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3334
3335         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3336         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3337         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3338         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3339         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3340         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3341
3342         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3343
3344         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3345         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3346         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3347         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3348         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3349         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3350         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3351         Add defines.
3352
3353         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3354         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3355         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3356         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3357         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3358         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3359         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3360         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3361         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3362         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3363         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3364         IMAGE_REL_IA64_ADDEND): Add defines.
3365
3366         (IMAGE_SCN_GPREL): Add define.
3367
3368 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3369
3370         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3371         * include/basetyps.h:  Likewise.
3372         (_COM_interface): New define.
3373         (interface): Define to _COM_interface, conditional on !__OBJC__.
3374         Replace 'interface' with '_COM_interface', throughout.
3375         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3376         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3377         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3378         * include/mshtml.h: Likewise.
3379         * include/oaidl.h: Likewise.
3380         * include/objfwd.h: Likewise.
3381         * include/objidl.h: Likewise.
3382         * include/ocidl.h: Likwise.
3383         * include/olectl.h: Likewise.
3384         * include/oleidl.h: Likewise.
3385         * include/shlobj.h: Likewise.
3386         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3387         * include/vfw.h: Likewise.
3388         * include/windows.h. Likewise. Add comment.
3389         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3390         throughout.
3391
3392         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3393         Add test for conflict with '@interface'
3394
3395 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3396
3397         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3398         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3399         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3400         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3401         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3402         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3403         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3404         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3405         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3406         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3407         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3408         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3409         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3410         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3411         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3412         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3413         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3414         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3415         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3416         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3417         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3418         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3419         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3420         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3421         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3422         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3423         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3424         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3425         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3426         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3427         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3428         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3429         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3430         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3431         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3432         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3433         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3434         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3435         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3436         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3437         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3438         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3439         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3440         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3441         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3442         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3443         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3444         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3445         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3446         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3447         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3448         CertDeleteCertificateFromStore): Define.
3449         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3450         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3451         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3452         CertAddCertificateContextToStore, CertCompareCertificate,
3453         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3454         Define.
3455
3456 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3457
3458         * lib/uuid.c: Remove.
3459
3460 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3461
3462         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3463         declarations. They were extracted from the registry with a script.
3464         * lib/devguid.c: Add new file with the implementation of the
3465         missing GUIDs.
3466         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3467
3468 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3469
3470         * include/winuser.h (WM_INPUT): Add missing Raw Input
3471         notification define.
3472         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3473         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3474
3475 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3476
3477         [mingw-Bugs-1525021]
3478         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3479         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3480         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3481         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3482         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3483         (IP_ADAPTER_ADDRESSES): Likewise.
3484
3485 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3486
3487         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3488         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3489         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3490         extras-uuid.c.
3491         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3492         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3493         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3494         * lib/hlguids-uuid.c: State source of CLSIDs.
3495
3496 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3497
3498         * lib/Makefile.in: Added extras-uuid as an object and source.
3499         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3500         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3501         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3502         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3503         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3504         * lib/extras-uuid.c: New file.
3505         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3506         net).
3507
3508 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3509
3510         [mingw-Bugs-1424461]
3511         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3512         throughout.
3513         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3514         _NO_W32_PSEUDO_MODIFIERS.
3515         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3516         throughout.
3517         *include/rpcnsip.h: Likewise.
3518         *include/windef.h: Don't define IN, OUT or OPTIONAL
3519         if _NO_W32_PSEUDO_MODIFIERS.
3520         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3521         throughout.
3522         *include/ddk/cfgmgr32.h: Likewise.
3523         *include/ddk/ddkmapi.h: Likewise.
3524         *include/ddk/hidclass.h: Likewise.
3525         *include/ddk/hidpi.h: Likewise.
3526         *include/ddk/kbdmou.h: Likewise.
3527         *include/ddk/mcd.h: Likewise.
3528         *include/ddk/miniport.h: Likewise.
3529         *include/ddk/minitape.h: Likewise.
3530         *include/ddk/ndis.h: Likewise.
3531         *include/ddk/ndistapi.h: Likewise.
3532         *include/ddk/ndiswan.h: Likewise.
3533         *include/ddk/ntapi.h: Likewise.
3534         *include/ddk/ntdd8042.h: Likewise.
3535         *include/ddk/ntddpcm.h: Likewise.
3536         *include/ddk/ntifs.h: Likewise.
3537         *include/ddk/ntpoapi.h: Likewise.
3538         *include/ddk/parallel.h: Likewise.
3539         *include/ddk/pfhook.h: Likewise.
3540         *include/ddk/scsiwmi.h: Likewise.
3541         *include/ddk/smbus.h: Likewise.
3542         *include/ddk/srb.h: Likewise.
3543         *include/ddk/storport.h: Likewise.
3544         *include/ddk/tdikrnl.h: Likewise.
3545         *include/ddk/upssvc.h: Likewise.
3546         *include/ddk/usbcamdi.h: Likewise.
3547         *include/ddk/usbscan.h: Likewise.
3548         *include/ddk/video.h: Likewise.
3549         *include/ddk/videoagp.h: Likewise.
3550         *include/ddk/win2k.h: Likewise.
3551         *include/ddk/winddi.h: Likewise.
3552         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3553         if _NO_W32_PSEUDO_MODIFIERS.
3554         Comment out IN, OUT and OPTIONAL, throughout.
3555         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3556         throughout.
3557         *include/ddk/ws2san.h: Likewise.
3558
3559 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3560
3561         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3562
3563 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3564
3565         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3566         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3567         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3568         * lib/hlguids-uuid.c: New file.
3569         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3570         net).
3571
3572 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3573
3574         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3575         objects.
3576         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3577         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3578         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3579         IID_IHlinkTarget): Remove.  Moved to new files.
3580         * lib/urlmon-uuid.c: New file.
3581         * lib/hlink-uuid.c: New file.
3582
3583 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3584
3585         * lib/Makefile.in: Added ativscp-uuid as source and object.
3586         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3587         IID_IActiveScriptParse, IID_IActiveScriptSite,
3588         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3589         * lib/ativscp-uuid.c: New file.
3590
3591 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3592
3593         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3594         Remove.  Moved to objidl-uuid.c
3595         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3596         IID_IServerSecurity): Defined.
3597
3598 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3599
3600         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3601         objects.
3602         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3603         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3604         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3605         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3606         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3607         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3608         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3609         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3610         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3611         files.
3612         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3613         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3614         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3615         * lib/cguid-uuid.c: New file.
3616         * lib/olectlid-uuid.c: New file.
3617
3618 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3619
3620         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3621         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3622         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3623         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3624         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3625         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3626         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3627         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3628         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3629         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3630         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3631         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3632         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3633         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3634         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3635         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3636         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3637         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3638         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3639         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3640         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3641         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3642         * lib/comcat-uuid.c: New file.
3643         * lib/docobj-uuid.c: New File.
3644         * lib/exdisp-uuid.c: New file.
3645         * lib/mlang-uuid.c: New file.
3646         * lib/oaidl-uuid.c: New file.
3647         * lib/objidl-uuid.c: New file.
3648         * lib/objsafe-uuid.c: New file.
3649
3650 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3651
3652         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3653         objects.
3654         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3655         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3656         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3657         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3658         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3659         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3660         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3661         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3662         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3663         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3664         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3665         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3666         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3667         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3668         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3669         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3670         * lib/oleidl-uuid.c: New file.
3671         * lib/oleacc-uuid.c: New file.
3672         * lib/ocidl-uuid.c: New file.
3673
3674 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3675
3676         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3677         objects.
3678         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3679         Remove.  Moved to unknwn-uuid and servprov-uuid.
3680         * lib/unknwn-uuid.c: New file.
3681         * lib/servprov-uuid.c: New file.
3682
3683 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3684
3685         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3686         enum.
3687
3688 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3689
3690         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3691
3692 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3693
3694         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3695         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3696         wingdi.h defines.
3697
3698 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3699
3700         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3701         duplicate defines.
3702
3703         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3704         removal.
3705         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3706
3707 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3708
3709         * configure.in: Update to newer autoconf.
3710         (thanks to Steve Ellcey)
3711         * configure: Regenerate.
3712         * aclocal.m4: New file.
3713
3714 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3715
3716         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3717
3718 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3719
3720         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3721         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3722         as macros.
3723         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3724
3725 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3726
3727         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3728         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3729         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3730         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3731         (MprAdminMIBSetTrapInfo): Declare functions.
3732         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3733         (MIB_SERVER_HANDLE): New typedef.
3734         (MprConfigTransportSetInfo): Declare function.
3735         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3736         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3737
3738 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3739
3740         * lib/rtutils.def: New file. Generated on Windows XP.
3741         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3742         * include/rtutils.h: New file.
3743         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3744         Commented out, they're missing from rtutils.def.
3745
3746 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3747
3748         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3749         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3750         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3751         (MprInfoRemoveAll): Declare functions.
3752
3753 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3754
3755         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3756         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3757         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3758         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3759         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3760         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3761         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3762         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3763         (MprConfigServerConnect,MprConfigServerDisconnect)
3764         (MprConfigServerGetInfo,MprConfigServerInstall)
3765         (MprConfigServerRestore,MprConfigTransportCreate)
3766         (MprConfigTransportDelete,MprConfigTransportEnum)
3767         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3768         (MprConfigTransportSetInfo): Declare functions.
3769
3770 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3771
3772         * include/mprapi.h (MprAdminBufferFree)
3773         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3774         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3775         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3776         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3777         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3778         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3779         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3780         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3781         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3782         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3783         (MprAdminInterfaceTransportSetInfo)
3784         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3785         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3786         (MprAdminServerConnect,MprAdminServerDisconnect)
3787         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3788         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3789         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3790
3791 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3792
3793         * include/ipxtfflt.h: New file.
3794
3795 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3796
3797         * include/mprapi.h: Fix header guard. Cleanup.
3798         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3799         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3800         (MprAdminConnectionHangupNotification)
3801         (MprAdminConnectionHangupNotification2)
3802         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3803         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3804         (MprAdminReleaseIpAddress): Declare functions.
3805         * lib/mprapi.def: Regenerate on Windows XP.
3806
3807 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3808
3809         * include/ipifcons.h: Cleanup.
3810         * include/ipxconst.h: Fix header guard.
3811         * include/ipxrtdef.h: include <ipxconst.h>.
3812
3813 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3814
3815         * include/ipxrtdef.h: Cleanup.
3816         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3817         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3818         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3819         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3820         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3821         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3822         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3823         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3824         * include/routprot.h: Cleanup.
3825         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3826         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3827         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3828         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3829         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3830         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3831         * include/fltdefs.h: New file.
3832         * include/ipinfoid.h: New file.
3833
3834 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3835
3836         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3837         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3838         (IAMCertifiedOutputProtection): Add interfaces.
3839         * include/adsprop.h: New file.
3840         * include/cmnquery.h: New file.
3841         * include/dsadmin.h: New file.
3842         * include/dsclient.h: New file.
3843         * include/dsgetdc.h: New file.
3844         * include/dsquery.h: New file.
3845         * include/dsrole.h: New file.
3846         * include/ntdsapi.h: New file.
3847         * include/ntdsbcli.h: New file.
3848         * include/objsel.h: New file.
3849
3850 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3851
3852         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3853         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3854         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3855         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3856         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3857         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3858         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3859         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3860
3861 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3862
3863         * include/qedit.h: New file.
3864         * include/errors.h: Cleanup.
3865
3866 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3867
3868         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3869         avoid dependency on <string.h>.
3870         There's no Win32 equivalent for memcmp:
3871         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3872
3873 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3874
3875         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3876         instead of memset to avoid dependency on <string.h>.
3877         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3878         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3879         (AM_WST_STYLE): Add enums.
3880         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3881         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3882         structures.
3883         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3884         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3885         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3886         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3887         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3888         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3889         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3890         (VFW_E_DVD_NO_RESUME_INFORMATION)
3891         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3892         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3893         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3894         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3895         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3896         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3897         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3898         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3899         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3900         * include/strmif.h: ... to here. New file.
3901         * include/aviriff.h: New file.
3902         * include/bdatypes.h: New file.
3903         * include/control.h: New file.
3904         * include/dvdmedia.h: New file.
3905         * include/il21dec.h: New file.
3906         * include/ks.h: New file.
3907         * include/ksmedia.h: New file.
3908         * include/mmreg.h: New file.
3909         * include/mpegtype.h: New file.
3910         * include/vidcap.h: New file.
3911         * include/vmr9.h: New file.
3912         * include/vptype.h: New file.
3913         * include/xprtdefs.h: New file.
3914
3915 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3916
3917         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3918         Documented as defined on Windows 2000 or later.
3919         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3920         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3921         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3922         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3923         but values unknown, Windows Vista or later.
3924         (CAL_UMALQURA): Cleanup.
3925         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3926         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3927         (CAL_SSHORTESTDAYNAME7): Cleanup.
3928         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3929         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3930
3931 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3932
3933         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3934         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3935         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3936         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3937         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3938         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3939         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3940         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3941         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3942         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3943         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3944         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3945         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3946         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3947         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3948         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3949         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3950         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3951         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3952         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3953         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3954         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3955         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3956         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3957         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3958         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3959         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3960         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3961         (DMDFO_CENTER): Define.
3962         (GetDCBrushColor,GetDCPenColor): Declare.
3963         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3964
3965 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3966
3967         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3968         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3969         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3970         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3971         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3972         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3973         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3974         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3975         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3976         (LANG_DARI,LANG_MALAGASY)
3977         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3978         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3979         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3980         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3981         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3982         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3983         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3984         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3985         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3986         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3987         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3988         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3989         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3990         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3991         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3992         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3993         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3994         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3995         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3996         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3997         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3998         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3999         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
4000         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
4001         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
4002         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
4003         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
4004         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
4005         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
4006         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
4007         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
4008         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
4009         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
4010         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
4011         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
4012         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
4013         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
4014         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
4015         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
4016         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
4017         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
4018         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
4019         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
4020         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
4021         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
4022         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
4023         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4024         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
4025         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
4026         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
4027         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
4028         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
4029         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
4030         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
4031         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
4032         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
4033         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
4034         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
4035         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
4036         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
4037         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
4038         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
4039         (SUBLANG_MARATHI_INDIA): Defined twice by error.
4040
4041 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4042
4043         * lib/directx/Makefile.in: Remove reference to libquartz.a since
4044         it was moved.
4045
4046 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
4047
4048         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
4049         SPI_SETSCREENSAVERUNNING.
4050         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
4051
4052 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4053
4054         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
4055         It had been removed because it's no documented, but Cygwin needs it.
4056
4057 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4058
4059         * include/amvideo.h (IFullScreenVideo): Define.
4060         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
4061         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
4062
4063 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4064
4065         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
4066         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
4067         as available on Windows 98 and better.
4068         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4069         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4070         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
4071
4072 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4073
4074         * include/amvideo.h: New file.
4075         * include/dshow.h: Include <amvideo.h>.
4076
4077 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4078
4079         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
4080         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
4081         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
4082         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
4083         (HWND_BROADCAST): Cleanup.
4084         (HWND_MESSAGE): Windows 2000 only.
4085         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
4086         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
4087         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
4088         (SIF_ALL): Cleanup.
4089         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
4090         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
4091         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
4092         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
4093         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
4094         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
4095         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
4096         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
4097         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
4098         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
4099         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
4100         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4101         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4102         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4103         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4104         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4105         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4106         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
4107         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
4108         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
4109         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
4110         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
4111         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
4112         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
4113         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
4114         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
4115         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
4116         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
4117         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
4118         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
4119         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
4120         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
4121         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
4122         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
4123         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
4124         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
4125         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
4126         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
4127         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
4128         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
4129         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
4130         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
4131         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
4132         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
4133         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
4134         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
4135         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
4136         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
4137         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
4138         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
4139         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
4140         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
4141         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
4142         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
4143         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
4144         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
4145         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
4146         (SPI_SCREENSAVERRUNNING): Removed.
4147         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
4148         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
4149         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
4150         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
4151
4152 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4153
4154         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
4155         (MprAdminGetPDCServer): Add prototype.
4156         (MprAdminSendUserMessage): Add prototype.
4157         (MprAdminUserGetInfo): Add prototype.
4158         (MprAdminUserSetInfo): Add prototype.
4159         * lib/mprapi.def: Add stubs for above functions.
4160
4161 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4162
4163         * lib/directx/quartz.def: Move from here...
4164         * lib/quartz.def: ... to here.
4165
4166 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4167
4168         * include/amaudio.h: New file.
4169         * include/dshow.h: Include <amaudio.h>.
4170
4171 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4172
4173         * include/errors.h: New file.
4174         * include/dshow.h: Include <errors.h>.
4175
4176 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4177
4178         * include/dshow.h: New file.
4179         * include/evcode.h: New file.
4180         * include/audevcod.h: New file.
4181         * include/dvdevcod.h: New file.
4182
4183 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4184
4185         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4186         (MprAdminConnectionClearStats): Add prototype.
4187         (MprAdminConnectionEnum): Add  prototype.
4188         (MprAdminConnectionGetInfo): Add prototype.
4189         (MprAdminConnectionRemoveQuarantine): Add prototype.
4190         (MprAdminPortClearStats): Add prototype.
4191         (MprAdminPortDisconnect): Add prototype.
4192         (MprAdminPortEnum): Add prototype.
4193         (MprAdminPortGetInfo): Add prototype.
4194         (MprAdminPortReset): Add prototype.
4195         * lib/mprapi.def: New file.
4196
4197 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4198
4199         *  include/mprapi.h: #include <lmcons.h>
4200         (MAX_DEVICETYPE_NAME): Add define.
4201         (MAX_PHONE_NUMBER_LEN): Add define.
4202         (ATADDRESSLEN): Add define.
4203         (IPADDRESSLEN): Add define.
4204         (IPXADDRESSLEN): Add define.
4205         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4206         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4207         (RAS_FLAGS_PPP_CONNECTION): Add define.
4208         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4209         (RAS_FLAGS_RAS_CONNECTION): Add define.
4210         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4211         (RASCCPCA_STAC): Add define.
4212         (RASCCPCA_MPPC): Add define.
4213         (PPP_CCP_COMPRESSION): Add define.
4214         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4215         (PPP_CCP_ENCRYPTION40BIT): Add define.
4216         (PPP_CCP_ENCRYPTION128BIT): Add define.
4217         (PPP_CCP_ENCRYPTION56BIT): Add define.
4218         (PPP_CCP_HISTORYLESS): Add define.
4219         (RASPRIV_NoCallback): Add define.
4220         (RASPRIV_AdminSetCallback): Add define.
4221         (RASPRIV_CallerSetCallback): Add define.
4222         (RASPRIV_DialinPrivilege): Add define.
4223         (RASPRIV_CallbackType): Add define.
4224         (RASPRIV2_DialinPolicy): Add define.
4225         (PPP_LCP_PAP): Add define.
4226         (PPP_LCP_SPAP): Add define.
4227         (PPP_LCP_CHAP): Add define.
4228         (PPP_LCP_EAP): Add define.
4229         (PPP_LCP_CHAP_MD5): Add define.
4230         (PPP_LCP_CHAP_MS): Add define.
4231         (PPP_LCP_CHAP_MSV2): Add define.
4232         (PPP_LCP_MULTILINK_FRAMING): Add define.
4233         (enum _RAS_HARDWARE_CONDITION): Add.
4234         (enum _RAS_PORT_CONDITION): Add.
4235         (struct _PPP_ATCP_INFO): Add.
4236         (struct _PPP_ATCP_INFO): Add.
4237         (struct _PPP_IPCP_INFO): Add.
4238         (struct _PPP_IPCP_INFO2): Add.
4239         (struct _PPP_IPXCP_INFO): Add.
4240         (struct _PPP_LCP_INFO): Add.
4241         (struct _PPP_NBFCP_INFO): Add.
4242         (struct _PPP_INFO): Add.
4243         (struct _PPP_INFO_2): Add.
4244         (struct _RAS_CONNECTION_0): Add.
4245         (struct RAS_CONNECTION_1): Add.
4246         (struct _RAS_CONNECTION_2): Add.
4247         (struct RAS_PORT_0): Add.
4248         (struct _RAS_PORT_1): Add.
4249         (struct _RAS_USER_0): Add.
4250         (struct _RAS_USER_1): Add.
4251
4252 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4253
4254         * include/mprapi.h: New file.
4255         * include/routprot.h: New file.
4256         * include/ipxrtdef.h: New file.
4257         * include/ipxconst.h: New file.
4258         * include/stm.h: New file.
4259
4260 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4261
4262         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4263         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4264
4265 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4266
4267         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4268         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4269         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4270         versions.
4271         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4272
4273 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4274
4275         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4276         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4277
4278 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4279
4280         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4281
4282 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4283
4284         * include/basetyps.h (REFFMTID): Define properly.
4285
4286 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4287
4288         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4289         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4290
4291 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4292
4293         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4294         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4295         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4296         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4297         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4298         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4299         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4300         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4301         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4302         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4303         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4304         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4305         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4306         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4307         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4308         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4309         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4310         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4311         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4312         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4313         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4314         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4315         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4316         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4317         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4318         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4319         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4320         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4321         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4322         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4323         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4324         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4325         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4326         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4327         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4328         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4329         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4330         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4331         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4332         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4333         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4334         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4335         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4336         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4337         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4338         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4339         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4340         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4341         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4342         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4343         (IF_OPER_STATUS_OPERATIONAL): Define.
4344         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4345         Add function declaration.
4346         * include/mgm.h: New file.
4347         * lib/rtm.def: New file.
4348         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4349
4350 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4351
4352         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4353         This function cannot be made thread-safe, the API would have to be
4354         changed for that, just like strerror() -> strerror_r() and similar
4355         ISO C or POSIX functions...
4356
4357 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4358
4359         * include/edevdefs.h: New file.
4360
4361 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4362
4363         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4364         Use as guard for the WAVEFORMATEX structure instead of
4365         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4366         _WAVEFORMATEX_ for compatibility.
4367         Thanks to:    Andrew Jones <guln at sf dot net>
4368
4369 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4370
4371         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4372         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4373         Thanks to:    David Golub <david_golub at sf dot net>
4374
4375 2006-04-18  Eric House  <ehouse@eehouse.org>
4376
4377         PocketPC support.
4378         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4379         functions for using aygshell on PocketPC:
4380         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4381         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4382
4383         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4384         command bar API on PocketPC:
4385         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4386         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4387         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4388         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4389         CommandBar_InsertButton, CommandBar_Destroy.
4390
4391         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4392         fields not present on PocketPC.
4393         (GetCurrentThreadId): Conditionally declare as extern function
4394         without dllimport attribute on PocketPC.
4395         (ResetEvent): Likwise.
4396         (SetEvent): Likewise.
4397
4398         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4399         Conditionally declare as extern function without dllimport
4400          attribute on PocketPC.
4401         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4402         declare as extern function without dllimport attribute on PocketPC.
4403
4404 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4405
4406         * lib/test.c: Include icm.h.
4407
4408 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4409
4410         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4411         (CreateColorSpace): Add UNICODE mappings.
4412         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4413         * include/icm.h: New file.
4414         * lib/mscms.def: New file.
4415         * lib/icmui.def: New file.
4416
4417 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4418
4419         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4420         (IMAGE_FILE_MACHINE_AMD64): New define.
4421         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4422         New defines.
4423         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4424         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4425         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4426         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4427         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4428         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4429         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4430         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4431         New defines.
4432         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4433         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4434         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4435         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4436         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4437         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4438         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4439         definitions and typedefs.
4440         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4441         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4442         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4443         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4444         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4445         New structure definition and typedefs.
4446         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4447         Likewise.
4448         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4449
4450 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4451
4452         * lib/test.c: Fix typo in #inlcude.
4453         * include/aclui.h: INTERFACE should not remain
4454         defined at the end of the header.
4455         * include/servprov.h: Ditto.
4456
4457 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4458
4459         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4460
4461 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4462
4463         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4464
4465 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4466
4467         * include/wsahelp.h (system_header): Add pragma.
4468         * include/ws2spi.h (system_header): Add pragma.
4469         * include/rasdlg.h (system_header): Add pragma.
4470         * include/rasdlg.h (_RASDLG_H): Define.
4471         Define instead of _RASDLG_H_, this is the w32api standard.
4472         * include/mlang.h (_MLANG_H): Define.
4473         Define instead of _MLANG_H_, this is the w32api standard.
4474         * include/setupapi.h (_SETUPAPI_H): Define.
4475         Define instead of _SETUPAPI_H_, this is the w32api standard.
4476
4477 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4478
4479         * include/rpcndr.h (boolean): Add typedef.
4480         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4481         * include/rpcndr.h (_RPCNDR_H): Define.
4482         Define in addition to __RPCNDR_H__, this is the w32api standard.
4483
4484 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4485
4486         * include/w32api.h: Increment version to 3.7.
4487         * Makefile.in: Ditto.
4488
4489 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4490
4491         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4492         GET_MODULE_HANDLE_EX_FLAG_PIN,
4493         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4494         Thanks to:    Brandon Sneed <brandon at redf dot net>
4495
4496 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4497
4498         * include/secext.h: Enclose function declarations in extern "C"
4499         if __cplusplus.
4500
4501 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4502
4503         * include/comcat.h: INTERFACE should not remain defined
4504         at the end of the header.
4505         * include/docobj.h: Ditto.
4506         * include/exdisp.h: Ditto.
4507         * include/intshcut.h: Ditto.
4508         * include/mlang.h: Ditto.
4509         * include/mshtml.h: Ditto.
4510         * include/oaidl.h: Ditto.
4511         * include/objidl.h: Ditto.
4512         * include/objsafe.h: Ditto.
4513         * include/ocidl.h: Ditto.
4514         * include/oleacc.h: Ditto.
4515         * include/oledlg.h: Ditto.
4516         * include/oleidl.h: Ditto.
4517         * include/richole.h: Ditto.
4518         * include/shldisp.h: Ditto.
4519         * include/shlobj.h: Ditto.
4520         * include/unknwn.h: Ditto.
4521         * include/vfw.h: Ditto.
4522         Thanks to:    Brandon Sneed <brandon at redf dot net>
4523
4524 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4525
4526         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4527         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4528         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4529
4530 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4531
4532         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4533         here also.
4534
4535 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4536
4537         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4538         We should probably remove PROV_MS_MAIL but I'm keeping it for
4539         now for compatibility reasons.
4540         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4541
4542 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4543
4544         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4545         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4546         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4547
4548 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4549
4550         * include/wingdi.h [WINVER >= 0x0410]
4551         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4552         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4553
4554 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4555
4556         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4557         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4558         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4559         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4560         (L_MAX_URL_LENGTH): Define.
4561         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4562         Thanks to:    Brandon Sneed <brandon at redf dot net>
4563
4564 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4565
4566         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4567
4568 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4569
4570         * include/w32api.h (_W32API_H): Define.
4571         Define in addition to _W32API_H_, this is the w32api standard.
4572
4573 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4574
4575         * include/w32api.h (WindowsVista): Define.
4576
4577 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4578
4579         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4580         on SOCKET_ADDRESS only if winsock2.h has already been included.
4581
4582 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4583
4584         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4585
4586 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4587
4588         * include/iphlpapi.h (GAA_FLAG_*): Define.
4589         (GetAdaptersAddresses): Add function declaration.
4590         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4591         Thanks to:    ross <rossboulet at users dot sf dot net>
4592
4593 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4594
4595         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4596         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4597         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4598         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4599         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4600         SCOPE_LEVEL): Add enums.
4601         (IP_ADAPTER_*): Define.
4602
4603 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4604
4605         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4606         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4607
4608 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4609
4610         * include/objidl.h (PIDSI_*): Define.
4611         (PRSPEC_*): Define.
4612         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4613
4614 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4615
4616         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4617         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4618         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4619         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4620         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4621
4622 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4623
4624         * include/mq.h: New file.
4625         * lib/mqrt.def (MQ*): Define a few missing functions.
4626
4627 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4628
4629         * lib/mqrt.def: New file.
4630         Needs the mq.h file to work properly, working on it.
4631         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4632
4633 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4634
4635         * include/winerror.h (STG_E_*):  Define.
4636         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4637         * include/winerror.h (STG_S_*): Define.
4638         (CO_S_MACHINENAMENOTFOUND): Define.
4639         (RPC_E_*): Define.
4640         (NTE_*): Define.
4641
4642 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4643
4644         * include/commctrl.h (ListView_*):  Define and correct.
4645         (LVM_*): Define.
4646
4647 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4648
4649         * include/winuser.h (WM_IME_*): Define (DWORD type).
4650         (EM_*IMESTATUS): Define.
4651         (WM_*): Define.
4652         (XBUTTON*): Define.
4653         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4654
4655 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4656
4657         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4658         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4659
4660 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4661
4662         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4663         version conditional.
4664
4665 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4666
4667         * include/winspool.h (JOB_INFO_3): Add structure.
4668         (PROVIDOR_INFO_*{AW}): Add structure.
4669         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4670         (PRINTER_ENUM_VALUES{AW}): Add structure.
4671         (PRINTPROCESSOR_CAPS): Add structure.
4672
4673 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4674
4675         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4676         (PRINTER_INFO_7A): Correct definition.
4677
4678 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4679
4680         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4681         (DRIVER_INFO_*{AW}): Add structure.
4682         (PRINTER_INFO_*{AW}): Add structure.
4683         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4684
4685 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4686
4687         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4688         (DRIVER_*MODE): Define (DWORD type).
4689         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4690
4691 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4692
4693         * include/wincon.h (GetConsoleProcessList): Declare.
4694
4695 2006-03-27  Hansres Engel  <engel@node.ch>
4696
4697         * include/mlang.h: New file.
4698
4699 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4700
4701         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4702
4703 2006-03-26  Hansres Engel  <engel@node.ch>
4704
4705          Add Uniscribe API for typography and for complex scripts.
4706         * include/usp10.h: New file.
4707         * lib/usp10.def: New file.
4708
4709         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4710
4711         * include/imm.h (IMECHARPOSITION): Add structure.
4712         (RECONVERTSTRING): Likwise.
4713
4714         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4715
4716         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4717         (IMLangFontLink2): Likewise.
4718         (IMultiLanguage): Likewise.
4719
4720 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4721
4722         * include/wincon.h  (ENABLE_*): Add more defines.
4723
4724 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4725
4726         * include/winnt.h (INHERITED_ACE): Define.
4727         (VALID_INHERIT_FLAGS): Correct definition.
4728
4729 2006-03-18  Peter Åstrand  <astrand@cendio.se>
4730
4731          * lib/wtsapi32.def: New file.
4732
4733 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4734
4735         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4736         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4737
4738 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4739
4740         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4741         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4742         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4743         (DSPRINT_*): Define (DWORD type).
4744         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4745
4746 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4747
4748         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4749         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4750
4751 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4752
4753         * include/shellapi.h [_WIN32_IE >= 0x0600]
4754         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4755         Windows XP SP1 and Windows XP respectively.
4756
4757 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4758
4759         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4760         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4761         * include/shellapi.h [_WIN32_IE >= 0x0500]
4762         (NIS_*): Introduced in Version 5.0.
4763
4764 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4765
4766         * include/wingdi.h (CS_*): Correct WINVER guard on
4767         Image Color Matching colour definitions.
4768
4769 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4770
4771         * include/shlobj.h (SFGAO_ISSLOW): Define.
4772         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4773         attribute constants.
4774
4775 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4776
4777         * include/wingdi.h [WINVER >= 0x0500]
4778         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4779         Thanks to: David A. Capello <dacap at users dot sf dot net>
4780
4781 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4782
4783         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4784         (INTERNET_STATE_*): Define flags.
4785         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4786
4787 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4788
4789         * include/sddl.h: New file.
4790
4791 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4792
4793         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4794         last change.
4795         Remove file level #pragma pack(push,4)/#pragma pop.
4796
4797 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4798
4799         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4800         value to force correct alignment.
4801
4802 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4803
4804         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4805         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4806         (PNM_CACHEHINT): Add backward compatibilty define.
4807         (LPNM_CACHEHINT): Likewise.
4808
4809 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4810
4811         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4812
4813 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4814
4815         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4816         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4817         * lib/shell32.def (PathResolve): Define.
4818
4819 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4820
4821         * include/shlobj.h (PathResolve): Fix typo.
4822
4823 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4824
4825         * include/shlobj.h (PathResolve): Define.
4826         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4827         PRF_DONTFINDLNK): Ditto.
4828         * lib/shell32.def (PathResolve): Define.
4829
4830 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4831
4832         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4833
4834 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4835
4836         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4837         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4838         (NotifyRouteChange@8): Define.
4839
4840 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4841
4842         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4843         prototypes.
4844
4845 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4846
4847         * include/winnt.h (FORCEINLINE): Define.
4848
4849 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4850
4851         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4852
4853 2006-01-26  Filip Navara  <xnavara@volny.cz>
4854
4855         * include/winnt.h (DECLSPEC_ALIGN): Define.
4856
4857 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4858
4859         * include/commctrl.h: Correct spelling of 'compatibility' in
4860         comments.
4861         * include/setupapi.h: Likewise.
4862         * include/ws2tcpip.h: Likewise.
4863
4864 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4865
4866         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4867
4868 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4869
4870         WATCOM compatibility changes.
4871         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4872         rather than __attribute__.
4873         (DECL_EXPORT): Likewise.
4874         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4875         (DDKFASTAPI): Likewise.
4876         (DDKCDECLAPI): Likwise.
4877         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4878
4879 2006-01-23  Brandon Sneed  <brandon@redf.net>
4880
4881         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4882         to exports.
4883
4884 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4885
4886         * include/w32api.h: Increment version to 3.6.
4887         * Makefile.in: Ditto.
4888
4889 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4890
4891         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4892         advapi32.dll functions.
4893
4894 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4895
4896         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4897         names for padding size constants.
4898
4899 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4900
4901         * include/aclapi.h (WINADVAPI): Add to prototypes.
4902         * include/winreg.h (WINADVAPI): Likewise.
4903         * include/winsvc.h (WINADVAPI): Likewise.
4904
4905 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4906
4907         * include/winbase.h (WINADVAPI): Define.
4908
4909 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4910
4911         * include/winuser.h (CreateWindowStation): Correctly identify first
4912         argument as constant.
4913         (CreateWindowStation@): Ditto.
4914
4915 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4916
4917         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4918         (TMT_*, BT_*): Add constants.
4919
4920 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4921
4922         * include/winsock2.h: Don't define struct sockaddr_storage when
4923         building Cygwin.
4924
4925 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4926
4927         * lib/ws2_32.c: New file, defining IPv6 constants.
4928         * lib/Makefile.in (SOURCES): Add ws2_32.c
4929         (EXTRA_OBJS): Add ws2_32.o.
4930
4931 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4932
4933         * lib/user32.def (PrivateExtractIconsA@32,
4934         PrivateExtractIconsW@32): Define.
4935         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4936
4937 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4938
4939         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4940
4941 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4942
4943         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4944
4945 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4946             Danny Smith <dannysmith@users.sourceforge.net>
4947
4948         * lib/msxml-uuid.c: New file to generate UUIDs for
4949         MSXML interfaces.
4950         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4951
4952 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4953
4954         * include/winbase.h (GetDevicePowerState): Add prototype.
4955         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4956
4957 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4958
4959         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4960         Define as macro if !_WIN64.
4961         (SetClassLongPtr{AW}): Likewise.
4962         (GCLP_*): Add GetClassLongPtr defines.
4963         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4964         (SetClassLongPtr{AW}): Likewise.
4965
4966 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4967
4968         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4969         (SetClassLongPtr{AW}): Likewise.
4970         (GCLP_*): Add GetClassLongPtr defines.
4971         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4972         (SetClassLongPtr{AW}): Likewise.
4973
4974 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4975
4976         * include/commdlg.h (OPENFILENAMEW): Add members for
4977         _WIN32_WINNT >= 0x0500.
4978         Thanks to Ricardo Dalcorsso Fodra.
4979         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4980
4981 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4982
4983         * include/wingdi.h (GetICMProfileA): Correct prototype.
4984         (GetICMProfileW): Likewise.
4985         Thanks to: Paul J Lucas
4986
4987 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4988
4989         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4990
4991 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4992
4993         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4994         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4995         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4996         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4997
4998 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4999
5000         * include/objbase.h: Fix typo.
5001         * include/w32api.h: Increment version to 3.5.
5002         * Makefile.in: Ditto.
5003
5004 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5005
5006         * include/w32api.h: Increment version to 3.4.
5007         * Makefile.in: Ditto.
5008
5009 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
5010
5011         * include/winbase.h (GetProcessId): Remove duplicate declaration.
5012         Use _WIN32_WINNT >= 0x0501 guard.
5013
5014 2005-10-11  Christopher Faylor  <cgf@timesys.com>
5015
5016         * include/winbase.h (GetProcessId): Declare.
5017
5018 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5019
5020         * lib/ddk/newdev.def: Added.
5021         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
5022
5023 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5024
5025         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
5026         component.
5027         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
5028
5029 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5030
5031         * lib/shell32.def (SHILCreateFromPath): Add stub.
5032         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
5033
5034 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5035
5036         * include/winbase.h (RegisterWaitForSingleObject,
5037         RegisterWaitForSingleObjectEx): Define.
5038         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
5039         (RegisterWaitForSingleObject@16): Changed to
5040         RegisterWaitForSingleObject@24.
5041         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
5042
5043 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
5044
5045         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
5046         Thanks to: Gisle Vanem  <giva at bgnett dot no>
5047
5048 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5049
5050         * include/reason.h [_WIN32_WINNT >= 0x0501]
5051         (SHTDN_REASON_*): New file.
5052         * include/objbase.h: Avoid double header guard.
5053
5054 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
5055
5056         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
5057         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
5058         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
5059
5060 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5061
5062         * include/shlobj.h (IContextMenu3): Define.
5063         * include/shlguid.h (IID_IContextMenu3): Declare.
5064         * lib/shell32.c (IID_IContextMenu3): Define.
5065
5066 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5067
5068         * include/shlobj.h (SHFormatDrive): Declaration of function
5069         and associated constants.
5070
5071 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5072
5073         * include/ddk/hidsdi.h:  New file.
5074         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
5075         functions declared in hidsdi.h.
5076         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
5077
5078 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5079
5080         * lib/imm32.def (ImmDisableIME): Add stub.
5081         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
5082
5083 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5084
5085         * include/w32api.h: Increment version to 3.3.
5086         * Makefile.in: Ditto.
5087
5088 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
5089
5090         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
5091         Correct their values.
5092         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
5093
5094 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5095
5096         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
5097
5098 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5099
5100         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
5101         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
5102
5103 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5104
5105         * include/richedit.h (SETTEXTEX): Define structure and
5106         associated constants.
5107         (GT_SELECTION): Define GETTEXTEX flag constant.
5108
5109 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5110
5111         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
5112
5113 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5114
5115         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
5116         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
5117         prototypes.
5118
5119 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5120
5121         * include/commctrl.h (RBBS_USECHEVRON): Define.
5122         (RBBS_*): Use hex notation, group together.
5123
5124 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5125
5126         * lib/kernel32.def (GetUserGeoID): Correct suffix.
5127         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
5128
5129 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5130
5131         * include/commctrl.h (TreeView_SetItemState): Initilise
5132         _tvi.hItem.
5133         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
5134
5135 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
5136
5137         * include/commctrl.h (NMLVFINDITEM): Add structure.
5138
5139 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5140
5141         * include/wininet.h (WININET_API_FLAG_*): Add defines.
5142
5143 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
5144
5145         * include/winnt.h (VER_SET_CONDITION): Define.
5146
5147 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5148
5149         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
5150         (ATTACH_PARENT_PROCESS): Define.
5151         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
5152         documentation.
5153
5154 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5155
5156         * include/winbase.h (QueueUserWorkItem): Add prototype.
5157
5158 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5159
5160         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
5161         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
5162         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
5163         CM_CMYK_COLOR): Define.
5164
5165 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
5166
5167         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
5168         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
5169         Thanks to: Christian  <chhd at users dot sf dot net>
5170
5171 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5172
5173         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
5174         field.
5175         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
5176
5177 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5178
5179         * include/winbase.h (GlobalDiscard): Define as macro.
5180         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5181
5182 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5183
5184         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5185         (WNetGetResourceParentW): Ditto.
5186         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5187         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5188
5189 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5190
5191         * include/wininet.h (FtpGetFileSize): Add prototype.
5192         (FtpCommand[AW]): Correct prototypes.
5193         Reported by: <siger at users dot sf dot net>
5194
5195 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5196
5197         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5198         (capGetDriverDescription[AW]): Likewise.
5199
5200 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5201
5202         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5203         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5204         (SE_IMPERSONATE_NAME TEXT): Ditto.
5205         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5206         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5207
5208 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5209
5210         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5211         change.
5212
5213 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5214
5215         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5216         Thanks to:
5217         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5218
5219 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5220
5221         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5222         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5223         (gai_strerror[AW]): Put into #if 0 block.
5224
5225 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5226
5227         * include/basetyps.h (__int16): Correct define.
5228
5229 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5230             Danny Smith  <dannysmith@users.sourceforge.net>
5231
5232         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5233         define for Open Watcom portability.
5234         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5235         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5236         of local c_rgodfDI* objects. Replace .rdata section attribute
5237         with 'const' keyword in definition of global c_dfDI* objects.
5238
5239 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5240
5241         * include/winioctl.h (IOCTL_VOLUME_BASE,
5242         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5243         Copy defines from include/ddk/ntdddvol.h.
5244         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5245
5246 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5247
5248         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5249
5250 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5251
5252         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5253         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5254
5255 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5256
5257         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5258
5259 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5260
5261         * lib/user32.def (MonitorFromPoint): Correct suffix.
5262
5263 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5264
5265         * include/wininet.h (InternetCheckConnectionA,
5266         InternetCheckConnectionW) Add prototypes.
5267         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5268         INTERNET_CONNECTION_CONFIGURED): Add defines.
5269
5270 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5271
5272         * include/commctrl.h (ComboBox_SetMinVisible,
5273         ComboBox_GetMinVisible): Added Macros.
5274         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5275         Added definitions.
5276
5277 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5278
5279         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5280         assembly code conditional on _X86_.
5281
5282 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5283
5284         * include/w32api.h: Increment version to 3.2.
5285         * Makefile.in: Ditto.
5286         * include/afxres.h: Remove the \r from the line ending.
5287         * include/errorrep.h: Ditto.
5288         * include/shldisp.h: Ditto.
5289         * include/tschema.h: Ditto.
5290         * lib/dhcpcsvc.def: Ditto.
5291         * lib/uxtheme.def: Ditto.
5292         * lib/wldap32.def: Ditto.
5293
5294 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5295
5296         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5297         Correct typo.
5298         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5299
5300 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5301
5302         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5303         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5304         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5305         SPI_GETFOREGROUNDLOCKTIMEOUT,
5306         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5307         *include/imm.h (WM_IME_REQUEST): Added definition.
5308         *include/shlobj.h (SLGP_RAWPATH,
5309         SLGP_UNCPRIORITY): Added definition.
5310
5311 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5312
5313         *include/winuser.h (HSHELL_FLASH): Added definition.
5314
5315 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5316
5317         * include/shldisp.h (IAutoComplete): Added interface definiton.
5318         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5319         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5320         * include/shlobj.h (IObjMgr): Added interface definiton.
5321         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5322         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5323         CLSID_ACListISF, IID_IACList): Added GUIDs.
5324         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5325         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5326         CLSID_ACListISF, IID_IACList): Added GUIDs.
5327
5328 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5329
5330         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5331         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5332         (CDRF_*): Use hex notation for constants.
5333
5334 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5335
5336         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5337         Reported by Eric Sharkey <sharkey at netrics dot com>
5338
5339 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5340
5341         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5342         TokenGroupsAndPrivileges, TokenSessionReference,
5343         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5344         Reformat.
5345         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5346         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5347
5348 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5349
5350         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5351         ImageList_Duplicate): Add stubs.
5352
5353 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5354
5355         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5356         Thanks to "Pete" <pross@xvid.org>
5357
5358 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5359
5360         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5361         AC_DST_NO_ALPHA, ...): Add defines.
5362         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5363         ULW_OPAQUE): Add defines.
5364
5365 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5366
5367         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5368         guard.
5369         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5370         suffix.
5371         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5372
5373 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5374
5375         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5376         (CreateProcessWithLogonW): Declare.
5377         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5378         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5379
5380 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5381
5382         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5383         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5384
5385 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5386
5387         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5388         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5389
5390 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5391
5392         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5393
5394 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5395
5396         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5397         Add defines.
5398         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5399
5400 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5401
5402         * include/shellapi.h (NIF_GUID): Add another define.
5403
5404 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5405
5406         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5407         Changed it twice due to inconsistent MSDN documentation.
5408         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5409
5410 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5411
5412         * include/shlobj.h (SHGFP_TYPE): Add enum.
5413
5414 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5415
5416         * include/winuser.h (WM_THEMECHANGED): Add define.
5417
5418 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5419
5420         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5421         ExFreeToPagedLookasideList): Guard inline versions with
5422         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5423         external functions for earlier _WIN32_WINNT.
5424
5425 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5426
5427         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5428
5429 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5430
5431         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5432         if  undefined and __W32API_USE_DLLIMPORT__.
5433         Add WINBASEAPI token to prototypes, throughout.
5434
5435 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5436
5437         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5438         (GetFiberData): Likewise.
5439         (NtCurrentTeb): Likewise.
5440
5441 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5442
5443         * include/shellapi.h (NIF_INFO): Add define.
5444         (NIIF_*) Add defines..
5445         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5446         (NIF_*): Convert constants to hex.
5447
5448 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5449
5450         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5451         GetGlyphIndicesW): Declare.
5452         (GGI_MARK_NONEXISTING_GLYPHS): Define
5453         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5454         GetGlyphIndicesW): Add stubs.
5455
5456 2004-10-24  Dan Aloni  <da-x@colinux.org>
5457
5458         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5459         ZwQueryFullAttributesFile): Declare.
5460         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5461         Declare.
5462         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5463         ZwQueryVolumeInformationFile): Add stubs.
5464
5465 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5466
5467         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5468         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5469
5470 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5471             Danny Smith  <dannysmith@users.sourceforge.net>
5472
5473         * include/winbase.h (InitializeSListHead, Interlocked*):
5474         Guard with !__USE_NTOSKRNL__.
5475
5476         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5477         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5478         Guard with  __USE_NTOSKRNL__.
5479         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5480         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5481         && _WIN32_WINNT >= 0x0501
5482         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5483         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5484         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5485         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5486
5487         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5488         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5489         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5490         ExWindowStationObjectType, IoAdapterObjectType,
5491         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5492         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5493         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5494         Uncomment stubs.
5495
5496 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5497
5498         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5499         definition
5500         (IoReleaseRemoveLock): Add definition.
5501
5502 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5503
5504         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5505         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5506         Add prototypes.
5507         * include/winddk.h (ExInterlockedAddUlong,
5508         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5509         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5510         ExInterlockedPushEntryList): Change calling convention to
5511         DDKAPI.
5512         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5513         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5514         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5515         Add prototypes for DDKFASTAPI versions.
5516         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5517         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5518         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5519         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5520         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5521         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5522         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5523         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5524         Add fastcall stubs.
5525         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5526         Exi386InterlockedIncrementLong); Add stdcall stubs.
5527
5528 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5529
5530         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5531          if __W32API_USE_DLLIMPORT__ is defined.
5532         * include/winuser.h (WINUSERAPI): Likewise.
5533
5534 2004-09-29  Filip Navara  <xnavara@volny.cz>
5535
5536         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5537         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5538         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5539         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5540         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5541         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5542         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5543         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5544         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5545         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5546         winnt4.h, ws2san.h): Fixed packing.
5547         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5548         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5549         HID_INTERFACE_NOTIFY_PNP): Likewise.
5550         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5551         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5552         <ayerkes@speakeasy.net>.
5553         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5554         declaration.
5555         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5556         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5557         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5558         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5559         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5560         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5561         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5562         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5563         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5564         (SYNCH_LEVEL): Added definition.
5565         (KPCR, KPCR_TIB): Fixed declaration.
5566         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5567         included and _WIN32_WINNT >= 0x0501.
5568         (RtlEqualLuid): Fixed macro definition.
5569         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5570         KeRaiseIrql on i386 architectures.
5571
5572 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5573
5574         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5575         declaration.
5576         (IHTMLSelectionObject): Correct get_type declaration.
5577         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5578         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5579         IHTMLBodyElement2): Add interfaces.
5580         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5581         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5582         typedefs.
5583         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5584         Add IIDs.
5585
5586 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5587
5588         * include/w32api.h: Increment version to 3.1.
5589         * Makefile.in: Ditto.
5590
5591 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5592
5593         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5594         MonitorFromWindow): Add prototypes.
5595         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5596         MonitorFromWindowMonitorFromWindow): Add stubs.
5597         * include/shellapi.h (DuplicateIcon): Add prototype.
5598
5599 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5600
5601         * include/winuser.h (WINUSERAPI): New define.
5602         Use it to mark user32.dll imports, throughout.
5603
5604 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5605
5606         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5607         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5608         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5609         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5610         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5611         HidD_GetPreparsedData, HidD_GetProductString,
5612         HidD_GetSerialNumberString, HidD_SetConfiguration,
5613         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5614         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5615
5616 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5617
5618         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5619         Add XP defines.
5620         (PCOORD): Add typedef.
5621         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5622
5623 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5624
5625         * include/winldap.h: Don't check value of UNICODE.
5626         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5627
5628 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5629
5630         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5631
5632 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5633
5634         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5635         guard.
5636
5637 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5638
5639         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5640
5641 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5642
5643         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5644
5645 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5646
5647         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5648
5649 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5650
5651         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5652
5653 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5654
5655         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5656         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5657         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5658         Add defines.
5659         (CALG_SHA1): Add define.
5660         (HP_HMAC_INFO): Add define.
5661         (HMAC_INFO): Add struct.
5662         (BLOBHEADER): Add typedef.
5663
5664 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5665
5666         * include/commctrl.h (TreeView_SetItemState): Define macro.
5667
5668 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5669
5670         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5671         macros together.
5672
5673 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5674
5675         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5676         (FILEGROUPDESCRIPTOR): LIkewise.
5677
5678 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5679
5680         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5681
5682 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5683
5684         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5685         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5686         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5687         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5688         (IMAGE_ORDINAL): Map to ...
5689         (IMAGE_ORDINAL{32,64}: New defines.
5690         (IMAGE_THUNK_DATA):  Map to ...
5691         (IMAGE_THUNK_DATA{32,64}: New structures.
5692         (IMAGE_THUNK_DATA): Map to ...
5693         (IMAGE_THUNK_DATA{32,64}: New structures.
5694         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5695         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5696         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5697         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5698
5699 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5700
5701         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5702         _WIN32_WINNT >= 0x0500.
5703
5704 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5705
5706         * include/winbase.h (GetWriteWatch): Correct prototype.
5707         (WRITE_WATCH_FLAG_RESET): Define.
5708         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5709
5710 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5711
5712         * include/commctrl.h (Animate_OpenEx): Define.
5713         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5714         (ListView_GetNumberOfWorkAreas): Correct macro.
5715         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5716         ListView_SetItemCountEx, ListView_GetISearchString,
5717         TreeView_GetLastVisible, Header_CreateDragImage,
5718         Header_SetImageList, Header_GetImageList): Define.
5719         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5720         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5721         TBSTATE_ELLIPSES): Define.
5722         (MonthCal_SetRange): Correct macro.
5723         (ImageList_Duplicate): Declare.
5724
5725 2004-05-29  Filip Navara  <xnavara@volny.cz>
5726
5727         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5728
5729 2004-05-25  Al Slater  <al.slater@scluk.com>
5730
5731         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5732         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5733
5734 2004-05-15  Filip Navara  <xnavara@volny.cz>
5735
5736         * include/ddk/kbdmou.h: New file.
5737         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5738         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5739         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5740         _vsnwprintf, sprintf, swprintf): Export.
5741
5742 2004-05-15  Filip Navara  <xnavara@volny.cz>
5743
5744         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5745         headers.
5746
5747 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5748
5749         * include/wingdi.h: Correct non-unicode typedefs of
5750         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5751
5752 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5753
5754         * include/winsock.h (IN_CLASSA): Fix macro.
5755         * include/winsock2.h (IN_CLASSA): Fix macro.
5756
5757 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5758
5759         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5760         * include/aclui.h: Remove '\r', throughout.
5761         * include/msacm.h: Likewise.
5762         * lib/aclui.def: Likewise.
5763
5764 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5765
5766         * lib/comctl32.def (SetWindowSubclass): Add stub.
5767         Thanks to Eugene <egladysh@users.sourceforge.net>.
5768
5769 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5770
5771         * include/winbase.h (EXECUTION_STATE): Add typedef.
5772         (SetThreadExecutionState): Declare.
5773         * include/wingdi.h (_WINGDI_): Define.
5774         * include/objbase.h (_OBJBASE_H_): Define.
5775
5776 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5777
5778         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5779         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5780         (SM_CMETRICS): Adjust value.
5781         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5782         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5783         Add defines.
5784         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5785
5786 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5787
5788         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5789         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5790         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5791         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5792         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5793         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5794
5795 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5796
5797         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5798         DNSREC_ADDITIONAL): Add defines.
5799
5800 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5801
5802         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5803
5804 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5805
5806         * include/aclui.h: New file.
5807         * lib/aclui.def: New file.
5808         * lib/test.c: Add aclui.h to includes.
5809
5810 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5811
5812         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5813         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5814         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5815
5816 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5817
5818         * include/wingdi.h: Protect non-unicode case of below.
5819
5820 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5821
5822         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5823         LPENUMLOGFONTEXDV with appropriate version check.
5824
5825 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5826
5827         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5828         DSPROPSETID_DirectSoundDevice): Add defines.
5829
5830 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5831
5832         * include/msacm.h: New file.
5833
5834 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5835
5836         * include/objbase.h (STGFMT): Declare enum.
5837         (STGOPTIONS): Declare structure.
5838         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5839         (STGOPTIONS_VERSION): Define.
5840         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5841
5842 2004-04-13  Filip Navara  <xnavara@volny.cz>
5843
5844         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5845         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5846         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5847         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5848         HELP_SETWINPOS): Define.
5849         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5850         (SPI_*): Add new definitions for WINVER >= 0x500.
5851         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5852         (InternalGetWindowText, SetWindowsHookW): Declare.
5853         * include/winbase.h (InitializeSListHead): Avoid conflicting
5854         definition with DDK headers.
5855
5856 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5857
5858         * include/winuser.h (GetLastError): Move from here...
5859         * include/winbase.h: ... to here.
5860
5861 2004-04-13  Filip Navara  <xnavara@volny.cz>
5862
5863         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5864
5865 2004-04-13  Filip Navara  <xnavara@volny.cz>
5866
5867         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5868         WINVER >= 0x400.
5869         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5870         (ENUMLOGFONTEXW): Fix definition.
5871         (ENUMLOGFONTEXDV[AW]): Declare.
5872
5873 2004-04-13  Filip Navara  <xnavara@volny.cz>
5874
5875         * include/wingdi.h: Declare the DirectDraw structures only if
5876         the DirectDraw kernel mode headers aren't included.
5877         (EMFINFO): Declare.
5878         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5879         STROBJ_bEnumPositionsOnly): Correct prototypes.
5880
5881 2004-04-13  Filip Navara  <xnavara@volny.cz>
5882
5883         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5884         * include/rpc.h (RPCRTAPI): Define.
5885         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5886         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5887         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5888         (I_RpcBindingSetAsync): Correct prototype.
5889         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5890         to w2kReserved.
5891         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5892         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5893         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5894         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5895         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5896         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5897         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5898         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5899         NdrUserMarshalFree): Declare.
5900         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5901         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5902
5903 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5904
5905         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5906         LPC_MESSAGE_BASE_SIZE): Define.
5907         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5908
5909 2004-04-13  Filip Navara  <xnavara@volny.cz>
5910
5911         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5912         Declare.
5913
5914 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5915
5916         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5917         MONITORINFO when compiling as C++.
5918
5919 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5920
5921         * README.w32api: List separate copyright conditions for some headers.
5922         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5923
5924 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5925
5926         * include/wingdi.h (RGB): Correct macro.
5927
5928 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5929
5930         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5931
5932 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5933
5934         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5935
5936 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5937
5938         * lib/Makefile.in: Add directx to .PHONY target.
5939         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5940         Don't include stdio.h or tchar.h.
5941         Replace _T() macro with TEXT() macro, throughout.
5942         Replace _stprintf with wsprintf, throughout.
5943
5944 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5945
5946         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5947         Add define.
5948         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5949         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5950         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5951
5952 2004-03-27  Filip Navara  <xnavara@volny.cz>
5953
5954         * include/directx: New subdir.
5955         * lib/directx: Ditto.
5956         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5957         dxerr9.h): New files.
5958         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5959         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5960         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5961         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5962         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5963         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5964         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5965         strmiids.c, test.c): Ditto.
5966         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5967         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5968
5969 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5970
5971         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5972         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5973         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5974
5975 2004-03-24  Filip Navara  <xnavara@volny.cz>
5976
5977         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5978         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5979
5980 2004-03-24  Filip Navara  <xnavara@volny.cz>
5981
5982         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5983         TaggedQueueing to TaggedQueuing.
5984         (_HW_INITIALIZATION_DATA): Likewise.
5985
5986 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5987
5988         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5989         prototype.
5990         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5991
5992 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5993
5994         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5995         (MmMapIoSpace): Likewise.
5996         Thanks to Dan Aloni  <da-x@colinux.org>
5997
5998 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5999
6000         * include/shellapi.h (NIM_* NIS_*): Define constants for
6001         notification icons with _WIN32_IE >= 0x0500.
6002         (NOTIFYICONDATA): Add new structure members for notification
6003         icons with _WIN32_IE >= 0x0500.
6004
6005 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
6006
6007         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
6008         Add defines.
6009         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
6010         (GROUPID) Add typedef.
6011         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
6012         (CreateUrlCacheGroup): Add prototype.
6013         (DeleteUrlCacheGroup): Add prototype.
6014         (FindFirstUrlCacheGroup): Add prototype.
6015         (FindNextUrlCacheGroup): Add prototype.
6016         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
6017         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
6018
6019 2004-03-10  Al Slater  <al.slater@scluk.com>
6020
6021         * include/winsock2.h: Add missing LPFN_ typdefs for
6022         function pointers.
6023         Clean up whitespace.
6024
6025 2004-03-05  Filip Navara  <xnavara@volny.cz>
6026
6027         * include/ddk/scsi.h: Replace assert with ASSERT.
6028         * include/ddk/video.h: Ditto.
6029         * include/ddk/winddk.h: Ditto. Remove the assert macro.
6030         * include/ddk/tdi.h: Correct packing.
6031
6032 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
6033
6034         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
6035         NONAMELESSUNION case.
6036
6037 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
6038
6039         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
6040         __VARIANT_NAME_ constants.
6041
6042 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6043
6044         * include/uxtheme.h: Include <commctrl.h>
6045
6046 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6047
6048         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
6049
6050 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
6051
6052         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
6053         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
6054         together.
6055         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
6056         (V_I8, V_I8REF): Correct macros.
6057         (V_DECIMAL): Correct macro definitions.
6058         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
6059         constants.
6060         (VTBIT_*): Define constants.
6061         (UDATE): Add structure definition.
6062         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
6063         functions.
6064         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
6065         (SafeArrayCreateVectorEx): Declare function.
6066         (Var*): declare VARIANT manipulation functions.
6067         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
6068         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
6069         macros.
6070
6071 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
6072
6073         * include/oaidl.h (FADF_*): Define missing constants.
6074         (IDispatch_*): Define COBJ macros.
6075         (VARIANT): Add missing union members llVal and ullVal.
6076         (wireVARIANT): Likewise.
6077         (ITypeinfo_*): Define COBJ macros.
6078         * include/oleauto.h (Var*FromDisp): Correct parameter type from
6079         LPDISPATCH* to LPDISPATCH.
6080         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
6081         VAR_CALENDAR_*): Add missing constants.
6082         (SafeArray[Get/Set]*): Add prototypes.
6083         (Var*From*):  Add missing prototypes.
6084         (NUMPRS_*): Add defines.
6085         (NUMPARSE): Define structure.
6086         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
6087         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
6088         * include/winuser.h (COLOR_*): Define missing constants.
6089         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
6090         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
6091
6092 2004-02-23  Filip Navara  <xnavara@volny.cz>
6093
6094         * include/ddk/video.h: Corrected packing.
6095
6096 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6097
6098         * include/GL/glu.h (GLU_ERROR): Define.
6099         Thanks to Philip Lamb  <phil at rave dot co dot nz>
6100
6101 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6102
6103         * include/GL/glu.h: Include <stddef.h>.
6104         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
6105
6106 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
6107
6108         * include/w32api.h: Increment version to 3.0.
6109         * Makefile.in: Ditto.
6110         * README.win32api: Modify license to Public Domain per agreement as
6111         found in the mingw-dvlpr list archive.
6112
6113 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
6114
6115         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
6116         (DIRECTORY_TRAVERSE): Ditto.
6117         (DIRECTORY_CREATE_OBJECT): Ditto.
6118         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
6119         (DIRECTORY_ALL_ACCESS): Ditto.
6120         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
6121
6122 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
6123
6124         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
6125
6126         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
6127         Thanks to Mike Nordell <tamlin at algonet dot se>.
6128
6129 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6130
6131         * lib/dnsapi.def: New file.
6132         * lib/test.c: Include windns.h.
6133
6134 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
6135
6136         * include/windns.h: New file.
6137
6138 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6139
6140         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
6141         defines.
6142         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
6143         (SQLSetDescFieldW): Correct prototype.
6144         (SQLSetDescFieldA): Add prototype.
6145         (SQLGetDescFieldW): Add prototype.
6146
6147 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
6148
6149         * include/winuser.h (DFC_POPUPMENU): Add define.
6150
6151 2004-02-07  Dan Aloni  <da-x@gmx.net>
6152
6153         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
6154         suffix.
6155
6156 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6157
6158         * include/oleacc.h (LIBID_Accessibility): Declare.
6159         * lib/uuid.c (LIBID_Accessibility): Define.
6160
6161 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6162
6163         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
6164         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
6165
6166 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6167
6168         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
6169         defines.
6170
6171 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
6172
6173         * include/winuser.h (RT_MANIFEST): Make conditional on
6174         RC_INVOKED.
6175         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
6176         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
6177         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6178         defines.
6179
6180 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6181
6182         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6183
6184 2004-01-15  Filip Navara  <xnavara@volny.cz>
6185
6186         * include/ddk/mcd.h: Don't care about value of DBG define.
6187         * include/ddk/srb.h: Ditto.
6188         * include/ddk/storport.h: Ditto.
6189         * include/ddk/video.h: Ditto.
6190         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6191         GetAddressByNameW): Correct protoype.
6192         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6193
6194 2004-01-05  Filip Navara  <xnavara@volny.cz>
6195
6196         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6197         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6198         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6199         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6200         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6201         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6202         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6203         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6204         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6205         SSF_*): Add defines.
6206         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6207         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6208         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6209         Correct.
6210         (IEnumIDList): Add COBJMACROS.
6211         * include/winuser.h (MIM_*): Add define.
6212
6213 2004-01-04  Filip Navara  <xnavara@volny.cz>
6214
6215         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6216         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6217         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6218         PERSIST_FOLDER_TARGET_INFO): Define structures.
6219         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6220         IPersistFolder2, IPersistFolder3): Add COM interface
6221         definitions.
6222         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6223         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6224         Add COBJMACROS.
6225         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6226         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6227         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6228
6229 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6230
6231         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6232         declarations.
6233         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6234
6235 2004-01-03  Filip Navara  <xnavara@volny.cz>
6236
6237         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6238         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6239         declare IID's.
6240         (IErrorInfo): Add COBJMACROS.
6241         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6242         (CoGetPSClsid): Add protototype,
6243         (CoRegisterPSClsid): Likewise.
6244         * include/objidl.h (IMarshal): Correct methods.
6245         (IMallocSpy): Likewise,
6246         (LPPSFACTORYBUFFER): Add typedef.
6247         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6248         IID.
6249         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6250         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6251         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6252         structures.
6253         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6254         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6255         IQuickActivate): Define interfaces. Declare IID's.
6256         (IPersistPropertyBag2): Add COBJMACROS.
6257         (LPOLEUNDOMANAGER): Add typedef.
6258         (LPPROPERTYBAG2): Likewise.
6259         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6260         (BINDSPEED): Add definition.
6261         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6262         IDropTarget): Add COBJMACROS.
6263         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6264         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6265         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6266         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6267         Add IID definitions.
6268
6269 2004-01-02  Filip Navara  <xnavara@volny.cz>
6270
6271         * include/ddk/winddk.h: Don't care about value of
6272         DBG define.
6273
6274 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6275             Filip Navara  <xnavara@volny.cz>
6276
6277         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6278         _DDK_DUMMYUNION_N_MEMBER): New macros.
6279         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6280         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6281         Use them.
6282
6283 2004-01-01  Filip Navara  <xnavara@volny.cz>
6284
6285         * include/objbase.h: Don't care about value of DBG define.
6286         * include/objidl.h: Add some COBJMACROS.
6287         * include/ocidl.h: Ditto.
6288         * include/oleidl.h: Ditto.
6289         * include/servprov.h: Ditto.
6290         * include/shlobj.h: Ditto.
6291         * include/shlobj.h (IContextMenu2): Correct parent in
6292         DECLARE_INTERFACE.
6293         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6294         Define interfaces.
6295         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6296         Add new constants for _SETUPAPI_VER >= 0x501.
6297
6298 2004-01-01  Filip Navara  <xnavara@volny.cz>
6299
6300         * include/winnt.h (NtCurrentTeb): Add inline definition.
6301
6302 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6303
6304         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6305         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6306
6307 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6308
6309         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6310         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6311         * include/ddk/cfg.h (DN_*): Add defines.
6312
6313 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6314
6315         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6316
6317 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6318
6319         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6320         (NMTVGETINFOTIP): Add structure.
6321
6322 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6323
6324         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6325         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6326         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6327
6328 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6329
6330         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6331         Add macros.
6332         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6333         constants.
6334         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6335         (SHCOLUMNDAT): Likwise.
6336         (SHCOLUMNID): Likewise.
6337         (SHCOLUMNINFO): Likewise.
6338         (SHCOLSTATE): Add enum.
6339         (IColumnProvider): Add COM interface.
6340         (IQueryInfo): Likewise.
6341         (IShellIconOverlayIdentifier): Likewise.
6342         * include/shlguid.h (IID_IColumnProvider) Declare.
6343         (IID_IQueryInfo): Likweise.
6344         (IID_IShellIconOverlayIdentifier): Likwise.
6345         * lib/shell32.c (IID_IColumnProvider) Define.
6346         (IID_IQueryInfo): Likweise.
6347         (IID_IShellIconOverlayIdentifier): Likwise.
6348
6349 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6350
6351         * include/winuser.h (RT_MANIFEST): Add define.
6352
6353 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6354
6355         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6356
6357 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6358
6359         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6360         (GetFiberData): Likewise.
6361         (GetCurrentFiber): Change volatile to __volatile__.
6362         (GetFiberData): Likewise.
6363
6364 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6365
6366         * lib/Makefile.in: Use make function to locate .mri file to allow
6367         building in directory other than source directory.
6368
6369 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6370
6371         * lib/vfw32.def: Remove, replacing with ...
6372         * lib/msvfw32.def: New file.
6373         * lib/avicap32.def: New file.
6374         * lib/avifil32.def: New file.
6375         * lib/vfw32.mri: New file.
6376         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6377         import libs with multiple dll's.
6378         (LIBS): Add MIMPLIBS.
6379         (DISTFILES): Add MRI_FILES.
6380         (libvfw32.a): Build using mri script.
6381
6382 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6383
6384         * include/winnt.h (PAGE_*): Group defines together. Change
6385         constants to hex notation.
6386
6387 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6388
6389         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6390
6391 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6392
6393         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6394         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6395         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6396         Add prototypes.
6397         * lib/shell32.def: Add stubs.
6398
6399         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6400         compiler warnings.
6401
6402 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6403
6404         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6405
6406 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6407
6408         * include/windows.h (CopyCursor): Define as macro.
6409
6410 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6411
6412         * include/winnt.h (CONTAINING_RECORD): Add macro.
6413
6414 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6415
6416         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6417         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6418         defines.
6419
6420 2003-10-13  Filip Navara  <xnavara@volny.cz>
6421
6422         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6423         defines for Dynamic Storage Arrays.
6424         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6425         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6426         and defines for Flat ScrollBars.
6427         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6428         DefSubclassProc): Add prototypes for subclassing.
6429         (DrawShadowText): Add prototype.
6430         (COMCTL32_VERSION): Define.
6431
6432 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6433
6434         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6435         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6436
6437 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6438
6439         * include/winnt.h (SM_REMOTESESSION): Add define.
6440         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6441
6442 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6443
6444         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6445         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6446         duplicate definitions.
6447         (KP_X, KP_Y): Correct typos.
6448
6449 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6450
6451         * include/afxres.h: New file.
6452
6453         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6454         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6455         ENM_SCROLLEVENTS): Add constants.
6456
6457         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6458
6459 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6460
6461         * include/errorep.h: New file.
6462
6463         * lib/faultrep.def: New file.
6464
6465 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6466
6467         * include/winbase.h (AddVectoredExceptionHandler): Define if
6468         _WIN32_WINNT >= 0x0500.
6469
6470         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6471         _WIN32_WINNT >= 0x0500.
6472
6473 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6474
6475         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6476         _WIN32_WINNT >= 0x0501.
6477
6478 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6479
6480         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6481         UnregisterWaitEx): Add functions.
6482
6483         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6484         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6485         or guard function. The MSDN says it is available on Windows XP and
6486         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6487         Huh?
6488
6489         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6490         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6491         ZombifyActCtx, QueryActCtxW): Add functions.
6492
6493         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6494         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6495         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6496         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6497
6498         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6499         SetFirmwareEnvironmentVariable[AW]): Add functions.
6500
6501         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6502         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6503         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6504         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6505         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6506
6507         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6508         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6509
6510         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6511         (ACTIVATION_CONTEXT_INFO_CLASS,
6512         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6513         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6514         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6515         Add structures.
6516
6517         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6518         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6519         SetFileShortName[AW], SetFileValidData,
6520         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6521         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6522
6523 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6524
6525         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6526         ResetWriteWatch): Add function.
6527
6528         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6529         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6530         Add functions.
6531
6532         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6533         (GetSystemWow64Directory[AW], HeapQueryInformation,
6534         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6535         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6536         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6537         RemoveVectoredExceptionHandler): Add functions.
6538
6539         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6540         Add enumeration.
6541
6542         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6543         Add function.
6544
6545         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6546         Add function. The MSDN Magazine of June 2003 reads:
6547                 RestoreLastError is an enigma. It's code is identical to
6548                 SetLastError. It's unclear to me why it was made into a
6549                 separate API.
6550
6551         * lib/user32.def (GetSystemWindowsDirectory[AW],
6552         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6553         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6554         InterlockedFlushSList, InterlockedPopEntrySList,
6555         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6556         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6557         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6558         RestoreLastError): Add functions.
6559
6560 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6561
6562         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6563         GetProcessIoCounters): Add functions.
6564
6565         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6566         Move around, needed by GetComputerNameEx.
6567
6568         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6569         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6570         Add functions.
6571
6572         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6573         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6574
6575         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6576         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6577         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6578         Windows XP SP1 and better.
6579
6580         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6581         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6582         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6583         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6584         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6585         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6586         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6587         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6588         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6589
6590         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6591         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6592         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6593         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6594         Add functions.
6595
6596 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6597
6598         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6599         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6600         DebugSetProcessKillOnExit): Add functions.
6601
6602         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6603         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6604         DnsHostnameToComputerName[AW]): Add functions.
6605
6606         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6607         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6608         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6609
6610 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6611
6612         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6613         on Windows XP and later.
6614
6615 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6616
6617         * include/commctrl.h (TreeView_Select): Returns BOOL.
6618
6619 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6620
6621         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6622
6623         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6624         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6625
6626         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6627         CreateTimerQueueTimer): Add function.
6628
6629         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6630         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6631
6632         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6633         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6634
6635         * include/winnt.h (WT_*): Add constants.
6636
6637         * lib/user32.def (CancelDeviceWakeupRequest,
6638         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6639         DeactivateActCtx): Add functions.
6640
6641 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6642
6643         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6644         Add function. Sometimes I don't understand MSDN. This function is
6645         available on Windows XP and Server 2003, but the SDK is supposed to
6646         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6647         Mmmh...
6648
6649         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6650         Guard function. Same remark as above.
6651
6652         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6653         Add functions.
6654
6655 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6656
6657         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6658         Add constants.
6659
6660         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6661         structures.
6662
6663         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6664         function. MSDN says the first argument is HACTCTX but I'm not sure
6665         where such a specialized handle is defined, so use HANDLE instead.
6666
6667         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6668         CheckNameLegalDOS8Dot3[AW]): Add functions.
6669
6670         * lib/user32.def (ActivateActCtx, AttachConsole,
6671         CheckNameLegalDOS8Dot3[AW]): Add functions.
6672
6673         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6674         Unfortunately I don't know which header to put the declarations in.
6675
6676 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6677
6678         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6679         Add constants.
6680
6681         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6682         constants for National Language Support.
6683
6684         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6685         Language Support.
6686
6687         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6688         Language Support.
6689
6690         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6691         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6692         Add functions.
6693
6694         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6695         functions. Strange... I am unable to find which library contains
6696         these functions. Can't find anything with pexports. Any clue?
6697
6698         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6699         SetUserGeoID): Add functions.
6700
6701 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6702
6703         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6704         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6705
6706         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6707         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6708         value for constants.
6709
6710 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6711
6712         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6713         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6714         the algorithms.
6715
6716 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6717
6718         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6719
6720 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6721
6722         * include/wincrypt.h (KP_*): Add constants. Needed by
6723         CryptSetKeyParam() and other functions.
6724
6725 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6726
6727         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6728         Add constants, related to Console Accessibility.
6729
6730 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6731
6732         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6733         wrong value for constant.
6734
6735 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6736
6737         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6738
6739         * include/uxtheme.h: Cleanup.
6740         * include/tmschema.h: Cleanup.
6741
6742 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6743
6744         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6745         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6746
6747 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6748
6749         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6750
6751 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6752
6753         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6754         both winuser.h and dbt.h.
6755         * include/dbt.h (BSF_*, BSM_*): Likewise.
6756
6757         * include/winuser.h (struct tagRAWINPUT): Remove
6758         _ANONYMOUS_UNION tag from named union.
6759         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6760
6761 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6762
6763         * include/dhcpcdsk.h: New file.
6764         Note that MSDN is confused about whether it should start constant
6765         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6766         experience suggests it's DHCPCAPI with `C'.
6767
6768         * lib/dhcpcsvc.def: New file.
6769
6770 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6771
6772         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6773         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6774
6775         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6776         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6777         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6778         for use in RAWINPUTDEVICE.
6779
6780         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6781         (GetRawInputDeviceInfo[AW]): Ooops... there are
6782         ANSI/Unicode versions of this function.
6783
6784         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6785         are ANSI/Unicode versions of this function.
6786
6787 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6788
6789         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6790         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6791         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6792         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6793         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6794         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6795         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6796         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6797         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6798         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6799         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6800         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6801         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6802         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6803         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6804         RIDI_DEVICEINFO): Add constants.
6805
6806         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6807         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6808         RAWINPUTDEVICELIST): Add structures.
6809
6810         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6811         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6812         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6813
6814         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6815         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6816         GetRegisteredRawInputDevices): Add functions.
6817
6818 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6819
6820         * include/winable.h (BlockInput): Add function.
6821
6822         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6823         For use with WINDOWINFO structure.
6824
6825         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6826         Add function.
6827
6828         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6829         Add function.
6830
6831         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6832         Add function...
6833
6834         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6835         ...and duplicate.
6836
6837         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6838         Guard function...
6839
6840         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6841         ...and duplicate.
6842
6843         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6844         Guard function...
6845
6846         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6847         ...and duplicate.
6848
6849         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6850         HARDWAREINPUT, INPUT): Guard structures...
6851
6852         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6853         HARDWAREINPUT, INPUT): ...and duplicate.
6854
6855         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6856         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6857
6858         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6859         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6860
6861         * include/winuser.h: Move around some lines. Reformat according
6862         to recommended or dominant style. Remove FAR keyword.
6863
6864         * include/winable.h: Move around some lines.
6865
6866         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6867         LockWorkStation, UnhookWinEvent): Add functions.
6868
6869 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6870
6871         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6872         PW_CLIENTONLY): Add function and constant.
6873
6874         * lib/user32.def (PrintWindow): Add function.
6875
6876 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6877
6878         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6879
6880         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6881
6882 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6883
6884         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6885         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6886         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6887
6888         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6889
6890 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6891
6892         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6893         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6894         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6895
6896         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6897         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6898         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6899
6900         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6901         Add function.
6902
6903         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6904         Add functions.
6905
6906 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6907
6908         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6909         ACE_OBJECT_TYPE_PRESENT): Add constants.
6910         For use with OBJECTS_AND_NAME structure.
6911
6912 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6913
6914         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6915         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6916         void* instead.
6917
6918         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6919         PINHERITED_FROM[AW]): Add structures.
6920
6921         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6922
6923 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6924
6925         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6926
6927 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6928
6929         * lib/version.def (LIBRARY): Quote name.
6930
6931 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6932
6933         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6934         and constants.
6935
6936         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6937         GR_USEROBJECTS): Add functions and constants.
6938
6939         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6940         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6941
6942         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6943         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6944         constants.
6945
6946         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6947         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6948
6949 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6950
6951         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6952         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6953         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6954         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6955         BSF_RETURNHDESK): Add functions and constants.
6956
6957         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6958         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6959
6960         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6961         GetProcessDefaultLayout, SetProcessDefaultLayout,
6962         RealChildWindowFromPoint, SetProcessDefaultLayout,
6963         SwitchToThisWindow): Add functions.
6964
6965         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6966         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6967         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6968         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6969         RealChildWindowFromPoint, SetProcessDefaultLayout,
6970         SwitchToThisWindow): Add function.
6971
6972 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6973
6974         * include/winuser.h (DeregisterShellHookWindow): Add function.
6975
6976         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6977
6978         * lib/user32.def (EndTask): Add function.
6979
6980         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6981         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6982
6983         * include/winable.h: Reorder target macros.
6984
6985         * lib/*.def: Cleanup.
6986
6987 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6988
6989         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6990         function.
6991
6992         * lib/user32.def (AnimateWindow): Add function. By the way
6993         there are ~ 140 symbols missing from this file when comparing
6994         to user32.dll on Windows XP.
6995
6996 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6997
6998         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6999         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
7000         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
7001         AnimateWindow().
7002
7003 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7004
7005         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
7006         LPGUITHREADINFO): Add function and associated typedef...
7007
7008         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
7009         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
7010         seems to be required on older versions of Windows.
7011
7012 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7013
7014         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
7015         function. MSDN suggests using gluErrorUnicodeStringWIN
7016         instead of gluErrorString, as it allows both ANSI and Unicode
7017         error strings.
7018
7019         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
7020         returned pointer const for consistency reasons.
7021
7022 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7023
7024         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
7025         Function exists in glu32.def but is undocumented on MSDN.
7026         A Google search came up with this declaration.
7027
7028 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7029
7030         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
7031         headers from OpenGL Sample Implementation. Windows ships with
7032         GLU 1.2 so some constants and functions were removed. Then some
7033         typedef's and function declarations were reworked to look like
7034         the previous GL/glu.h.
7035
7036 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7037
7038         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
7039         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
7040         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
7041
7042         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
7043         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
7044         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
7045         and `enum THEMESIZE'.
7046
7047 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7048
7049         * include/uxtheme.h: New file.
7050         * include/tmschema.h: New file.
7051         * include/uxtheme.def: New file.
7052         * lib/test.c: Include uxtheme.h, tmschema.h.
7053
7054 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7055
7056         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
7057         Add defines.
7058
7059 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7060
7061         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7062         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
7063         <winable.h> as seems to be required on older versions of
7064         Windows.
7065
7066 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7067
7068         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
7069         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7070         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
7071         Add defines, the last one only on Windows XP...
7072
7073         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
7074         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7075         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
7076         them in <winable.h> as seems to be required on older
7077         versions of Windows.
7078
7079 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7080
7081         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
7082         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7083         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7084         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
7085         back into <winuser.h>...
7086
7087         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
7088         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7089         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7090         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
7091         comment out in <winable.h>. MSDN may say <winable.h> but this
7092         breaks many programs. It seems it used to be <winable.h> on
7093         older versions of Windows.
7094
7095 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
7096
7097         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
7098         Thanks to Will Levine  <willll@users.sourceforge.net>
7099
7100 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7101
7102         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
7103         const struct sockaddr*.
7104         (LPWSPCONNECT): Likewise.
7105         (LPWSPJOINLEAF): Likewise.
7106         (LPWSPSENDTO): Likewise.
7107         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
7108
7109 2003-09-15  Filip Navara  <xnavara@volny.cz>
7110
7111         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
7112         Add definitions.
7113
7114 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
7115
7116         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
7117         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
7118         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
7119         DISPLAY_DEVICE_MODESPRUNED): Define constants.
7120         (ChangeDisplaySettingsEx[A,W]): Add prototype.
7121
7122         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
7123         (EnumDisplayDevices[A,W]): Likewise.
7124
7125 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7126
7127         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
7128         throughout.
7129
7130 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7131
7132         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7133         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7134         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7135         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7136         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
7137         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7138         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7139         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
7140         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7141         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7142         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7143         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7144         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
7145         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7146         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7147         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
7148         with documentation.
7149         * include/olectl.h: Do #include <ocidl.h>.
7150         * include/ocidl.h: Don't #include <olectl.h>.
7151
7152 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7153
7154         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
7155         Change guards to use numeric constants, throughout.
7156
7157 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
7158
7159         * include/w32api.h: Increment version to 2.5.
7160         * Makefile.in: Ditto.
7161
7162 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
7163
7164         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
7165         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
7166
7167 2003-09-08  Filip Navara  <xnavara@volny.cz>
7168
7169         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
7170         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
7171
7172 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
7173
7174         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
7175         * include/winbase.h (_NT5, etc): Ditto.
7176
7177 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7178
7179         * lib/snmpapi.def (LIBRARY) Add library name.
7180         Remove '\r', throughout.
7181         * lib/wsnmp32.def: Remove '\r', throughout.
7182         * lib/igmpagnt.def: Likewise.
7183
7184 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7185
7186         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7187         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7188         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7189         (MWMO_*): Add flags.
7190
7191         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7192         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7193         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7194         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7195
7196 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7197
7198         * lib/test.c: Add vfw.h to includes.
7199         * include/mmsystem.h: Add #ifndef guard to definition of
7200         mmioFOURCC macro.
7201         * include/vfw.h: Protect __OBJC__ from COM declarations.
7202
7203 2003-08-26  Filip Navara  <xnavara@volny.cz>
7204
7205         * include/vfw.h: New file.
7206
7207 2003-08-26  Filip Navara  <xnavara@volny.cz>
7208
7209         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7210         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7211         PIO_COMPLETION_ROUTINE.
7212
7213 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7214
7215         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7216         includes.
7217
7218 2003-08-26  Filip Navara  <xnavara@volny.cz>
7219
7220         * include/snmp.h: New file.
7221         * include/winsnmp.h: New file.
7222         * include/mgmtapi.h: New file.
7223         * lib/snmpapi.def: New file.
7224         * lib/wsnmp32.def: New file.
7225         * lib/igmpagnt.def: New file.
7226         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7227         (SnmpMgrGetTrapEx): Ditto.
7228         (SnmpMgrMIB2Disk): Remove.
7229         (dbginit): Remove.
7230
7231 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7232
7233         * include/ddk/ntifs.h: Change all C++ style comments to C.
7234         * include/GL/gl.h: Ditto.
7235
7236 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7237
7238         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7239         (SFGAO_HIDDEN): Add define.
7240
7241 2003-08-25  Filip Navara  <xnavara@volny.cz>
7242
7243         * include/commctrl.h (ILCF_*): Add defines.
7244         (ILD_*): Ditto.
7245         (HDS_*): Ditto.
7246         (IPN_FIRST, IPN_LAST): Cast to UINT.
7247         (SBN_FIRST, SBN_LAST): Add defines.
7248         (PGN_*): Ditto.
7249         (HDF_JUSTIFYMASK): Fix typo.
7250         (HDM_*): Add defines.
7251         (HICF_*): Ditto.
7252         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7253         (TBSTATE_MARKED): Add define.
7254         (TBSTYLE_EX_*): Add defines.
7255         (TBCDRF_*): Ditto.
7256         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7257         (TB_*): Ditto.
7258         (TBN_*): Ditto.
7259         (TBNRF_*): Ditto.
7260         (TTF_*): Ditto.
7261         (TBCD_*): Ditto.
7262         (TBDDRET_*): Ditto.
7263         (TBIMHT_*): Ditto.
7264         (TTM_*): Ditto.
7265         (UDM_*): Ditto.
7266         (TBIF_BYINDEX): Define as hex constant.
7267         (CDIS_*): Add defines.
7268         (CDDS_SUBITEM): Add define.
7269         (LVIF_*): Add defines.
7270         (LVM_*): Ditto.
7271         (LVGIT_UNFOLDED): Add define.
7272         (TVM_): Add defines.
7273         (TVE_EXPANDPARTIAL): Add define.
7274         (TVGN_LASTVISIBLE): Ditto.
7275         (TVN_*): Add defines.
7276         (TVNRET_*): Add defines.
7277         (TCIF_STATE): Add define.
7278         (NM_TOOLTIPSCREATED): Ditto.
7279         (CCM_*): Add defines.
7280         (INFOTIPSIZE): Add numeric value.
7281         (ODT_LISTVIEW): Ditto.
7282         (MCM_GETMAXTODAYWIDTH): Ditto.
7283         (MCHT_*): Add defines.
7284         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7285         (PGF_*): Add defines.
7286         (PGM_*): Ditto.
7287         (TBINSERTMARK): Add structure.
7288         (LPIMAGEINFO) Add typedef.
7289         (LPHDHITTESTINFO): Ditto.
7290         (NMLVGETINFOTIP[AW]: Add structures.
7291         (NMTBCUSTOMDRAW): Add structure.
7292         (TTTOOLINFOA_V*_SIZE): Add macros.
7293         (TTTOOLINFOW_V1_SIZE): Ditto.
7294         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7295         (LVITEM[AW]: Ditto.
7296         (TCITEM[AW]):Ditto.
7297         (CCSIZEOF_STRUCT): Correct macro definition.
7298         (ListView_*): Add new macros.
7299         (HIMAGELIST): Correct typedef.
7300         (HTREEITEM): Ditto.
7301
7302 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7303
7304         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7305         TCHITTESTINFO for backward compatibility.
7306         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7307         compatibility.
7308
7309 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7310
7311         * include/objidl.h (COBJMACROS): Define macros only
7312         if using C interace.
7313         * include/unknwn.h: Ditto.
7314         * include/comcat.h: Ditto.
7315
7316 2003-08-24  Filip Navara  <xnavara@volny.cz>
7317
7318         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7319         PSH_NOCONTEXTHELP): Define.
7320         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7321         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7322         (LPDLGTEMPLATE[AW]): Add typedefs.
7323
7324 2003-08-22  Filip Navara  <xnavara@volny.cz>
7325
7326         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7327         Add prototypes.
7328         BuildImpersonateTrustee[AW]): Add prototypes.
7329         GetMultipleTrustee[AW]): Add prototypes.
7330         GetMultipleTrusteeOperation[AW]): Add prototypes.
7331
7332 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7333
7334         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7335
7336 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7337
7338         * include/shlobj.h (IPersistFolder::GetClassID):
7339         Correct declaration.
7340         (CMF_*) Add missing defines.
7341
7342 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7343
7344         * include/winuser.h (DC_BUTTONS): Add define.
7345
7346 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7347
7348         * include/winuser.h (DC_GRADIENT): Add define.
7349
7350 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7351
7352         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7353         older TBSTYLE_* constants.
7354
7355 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7356
7357         * include/commctrl.h (TB_*) Group defines together.
7358
7359 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7360
7361         * include/winuser.h (ICON_SMALL2): Define.
7362         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7363         Define.
7364         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7365         (IDragSourceHelper) Define interface.
7366         (IDropTargetHelper): Likewise.
7367         (IExtractIcon): Unicode it.
7368         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7369         OnStateChange and IncludeObject methods.
7370
7371 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7372
7373         * include/commctrl.h (TreeView_GetScrollTime,
7374         TreeView_SetScrollTime): Define macros.
7375         * include/winuser.h (GetShellWindow): Add prototype.
7376         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7377
7378 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7379
7380         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7381         IID_IDragSourceHelper): Declare.
7382         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7383         IID_IDragSourceHelper): Define.
7384
7385 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7386
7387         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7388         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7389         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7390
7391 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7392
7393         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7394         CGID_ShellServiceObject): Remove definitions.
7395         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7396
7397 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7398
7399         * include/shlobj.h (SHELLSTATE): Add structure.
7400         (SHGetSetSettings): Add prototype.
7401         (SHGetSettings): Add prototype.
7402         * lib/shell32.def (SHGetSetSettings): Add stub.
7403
7404 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7405
7406         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7407         (Header_OrderToIndex): Add macro.
7408         (Header_GetOrderArray): Add macro.
7409
7410         * include/commdlg.h (FR_MATCHALEFHAMZA,
7411         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7412
7413 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7414
7415         * include/commctrl.h (TVM_GETSCROLLTIME,
7416         TVM_SETSCROLLTIME): Add defines.
7417
7418 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7419
7420         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7421         (SHGetInstanceExplorer): Correct return type.
7422         (SHGetFolderPath[AW]): Likewise.
7423         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7424         for report.
7425
7426 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7427
7428         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7429
7430 2003-08-01  Filip Navara  <xnavara@volny.cz>
7431
7432         * include/winldap.h: New file.
7433         * include/ntldap.h: New file.
7434         * include/winber.h: New file.
7435         * lib/winldap32.def: New file.
7436
7437 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7438
7439         * include/ddk/atm.h: Remove stray '.';
7440
7441 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7442
7443         * include/ddk/winddk.h: Remove trailing ';' from macros,
7444         throughout. Add () around defines with cast returns, throughout.
7445
7446 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7447
7448         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7449         (SFGAOF, SHGDNF): Add typedef's.
7450         (SHCONTF): Extend enum.
7451
7452 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7453
7454         * include/shellapi.h: Include all structs within pshpack2.h/
7455         poppack.h block.
7456
7457 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7458
7459         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7460         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7461         _WIN32_WINDOWS, not WINVER.
7462         (AllowSetForegroundWindow,LockSetForegroundWindow,
7463         SetLayeredWindowAttributes): Likewise.
7464         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7465         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7466         Add stubs.
7467
7468 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7469
7470         * include/objidl.h (IMalloc): Fix typo.
7471
7472 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7473
7474         * include/dkk/ntifs.h: Fix typo in guard for
7475         #pragma GCC system_header.
7476
7477 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7478
7479         * include/objidl.h (PropVariant): Add CHAR cVal field
7480         to union.
7481         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7482         FMTID_UserDefinedProperties): Declare.
7483
7484 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7485
7486         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7487
7488 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7489
7490         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7491         DUPLICATE_SAME_ACCESS): Remove defines.
7492         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7493         ddk/ntapi.h defines.
7494         (SEM_*) : Likewise.
7495         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7496         ddk/ntifs.h defines.
7497         (FILE_*): Likewise.
7498         (MEM_IMAGE, SEC_*): Likewise.
7499         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7500         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7501         (TOKEN_*): Sync with ddk/ntifs.h defines.
7502         * include/ddk/ntapi.h: Add comments noting definitions in
7503         winbase.h.
7504         * include/ddk/ntifs.h: Add comments noting definitions in
7505         winnt.h.
7506         * include/ddk/winddk.h: Add comments noting definitions in
7507         winnt.h.
7508
7509 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7510
7511         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7512         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7513
7514 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7515
7516         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7517
7518 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7519
7520         Clean up warnings in ddk.
7521
7522         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7523         conditional on  __cplusplus.
7524         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7525         defines, throughout.
7526         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7527         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7528         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7529         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7530         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7531         defines, throughout.
7532         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7533         defines, throughout. Remove trailing semicolon from *_S 'structure'
7534         macro expansion, throughout. Remove trailing semicolon from
7535         DECLARE_UNKNOWN_STRUCT macro expansion.
7536         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7537         _ANONYMOUS_UNION.
7538         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7539         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7540         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7541         Add _ANONYMOUS_UNION.
7542         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7543         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7544         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7545         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7546         match proto in ntapi.h.
7547         (ZwSetInformationObject): Likewise.
7548         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7549         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7550         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7551         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7552         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7553         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7554         last comma.
7555         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7556         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7557         trailing semicolon when expanding macro.
7558         (GENERAL_LOOKASIDE_S): Likewise.
7559         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7560         Change inline to __inline, throughout.
7561         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7562
7563 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7564
7565         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7566         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7567         KPRIORITY.
7568         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7569         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7570         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7571         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7572         to anonymous structs.
7573
7574 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7575
7576         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7577
7578         * include/winuser.h (mouse_event): Correct type of fifth param,
7579         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7580
7581 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7582
7583         * include/winnt.h (HANDLE): Define based on STRICT filter.
7584         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7585         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7586
7587 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7588
7589         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7590         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7591         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7592         for report.
7593
7594 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7595
7596         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7597
7598 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7599
7600         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7601         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7602         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7603         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7604         (TPM_RECURSE): Add guard for Win98/Win2K.
7605         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7606
7607 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7608
7609         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7610         avoid user namespace conflicts.
7611
7612 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7613
7614         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7615         _IE3, _IE4, _IE5, _IE6): Add definitions.
7616         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7617         >= Win98.
7618         Change existing guards to use the above macro names as appropriate.
7619         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7620         Note: Also added to mingw/include/_mingw.h.
7621
7622 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7623
7624         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7625         PathFindSuffixArrayA, PathFindSuffixArrayW,
7626         PathFindExtensionA, PathFindExtensionW, StrStrW
7627         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7628         explicit type.
7629
7630 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7631
7632         * include/richedit.h (PARAFORMAT2): Add definition.
7633         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7634         missing constants.
7635
7636 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7637
7638         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7639         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7640         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7641         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7642
7643 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7644
7645         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7646         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7647         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7648         that these are obsolete no-ops.
7649
7650 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7651
7652         * include/winbase.h (GetProcessWorkingSetSize,
7653         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7654         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7655         Correct prototypes.
7656
7657 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7658
7659         * include/winuser.h (TPM_RECURSE): Add define.
7660
7661 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7662
7663         * lib/test.c: #include <powrprof.h>.
7664
7665 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7666
7667         * include/powerprof.h: New file.
7668         * lib/powerprof.def: New file.
7669
7670 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7671
7672         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7673         protection.
7674
7675 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7676
7677         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7678         hInstance members to HINSTANCE.
7679         Thanks to: Brenden T. <brenden@rcsis.com>
7680
7681 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7682
7683         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7684         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7685
7686 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7687
7688         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7689         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7690         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7691         Remove.
7692         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7693
7694 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7695
7696         * lib/oleacc.def: New file.
7697         * include/winable.h: New file.
7698         * include/oleacc.h: Add extern "C" guard.
7699         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7700         (AccessibleChildren, AccessibleObjectFromEvent,
7701         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7702         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7703         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7704         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7705         * include/winuser.h (NotifyWinEvent): Add prototype.
7706         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7707         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7708         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7709         OBJID_SOUND): Move from here to...
7710         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7711         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7712         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7713         OBJID_SOUND): Here, as per documentation.
7714         * lib/test.c: Include winable.h.
7715         * lib/user32.def (NotifyWinEvent): Add missing export.
7716
7717 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7718
7719         * include/winbase.h (HeapCompact): Correct prototype.
7720         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7721         SLIST_HEADER): Add.
7722
7723 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7724
7725         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7726
7727 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7728
7729         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7730
7731 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7732
7733         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7734         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7735
7736 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7737
7738         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7739         lpGlyphs field to LPWSTR.
7740
7741 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7742
7743         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7744         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7745         (PP_*): Add defines.
7746         (CryptContextAddRef): Add prototype.
7747         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7748
7749 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7750
7751         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7752
7753 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7754
7755         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7756         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7757         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7758         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7759         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7760         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7761         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7762         readability.
7763         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7764         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7765
7766 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7767
7768         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7769         Unname anonymous unions if NONAMELESSUNION not defined.
7770
7771 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7772
7773         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7774
7775 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7776
7777         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7778         anonymous unions as GCC extension.
7779
7780 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7781
7782         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7783         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7784         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7785         commented out).
7786         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7787
7788 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7789
7790         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7791         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7792         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7793
7794 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7795
7796         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7797         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7798         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7799         IProvideClassInfo2,IConnectionPointContainer,
7800         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7801         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7802         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7803         IPicture,IPictureDisp): Move from here to...
7804         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7805         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7806         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7807         IProvideClassInfo2,IConnectionPointContainer,
7808         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7809         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7810         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7811         IPicture,IPictureDisp): Here, as per documentation.
7812
7813 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7814
7815         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7816         * include/winbase.h (TerminateJobObject,
7817         AssignProcessToJobObject): Likewise.
7818         * include/servprov.h: New header.
7819         * lib/test.c: Include servprov.h.
7820
7821 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7822
7823         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7824         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7825         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7826         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7827         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7828         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7829
7830 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7831
7832         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7833         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7834         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7835
7836 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7837
7838         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7839         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7840         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7841         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7842         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7843         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7844         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7845
7846 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7847
7848         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7849
7850 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7851
7852         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7853         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7854
7855 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7856
7857         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7858         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7859         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7860
7861 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7862
7863         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7864
7865 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7866
7867         * include/oaidl.h (ITypeMarshal): Add interface.
7868
7869 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7870
7871         * include/winioctl.h: Clean up formatting.
7872         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7873         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7874         (DISK_CACHE_INFORMATION): Likewise.
7875         (DISK_DETECTION_INFO): Likewise.
7876         (DISK_PARTITION_INFO): Likewise.
7877         (PARTITION_INFORMATION_EX): Likewise.
7878         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7879
7880 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7881
7882         * include/winbase.h (DeleteVolumeMountPoint[AW],
7883         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7884         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7885         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7886         SetVolumeMountPoint[AW]): Add prototypes.
7887         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7888         IOCTL_DISK_SET_PARTITION_INFO_EX,
7889         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7890         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7891         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7892         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7893         IOCTL_DISK_GET_CACHE_INFORMATION,
7894         IOCTL_DISK_SET_CACHE_INFORMATION,
7895         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7896         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7897         FSCTL_MOVE_FILE): Define.
7898         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7899         DISK_CACHE_INFORMATION,
7900         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7901         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7902         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7903         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7904         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7905         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7906         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7907         MOVE_FILE_DATA,
7908         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7909         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7910         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7911         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7912         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7913         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7914         F3_240M_512, and F3_32M_512.
7915         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7916         stubs.
7917
7918 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7919
7920         * include/wingdi.h (DM_SPECVERSION): Define.
7921         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7922         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7923         appropriate _WIN32_WINNT values.
7924
7925 2003-04-15  Chris January  <chris@atomice.net>
7926
7927         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7928         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7929
7930 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7931
7932         * include/winuser.h (VK_*): Add missing defines.
7933
7934 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7935
7936         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7937         documented typedefs for struct _NM_UPDOWN.
7938         Add defines for backward comapatibility.
7939         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7940         * include/wininet.h (IRF_*): Add missing defines.
7941
7942 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7943
7944         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7945
7946 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7947
7948         * include/sspi.h: Add comment for FreeCredentialsHandle.
7949
7950 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7951
7952         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7953
7954 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7955
7956         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7957
7958 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7959
7960         * lib/uuid.c (IID_IHTML*): Move definitions to...
7961         * lib/mshtml-uuid.c: New file.
7962         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7963
7964 2003-03-30  Michael Sazonov  <traip@comset.net>
7965
7966         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7967         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7968         IHTMLImgElement): Add interface definitions.
7969
7970 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7971
7972         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7973         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7974         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7975         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7976         RC_INVOKED guard.
7977         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7978         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7979
7980 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7981
7982         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7983
7984 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7985
7986         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7987         TranslateName[AW]): Add prototypes.
7988         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7989         TranslateName[AW]): Add stubs.
7990         * lib/test.c: Include secext.h.
7991
7992 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7993
7994         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7995         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7996         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7997         _SpinLock.
7998
7999 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
8000
8001         * include/w32api.h: Increment version to 2.4.
8002         * Makefile.in: Ditto.
8003
8004 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
8005
8006         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
8007         Move structure from here...
8008         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
8009
8010         * include/ddk/ntapi.h (JOBOBJECT_*):
8011         Remove structures and enums definitions.
8012         (JOB_OBJECT*): Move defines from here...
8013         * include/winnt.h (JOB_OBJECT* ): To here.
8014
8015         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
8016         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8017         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8018         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8019         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8020         SYSTEM_POWER_CAPABILITIES): Move enums, structures
8021         and associated defines from here ...
8022         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
8023         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8024         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8025         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8026         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8027         SYSTEM_POWER_CAPABILITIES):To here.
8028
8029         * include/ddk/winddk.h (DEVICE_POWER_STATE,
8030         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
8031         from here...
8032         * include/winnt.h (DEVICE_POWER_STATE,
8033         SYSTEM_POWER_STATE, POWER_ACTION): To here.
8034
8035 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
8036
8037         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
8038         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
8039         (NdisUpdateSharedMemory): Likewise.
8040         (NdisMFreeSharedMemory: Likewise.
8041         (NdisMMapIoSpace: Likewise.
8042
8043 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
8044
8045         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
8046         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
8047         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
8048
8049 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
8050
8051         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
8052         (EnumResourceNames[AW]): Ditto.
8053         (EnumResourceTypes[AW]): Ditto.
8054         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
8055
8056 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
8057
8058         * include/winuser.h (SendInput): Add prototype.
8059         * lib/user32.def (SendInput): Add stub.
8060
8061 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
8062
8063         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
8064         (FSCTL_DELETE_REPARSE_POINT): Likewise.
8065
8066 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
8067
8068         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
8069         (JOBOBJECT_*): Define corresponding structures.
8070
8071 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
8072
8073         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
8074         typedef.
8075
8076 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
8077
8078         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
8079         (Process32{First,Next}{,W}): Ditto.
8080         (Thread32{First,Next}): Ditto.
8081         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
8082
8083 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
8084
8085         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
8086         Thanks to Jim Barton <jmbarton@users.sf.net>.
8087
8088 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
8089
8090         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
8091         member SectionAlignment.
8092
8093 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
8094
8095         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
8096         warnings.
8097         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
8098         * Makefile.in (bindist): Correct process.
8099         * lib/Makefile.in (install): Ditto.
8100         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
8101
8102 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
8103
8104         * include/rasdlg.h: New file.
8105         * lib/rasdlg.def: New file.
8106         * lib/test.c: Include rasdlg.h.
8107
8108 2003-03-06  Christopher January  <chris@atomice.net>
8109
8110         * include/winbase.h (FindFirstVolume): Add declaration.
8111         (FindNextVolume): Add declaration.
8112         (FindVolumeClose): Add declaration.
8113         (GetSystemTimes): Add declaration.
8114         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
8115
8116 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
8117
8118         *lib/kernel32.def (GetSystemTimes): Add stub.
8119
8120 2003-03-04  Heiko Gerdau  <hg@technosis.de>
8121
8122         * oleidl.h (IOleObject): Correct GetUserType prototype.
8123         (IViewObject2): Correct GetExtent prototype.
8124         * olectl.h (DISPIP_): Add new defines
8125         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
8126
8127 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8128
8129         * include/olectl.h (OleLoadPictureEx) Add prototype.
8130         (OleLoadPictureFile): Ditto.
8131         (OleLoadPictureFileEx): Ditto.
8132         (OleLoadPicturePath): Ditto.
8133         (OleSavePictureFile): Ditto.
8134
8135 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8136
8137         * include/objbase.h (CoAddRefServerProcess): Add prototype.
8138         (CoAddReleaseServerProcess): Ditto.
8139         (CoResumeClassObjects): Ditto.
8140         (CoSuspendClassObjects): Ditto.
8141         * include/oleauto.h (V_I1): Define.
8142         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
8143
8144 2003-03-01  Heiko Gerdau  <hg@technosis.de>
8145
8146         * include/oleidl.h (USERCLASSTYPE): Add enum.
8147         * include/ocidl.h (IObjectWithSite): Add interface.
8148
8149 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
8150
8151         Fixup UNICODE thinko in 2003-02-22 patch.
8152         * include/wingdi.h (AddFontMemResourceEx): Add.
8153         (RemoveFontMemResourceEx): Ditto.
8154         (AddFontMemResourceEx[AW]): Remove.
8155         (RemoveFontMemResourceEx[AW]): Ditto
8156         * lib/gdi32.def: (AddFontResourceEx): Add.
8157         (RemoveFontMemResourceEx): Ditto.
8158         (AddFontMemResourceEx[AW]): Remove.
8159         (RemoveFontResourceEx[AW]): Ditto.
8160
8161 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
8162
8163         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
8164         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
8165
8166 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
8167
8168         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
8169         (RemoveFontMemResourceEx[AW]): Ditto
8170         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
8171         (RemoveFontMemResourceEx[AW]): Ditto.
8172
8173 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
8174
8175         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
8176         (NtCurrentTeb): Remove.
8177
8178 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8179
8180         * include/wsahelp.h: Remove ';' after closing
8181         #ifdef __cplusplus brace.
8182         * include/ws2spi.h: Likewise.
8183
8184 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8185
8186         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8187         (GlobalMemoryStatusEx): Add prototype.
8188         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8189
8190 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8191
8192         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8193
8194 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8195
8196         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8197         (RemoveFontResourceEx[AW]): Ditto
8198         (FR_PRIVATE): Define.
8199         (FR_NOT_ENUM): Define.
8200         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8201         (RemoveFontResourceEx[AW]): Ditto.
8202
8203 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8204
8205         * include/w32api.h: Increment version to 2.3.
8206         * Makefile.in: Ditto.
8207
8208 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8209
8210         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8211         (Ke386QueryToAccessMap): Ditto.
8212         (Ke386SetIoAccessMap): Ditto.
8213         Thanks to Marcel Telka <telka@users.sf.net>
8214         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8215         * include/security.h: Include secext.h.
8216         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8217         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8218         * include/GL/gl.h: Remove include of glext.h.
8219         Thanks to Greg Couch <gregcouch@users.sf.net>
8220
8221 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8222
8223         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8224         using GUID_DEFINED instead.
8225         * include/sqltypes.h: Ditto.
8226         * include/winnt.h: Ditto.
8227         * include/ddk/scsiwmi.h: Ditto.
8228
8229 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8230
8231         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8232         prototypes.
8233         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8234
8235 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8236
8237         * include/commctrl.h (TCM_*): Add missing defines.
8238
8239 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8240             Danny Smith  <dannysmith@users.sourceforge.net>
8241
8242         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8243         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8244         for (_WIN32_IE >= 0x0400).
8245         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8246         fields for (_WIN32_IE >= 0x0400).
8247
8248 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8249
8250         * include/winbase.h (CreateFiber): Change first parameter
8251         to SIZE_T.
8252         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8253         if (_WIN32_WINNT >= 0x0500).
8254
8255 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8256
8257         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8258         Add missing typedefs.
8259         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8260         prototypes.
8261         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8262
8263 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8264
8265         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8266         define.
8267         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8268
8269 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8270
8271         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8272         define.
8273         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8274         definition.
8275         (WAIT_FAILED): Cast to DWORD.
8276         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8277         definition.
8278
8279 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8280
8281         * include/winerror.h: Protect against multiple
8282         definition of WSA* error codes.
8283         * include/winsock.h: Likewise.
8284         * include/winsock2.h: Likewise.
8285
8286 2003-01-27  Bang Dong-Heui
8287             Bang Jun-Young  <junyoung@netbsd.org>
8288
8289         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8290         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8291         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8292
8293
8294 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8295
8296         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8297         (WINVER >= 0x501).
8298
8299 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8300
8301         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8302         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8303         fields for (WINVER >= 0x501).
8304
8305 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8306
8307         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8308         Add stubs.
8309         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8310         options.
8311
8312 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8313
8314         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8315         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8316
8317 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8318
8319         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8320         SE_REGISTRY_WOW64_32KEY.
8321         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8322
8323 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8324
8325         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8326         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8327         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8328
8329 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8330
8331         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8332
8333 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8334
8335         * lib/dxguid.c: Don't #include <objbase.h>.
8336         * include/unknwn.h: Partially revert change of 2002-12-26.
8337         Don't include <ole2.h>.
8338
8339 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8340
8341         * lib/dinput.c: Don't #include <objbase.h>.
8342
8343 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8344
8345         * include/windows.h (ole2.h):Do #include for
8346         __WATCOMC__.
8347
8348 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8349
8350         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8351         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8352         definition.
8353         (WHEEL_PAGESCROLL): Likewise.
8354         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8355
8356 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8357
8358         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8359         (WHEEL_PAGESCROLL): Add define.
8360
8361 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8362
8363         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8364         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8365         compatability. Add RECT field. Add UNICODE mappings for new
8366         names.
8367         (tagNMREBARCHEVRON): Add struct and typedefs for
8368         _WIN32_IE >= 0x0500.
8369
8370 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8371
8372         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8373         (LVHITTESTINFO): Likewise.
8374
8375         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8376         (GRADIENT_RECT): Likewise.
8377
8378 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8379
8380         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8381         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8382         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8383         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8384         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8385         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8386         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8387         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8388         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8389         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8390         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8391         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8392         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8393         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8394         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8395         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8396         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8397         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8398         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8399         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8400         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8401         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8402         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8403         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8404         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8405         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8406         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8407         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8408         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8409         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8410         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8411         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8412         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8413         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8414         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8415         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8416         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8417         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8418         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8419         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8420         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8421         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8422         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8423         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8424         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8425         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8426         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8427         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8428         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8429         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8430         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8431         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8432         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8433         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8434         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8435         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8436         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8437         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8438         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8439         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8440         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8441         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8442         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8443         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8444         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8445         Add missing error codes.
8446
8447 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8448
8449         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8450         asm code.
8451         (GetFiberData): Likewise.
8452
8453 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8454
8455         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8456         asm code.
8457         (GetFiberData): Likewise.
8458
8459 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8460
8461         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8462         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8463         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8464         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8465         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8466         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8467         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8468         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8469         error codes.
8470         Re-sort codes.
8471
8472 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8473
8474         * include/winspool.h (PRINTER_INFO_6): Add.
8475         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8476
8477 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8478
8479         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8480
8481         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8482         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8483         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8484         Add stubs.
8485
8486 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8487
8488         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8489         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8490
8491 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8492
8493         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8494
8495 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8496
8497         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8498         VIETNAMESE_CHARSET): Remove duplicate defines.
8499         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8500
8501 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8502
8503         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8504         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8505
8506 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8507
8508         * include/unknwn.h: Include windows.h and ole2.h before header
8509         guard to avoid circular inclusion of COM headers.
8510
8511 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8512
8513         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8514         ReuseDDElParam): Use __WIN64 compatible typedefs.
8515
8516 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8517
8518         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8519         lpInheritProperty member const.
8520         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8521         const.
8522
8523 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8524
8525         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8526         COM_NO_WINDOWS_H.
8527         * include/unknwn.h: Ditto.
8528
8529 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8530
8531         * include/imm.h (ImmGetCompositionFont[AW],
8532         ImmSetCompositionFont[AW]): Add NOGDI guard.
8533
8534 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8535
8536         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8537         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8538         before using.
8539         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8540         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8541         definition.
8542         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8543         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8544         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8545         definition.
8546         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8547         (LPCGUID): Likewise.
8548         * include/ddk/tdi.h: Close "Listen flags" comment.
8549         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8550         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8551         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8552         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8553         * include/ddk/win2k.h: Likewise.
8554         * include/ddk/winddi.h: Likewise.
8555         * include/ddk/winddk.h: Likewise.
8556         * include/ddk/winnt4.h: Likewise.
8557         * include/ddk/ws2san.h: Likewise.
8558         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8559         * include/ddk/video.h: Don't process rest of file ifdef
8560         __WINDDI_H.
8561         * include/ddk/winddi.h: Don't process rest of file ifdef
8562         __VIDEO_H.
8563         * include/ddk/usb.h: Don't process rest of file ifdef
8564         __USBDI_H.
8565         * include/ddk/usbdi.h: Don't process rest of file ifdef
8566         __USB_H.
8567         * include/ddk/usbcamdi.h: Don't process rest of file if
8568         !defined(__USB_H) && !defined(__USBDI_H)
8569
8570 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8571
8572         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8573         prototypes.
8574         * include/winuser.h (GetAncestor) Add prototype.
8575         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8576         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8577         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8578         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8579         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8580         defines.
8581         * lib/user32.def (GetAncestor@8): Add stub.
8582
8583 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8584
8585         * include/windows.h: Guard inclusion of wingdi.h,
8586         commdlg.h, winspool.h, ole2.h with NOGDI.
8587         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8588         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8589         Guard with NOGDI.
8590
8591 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8592
8593         * include/oleacc.h (SELFLAG_*): Change to enum.
8594
8595 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8596
8597         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8598         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8599
8600 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8601
8602         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8603         to UINT.
8604         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8605
8606 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8607
8608         * include/winuser.h (AllowSetForegroundWindow,
8609         LockSetForegroundWindow): Add prototypes.
8610         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8611         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8612         * lib/winuser.def (AllowSetForegroundWindow,
8613         LockSetForegroundWindow): Add stubs.
8614
8615 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8616
8617         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8618         UNICODE mappings.
8619         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8620         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8621         compatability. Add lParam field. Add UNICODE mappings for new
8622         names.
8623
8624 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8625
8626         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8627         Wrap with pshpack2.h/poppack.h to correct alignment.
8628
8629 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8630
8631         * include/commctrl.h (LVBKIF_*): Add defines.
8632         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8633         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8634         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8635         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8636         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8637         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8638         (ListView_GetBkImage): Add define.
8639         (ListView_SetBkImage): Add define.
8640         (LVBKIMAGE): Add structures and typedefs.
8641
8642 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8643
8644         * include/w32api.h: Increment to version 2.2
8645         * Makefile.in: Ditto.
8646
8647 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8648
8649         * lib/Makefile.in (dist, install): Correct the install destinations.
8650         * lib/ddk/Makefile.in (dist, install): Ditto.
8651
8652 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8653
8654         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8655         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8656         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8657         in definitions.
8658         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8659         IID_IOleControlSite89): Remove.
8660
8661 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8662
8663         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8664         (IID_IStdMarshalInfo): Ditto.
8665
8666 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8667
8668         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8669         (IID_IPersistStorage): Ditto.
8670
8671 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8672
8673         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8674         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8675         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8676         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8677         Correct definitions.
8678
8679 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8680
8681         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8682         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8683         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8684         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8685         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8686         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8687         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8688         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8689         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8690         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8691         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8692         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8693         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8694         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8695         xfilter.h): Change comment to refer w32api package, not MinGW.
8696
8697 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8698
8699         * include/ddk/ntddk.h: Include winnt.h as system header.
8700
8701 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8702
8703         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8704         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8705         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8706         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8707         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8708         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8709         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8710         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8711         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8712         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8713         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8714         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8715         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8716         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8717         xfilter.h): Fix typo in disclaimer comment.
8718
8719 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8720
8721         * include/exdisp.h: Include oaidl.h as system header.
8722
8723 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8724
8725         * include/w32api.h (__W32API_VERSION): Fix.
8726
8727 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8728
8729         * lib/uuid.c (IID_ICatInformation): Correct definition.
8730
8731 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8732
8733         * include/oleauto.h (DeregisterTypeLib): Remove.
8734         (UnRegisterTypeLib): Add prototype.
8735
8736 2002-11-07  Christopher January  <chris@atomice.net>
8737
8738         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8739
8740 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8741
8742         * include/winnt.h (VerSetConditionMask): Add prototype.
8743         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8744
8745 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8746
8747         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8748         definitions and ANSI/UNICODE mappings.
8749         Cleanup whitespace.
8750
8751 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8752
8753         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8754         * configure.in: Ditto.
8755         * lib/Makefile.in: Ditto.
8756         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8757         autoconf-2.53.
8758         * configure: Regenerate.
8759
8760 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8761
8762         * include/windows.h: Don't include basetyps.h.
8763         * include/objfwd.h: Do include basetyps.h.
8764
8765 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8766
8767         * include/objbase.h: Include rpc.h and rpcndr.h
8768         before header guard.
8769
8770 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8771
8772         * include/olectl.h (PROPPAGEINFO): Change type of
8773         field cb to ULONG.
8774
8775 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8776
8777         * lib/ntdll.def (RtlAcquireResourceExclusive,
8778         RtlAcquireResourceShared, RtlDeleteResource,
8779         RtlInitializeResource, RtlReleaseResource,
8780         RtlTimeToSecondsSince1970) : Added missing exports.
8781
8782 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8783
8784         * include/oleacc.h: New file.
8785         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8786         (OBJID_*) Add defines.
8787         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8788         * lib/test.c: Include oleacc.h.
8789
8790 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8791
8792         * include/ddk: New subdir.
8793         * lib/ddk: Ditto.
8794         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8795         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8796         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8797         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8798         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8799         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8800         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8801         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8802         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8803         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8804         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8805         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8806         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8807         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8808         xfilter.h): New files.
8809         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8810         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8811         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8812         win32k.def): Ditto.
8813
8814 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8815
8816         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8817         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8818         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8819         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8820         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8821         RtlAddAccessAllowedAce, RtlCreateAcl,
8822         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8823         RtlGetAce, RtlGetControlSecurityDescriptor,
8824         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8825         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8826         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8827         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8828         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8829         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8830         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8831         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8832         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8833         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8834         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8835         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8836         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8837
8838 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8839
8840         *include/windef.h (WPARAM): Update typedef.
8841         (LPARAM): Ditto.
8842         (LRESULT): Ditto.
8843
8844 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8845
8846         * include/shlobj.h (CSIDL_*): Add defines.
8847
8848 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8849
8850         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8851         has been included first.
8852
8853 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8854
8855         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8856         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8857         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8858
8859 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8860
8861         * include/winuser.h (DS_SHELLFONT): Define.
8862
8863 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8864
8865         * include/winnt.h (VER_SUITE_BLADE): Define.
8866
8867 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8868
8869         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8870         Add _WIN32_IE guard. Correct prototype for wide version.
8871         (SHGetFolderPath): Add comment on shfolder.dll.
8872         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8873         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8874
8875 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8876
8877         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8878         * lib/shfolder.def: New file.
8879
8880 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8881
8882         * include/winsock.h (timeval): Guard struct and associated
8883         macros with _TIMEVAL_DEFINED.
8884         * include/winsock2.h (timeval): Likewise.
8885
8886 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8887
8888         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8889         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8890         SHCreateShellItem,SHEmptyRecycleBin[AW],
8891         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8892         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8893         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8894         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8895         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8896         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8897         SHLoadNonloadedIconOverlayIdentifiers,
8898         SHOpenFolderAndSelectItems,SHParseDisplayName,
8899         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8900         SHSetLocalizedName,SHSetUnreadMailCountW,
8901         SHUpdateRecycleBinIcon: Add missing stubs.
8902
8903 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8904
8905         * include/windef.h (WINVER): Add documentation.
8906         (_WIN32_WINNT): Ditto.
8907         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8908
8909 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8910
8911         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8912
8913 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8914
8915         * include/winbase.h (AllocateUserPhysicalPages,
8916         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8917         FreeUserPhysicalPages): Add prototypes.
8918         * lib/kernel32.def: Add function stubs for above.
8919
8920 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8921
8922         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8923         Add WINVER guards for dialog box command id defines.
8924
8925 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8926
8927         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8928
8929 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8930
8931         * include/wincon.h: Define GetConsoleWindow(void).
8932
8933 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8934
8935         * include/w32api.h: Increment version to 2.1.
8936         * Makefile.in: Ditto.
8937
8938 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8939
8940         * include/winsock2.h (SOCKET_ADDRESS): Define if
8941         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8942         (CSADDR_INFO): Ditto.
8943         (nspapi.h) : Don't include. Removed FIXME comment.
8944         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8945         __CSADDR_T_DEFINED is not defined.
8946         (CSADDR_INFO): Ditto.
8947         (BLOB): Add structure and typedef if not already defined.
8948         (NS_*): Add defines.
8949         (SERVICE_*): Ditto.
8950         (SERVICE_ADDRESS): Add structure and typedefs.
8951         (SERVICE_ADDRESSES): Ditto.
8952         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8953         (LPSERVICE_ASYNC_INFO): Add typedef.
8954         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8955         mappings.
8956         * include/wsipx.h: New file.
8957         * include/svcguid.h: New file.
8958         * lib/test.c: Include wspix.h and svcguid.h.
8959
8960 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8961
8962         * include/wsahelp.h: New file.
8963         * lib/test.c: Include wsahelp.h.
8964
8965 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8966
8967         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8968         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8969
8970 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8971
8972         * include/ws2spi.h: Modify comment about being part of
8973         mingw32 package.
8974         (winsock2.h): Change "" to <>.
8975
8976 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8977
8978         * include/ws2spi.h: New file.
8979         * lib/test.c: Include ws2spi.h.
8980
8981 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8982
8983         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8984         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8985         functions.
8986
8987 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8988
8989         * include/winuser.h (CURSOR_SHOWING) Add define.
8990         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8991
8992 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8993
8994         * include/winerror.h: Cast OLE error codes to HRESULT.
8995         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8996
8997 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8998
8999         * include/wincrypt.h (ALG_*): Add defines.
9000         (CALG_*): Ditto.
9001         (CRYPT_*): Ditto.
9002         (PP_*): Ditto.
9003         (PROV_*): Ditto.
9004         (PRIVATEKEYBLOB): Add define.
9005
9006 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
9007
9008         * include/shlobj.h (SHGetFolderPath): Add define.
9009         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
9010         (SHGetFolderPath): Ditto.
9011
9012 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9013
9014         * include/commdlg.h: Don't include COM headers or use
9015         COM-dependent symbols if __OBJC__.
9016
9017 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9018
9019         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
9020         Add prototypes.
9021
9022 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
9023
9024         * include/shellapi.h (FOF_NOERRORUI): Add define.
9025
9026 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
9027
9028         * include/objidl.h (IEnumMoniker): Put 'interface' back.
9029
9030 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
9031
9032         * include/objidl.h (IEnumMoniker): Correct declaration.
9033
9034 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
9035
9036         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
9037
9038 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
9039
9040         * include/commctrl.h: Whitespace change.
9041
9042 2002-08-09  Lars Munch  <lars@segv.dk>
9043
9044         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
9045         struct name _TVHITTESTINFO and typedefs and add defines for
9046         backward compatability.
9047         (ListView_SetExtendedListViewStyleEx): Add macro.
9048
9049 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
9050
9051         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
9052         Add prototypes.
9053         * lib/msimg32.def: New file, with stubs for above.
9054
9055 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
9056
9057         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
9058         GetFileSizeEx, SetFilePointerEx): Add prototypes.
9059         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
9060         and UNICODE mappings.
9061
9062 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9063
9064         * include/winbase.h (ReadFileScatter, WriteFileGather):
9065         Change second parameter to pointer.
9066
9067 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
9068
9069         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
9070         UNICODE mappings.
9071         * lib/wininet.def: Regenerate.
9072
9073 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9074
9075         * include/windef.h (PVOID): Move typedef to...
9076         * include/winnt: ...here.
9077         (PVOID64): New typedef.
9078
9079         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
9080         * include/winbase.h (ReadFileScatter, WriteFileGather):
9081         Add prototypes.
9082
9083         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
9084         (PROCESSOR_INTEL_IA64): Add define.
9085
9086 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9087
9088         * include/oleidl.h (MK_ALT): Define.
9089
9090 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9091
9092         * include/exdisp.h: New file.
9093         * include/exdispid.h: New file.
9094         * include/mshtml.h: New file.
9095         * lib/test.c: #include exdisp.h and mshtml.h
9096         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
9097         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
9098         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
9099         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
9100         New GUIDs.
9101
9102 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9103
9104         * include/docobj.h: New file.
9105         * include/idispids.h: New file.
9106         * include/objidl.h (IID_IMoniker): Declare.
9107         * include/ocidl.h (READYSTATE): New enum.
9108         (IOleInPlaceSiteEx): New interface.
9109         * include/olectlid.h (IID_IEnumSTATSTG): New interface
9110         identifier.
9111         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
9112         IOleInPlaceSite): New interfaces.
9113         * lib/test.c: #include docobj.h,idispids.h,
9114
9115 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9116
9117         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
9118         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
9119
9120 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
9121
9122         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
9123         * include/commdlg.h: Likewise.
9124
9125 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
9126
9127         * include/oleauto.h (V_UNION): Correct definition for case of
9128         NONAMELESSUNION:
9129         (V_VT): Likewise.
9130
9131 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
9132
9133         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
9134         not bool, for C as well as C++.
9135
9136 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
9137
9138         * include/shlwapi.h: New file.
9139         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
9140         Victor Porton  <porton@narod.ru> for contributions.
9141         * lib/shlwapi.def: New file.
9142         * lib/test.c: #include shlwapi.h.
9143
9144 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
9145
9146         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
9147         character.
9148         * include/winsock2.h (struct sockaddr): Use __int64 instead of
9149         long long.
9150         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
9151         does not need external *Fiber library functions.
9152
9153 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9154
9155         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
9156         definition.
9157         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
9158         avoid compile error when already defined.
9159
9160 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
9161
9162         * include/winuser.h (WM_MENURBUTTONUP): Add define.
9163
9164 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9165
9166         * include/commdlg.h: Define CDN_* notification message constants
9167         as UINT.
9168
9169 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
9170
9171         * include/commctrl.h: Define notification message constants for
9172         NMHDR.code as UINT.
9173
9174 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
9175
9176         * include/ddeml.h (MH_*) Add defines.
9177         (MONHSZSTRUCT): Add structure and typedefs.
9178         (MONLINKSTRUCT): Ditto.
9179         (MONCONVSTRUCT): Ditto.
9180         (MONCBSTRUCT): Ditto.
9181         (MONERRSTRUCT): Ditto.
9182         (MONMSGSTRUCT): Ditto.
9183         * include/windef.h: Don't define __cdecl or _cdecl for
9184         __WATCOM__.
9185         Don't define _export or __export for __WATCOM__.
9186         * include/windows.h (imm.h): #include.
9187         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9188
9189 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9190
9191         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9192         rpcndr.h.
9193
9194 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9195
9196         * include/winbase.h (OpenThread): Add prototype.
9197         * lib/kernel32.def (OpenThread): Add symbol.
9198
9199 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9200
9201         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9202
9203 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9204
9205         * include/rpc.h: Conditionally include <windows.h> before
9206         header guard.
9207         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9208         header guard.
9209
9210 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9211
9212         * include/commctrl.h (WC_*): Remove some duplicate defines.
9213
9214 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9215
9216         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9217         UNICODE mappings.
9218         (IPM*): Add defines.
9219         (IPN_*): Add defines.
9220         (NMIPADDRESS): Add structure and typedefs.
9221         (MAKEIPADDRESS): Add macro.
9222         (MAKEIPRANGE): Add macro.
9223         (FIRST_IPADDRESS): Add macro.
9224         (SECOND_IPADDRESS): Add macro.
9225         (THIRD_IPADDRESS): Add macro.
9226         (FOURTH_IPADDRESS): Add macro.
9227
9228 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9229
9230         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9231
9232 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9233
9234         * include/winbase.h (WINBASEAPI): Don't define if prior
9235         definition.
9236
9237         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9238         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9239         PARTITION_UNIX): Add defines.
9240         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9241         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9242         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9243         (IsContainerPartition): Add macro.
9244
9245 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9246
9247         * include/commctrl.h: (CBEIF_*): Add defines.
9248         (CBEN_*): Add defines and UNICODE mappings
9249         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9250         (CBEMAXSTRLEN): Add define.
9251         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9252         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9253         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9254         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9255
9256 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9257
9258         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9259         union member _VARIANT_BOOL bool.
9260
9261 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9262
9263         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9264
9265 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9266
9267         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9268         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9269         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9270         Add typedefs.
9271         (CCHAR): Correct typedef.
9272         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9273         Add defines.
9274
9275 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9276
9277         * README.w32api: Correct spelling error.
9278
9279 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9280
9281         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9282         INPUT_HARDWARE): Add defines.
9283         (HDEVNOTIFY): Add typedef.
9284         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9285         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9286         typedefs.
9287         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9288         GetClassInfoEx[AW],GetKeyboardLayoutList,
9289         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9290         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9291         RegisterClassEx[AW]): Correct prototypes.
9292
9293 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9294
9295         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9296         prototypes.
9297         * include/winsvc.h (StartServiceW): Correct prototype.
9298         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9299         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9300         GetTickCount,InterlockedExchangeAdd,
9301         WritePrivateProfileStruct[AW]: Correct prototypes.
9302         (GetEnvironmentStrings): Correct mapping to
9303         GetEnvironmentStringsA.
9304         * include/winver.h (VerQueryValueA,VerQueryValueW):
9305         Correct prototypes.
9306         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9307         prototype.
9308         * include/winreg.h (RegQueryMultipleValues[AW],
9309         RegQueryValueEx[AW]):Correct prototypes.
9310         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9311         PPOLYTEXTW): Add typedefs.
9312         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9313         structures and typedefs.
9314         (MM_MAX_NUMAXES): Add define.
9315         (EnumFontsW,GetEnhMetaFilePixelFormat,
9316         wglGetLayerPaletteEntries): Correct prototypes.
9317         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9318         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9319         RPC_S_SEND_INCOMPLETE): Add defines.
9320
9321 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9322
9323         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9324         Add defines.
9325
9326 2002-06-16  Egor Duda  <deo@logos-m.ru>
9327
9328         * include/ntdll.h: New file.
9329         * lib/ntdll.def: Add NtShutdownSystem.
9330
9331 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9332
9333         * lib/dinput.def (DirectInputCreateEx): Add stub.
9334         * lib/ntdll.def: New file.
9335
9336 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9337
9338         * include/w32api.h: Change to version 2.0 to reflect the change
9339         in the license.
9340         * README: Renamed.
9341         * README.w32api: Renamed from README.  Modified license to remove
9342         the restriction of notifying the author based on the fact that the
9343         author is unreachable at the notified address.
9344         * Makefile.in (VERSION): Change to 2.0.
9345
9346 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9347
9348         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9349         * Makefile.in (bindist): Correct the MinGW distribution.
9350
9351 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9352
9353         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9354         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9355
9356 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9357
9358         * lib/test.c: #include comcat.h.
9359
9360 2002-06-13  John K. Hohm  <jhohm@acm.org>
9361
9362         * include/comcat.h: New file.
9363
9364 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9365
9366         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9367         (GETTEXTEX): Add structure definition.
9368
9369 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9370
9371         * include/windows.h (ole2.h): #include if !__OBJC__ and
9372         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9373
9374 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9375
9376         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9377
9378 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9379
9380         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9381         PACCESS_DENIED_ACE): Add typedefs.
9382
9383 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9384
9385         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9386
9387 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9388
9389         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9390
9391 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9392
9393         * include/windef.h: Fix typo in last change.
9394
9395 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9396
9397         * include/windef.h: Add no-op __try, __except, __finally
9398         defines from ...
9399         * include/excpt.h: Remove file.
9400         * include/windows.h: Don't include excpt.h.
9401
9402 2002-05-30  Christopher January  <chris@atomice.net>
9403
9404         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9405         Add missing typedefs.
9406
9407 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9408
9409         * include/w32api.h: Increment version to 1.5
9410         * Makefile.in: Ditto.
9411
9412
9413 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9414
9415         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9416         LP[W]STR with LPC[W]STR.
9417         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9418         Clean up whitespace.
9419
9420 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9421
9422         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9423
9424 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9425
9426         * Makefile.in: Increment VERSION to 1.4.
9427         (conf_prefix): New variable.
9428         (bindist): Modify target to use $(conf_prefix).
9429
9430 2002-05-20  Philip Aston  <philipa@mail.com>
9431
9432         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9433
9434 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9435
9436         * include/lmaccess.h: (NetAccess*, NetGroup*,
9437         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9438         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9439
9440 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9441
9442         * include/commctrl.h (ImageList_DragShowNolock): Remove
9443         conflicting redeclaration.
9444
9445 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9446
9447         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9448         STRICT and related defines to ...
9449         * include/windef.h: Here.
9450
9451 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9452
9453         * include/winsock2.h (int32): Remove typedef.
9454         (SERVICETYPE): Add typedef.
9455         (struct _flowspec):Revise struct definition,  Comment
9456         on types used for members.
9457
9458 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9459
9460         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9461         more defines added in earlier change.
9462         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9463
9464 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9465
9466         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9467         added in last change.
9468
9469 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9470
9471         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9472         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9473
9474 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9475
9476         * include/commctrl.h (SNDMSG): Define and use throughout
9477         in other macros instead of SendMessage.
9478         * include/commdlg.h (SNDMSG): Ditto.
9479
9480 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9481
9482         * include/GL/gl.h: New file.
9483         * include/GL/glext.h: Ditto.
9484         * include/GL/glu.h: Ditto.
9485
9486 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9487
9488         * include/w32api.h: Increment version.
9489         * Makefile.in: Ditto.
9490
9491 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9492
9493         * Makefile.in (bindist): Use * instead of . for file list for tar
9494         command.
9495
9496 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9497
9498         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9499
9500 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9501
9502         * include/objidl.h (IRunningObjectTable.Register): Correct
9503         prototype.
9504         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9505         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9506
9507 2002-03-31  Victor Porton  <porton@narod.ru>
9508
9509         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9510
9511 2002-03-29  David Robinow  <drobinow@yahoo.com>
9512
9513         * include/wingdi.h (SetPixelFormat): Correct prototype.
9514
9515 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9516
9517         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9518
9519 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9520
9521         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9522         Add defines.
9523
9524 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9525
9526         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9527         * include/shlobj.h (IContextMenu2): Put methods in right order.
9528         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9529         CINTERFACE before defining.
9530
9531 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9532
9533         * include/accctrl.h: Add #pragma GCC system_header
9534         if __GNUC__ >= 3.
9535         * include/aclapi.h: Same.
9536         * include/basetsd.h: Same.
9537         * include/basetyps.h: Same.
9538         * include/cderr.h: Same.
9539         * include/cguid.h: Same.
9540         * include/commctrl.h: Same.
9541         * include/commdlg.h: Same.
9542         * include/cpl.h: Same.
9543         * include/cplext.h: Same.
9544         * include/custcntl.h: Same.
9545         * include/dbt.h: Same.
9546         * include/dde.h: Same.
9547         * include/ddeml.h: Same.
9548         * include/dlgs.h: Same.
9549         * include/excpt.h: Same.
9550         * include/httpext.h: Same.
9551         * include/imagehlp.h: Same.
9552         * include/imm.h: Same.
9553         * include/initguid.h: Same.
9554         * include/intshcut.h: Same.
9555         * include/ipexport.h: Same.
9556         * include/iphlpapi.h: Same.
9557         * include/ipifcons.h: Same.
9558         * include/iprtrmib.h: Same.
9559         * include/iptypes.h: Same.
9560         * include/isguids.h: Same.
9561         * include/largeint.h: Same.
9562         * include/lm.h: Same.
9563         * include/lmaccess.h: Same.
9564         * include/lmalert.h: Same.
9565         * include/lmapibuf.h: Same.
9566         * include/lmat.h: Same.
9567         * include/lmaudit.h: Same.
9568         * include/lmbrowsr.h: Same.
9569         * include/lmchdev.h: Same.
9570         * include/lmconfig.h: Same.
9571         * include/lmcons.h: Same.
9572         * include/lmerr.h: Same.
9573         * include/lmerrlog.h: Same.
9574         * include/lmmsg.h: Same.
9575         * include/lmremutl.h: Same.
9576         * include/lmrepl.h: Same.
9577         * include/lmserver.h: Same.
9578         * include/lmshare.h: Same.
9579         * include/lmsname.h: Same.
9580         * include/lmstats.h: Same.
9581         * include/lmsvc.h: Same.
9582         * include/lmuse.h: Same.
9583         * include/lmuseflg.h: Same.
9584         * include/lmwksta.h: Same.
9585         * include/lzexpand.h: Same.
9586         * include/mapi.h: Same.
9587         * include/mciavi.h: Same.
9588         * include/mcx.h: Same.
9589         * include/mmsystem.h: Same.
9590         * include/mswsock.h: Same.
9591         * include/nb30.h: Same.
9592         * include/nddeapi.h: Same.
9593         * include/nspapi.h: Same.
9594         * include/ntdef.h: Same.
9595         * include/ntsecapi.h: Same.
9596         * include/ntsecpkg.h: Same.
9597         * include/oaidl.h: Same.
9598         * include/objbase.h: Same.
9599         * include/objfwd.h: Same.
9600         * include/objidl.h: Same.
9601         * include/odbcinst.h: Same.
9602         * include/ole.h: Same.
9603         * include/ole2.h: Same.
9604         * include/ole2ver.h: Same.
9605         * include/oleauto.h: Same.
9606         * include/olectl.h: Same.
9607         * include/olectlid.h: Same.
9608         * include/oledlg.h: Same.
9609         * include/oleidl.h: Same.
9610         * include/pbt.h: Same.
9611         * include/prsht.h: Same.
9612         * include/psapi.h: Same.
9613         * include/rapi.h: Same.
9614         * include/ras.h: Same.
9615         * include/raserror.h: Same.
9616         * include/rassapi.h: Same.
9617         * include/regstr.h: Same.
9618         * include/richedit.h: Same.
9619         * include/richole.h: Same.
9620         * include/rpc.h: Same.
9621         * include/rpcdce.h: Same.
9622         * include/rpcdce2.h: Same.
9623         * include/rpcdcep.h: Same.
9624         * include/rpcndr.h: Same.
9625         * include/rpcnsi.h: Same.
9626         * include/rpcnsip.h: Same.
9627         * include/rpcnterr.h: Same.
9628         * include/rpcproxy.h: Same.
9629         * include/schannel.h: Same.
9630         * include/schnlsp.h: Same.
9631         * include/scrnsave.h: Same.
9632         * include/security.h: Same.
9633         * include/setupapi.h: Same.
9634         * include/shellapi.h: Same.
9635         * include/shlguid.h: Same.
9636         * include/shlobj.h: Same.
9637         * include/sql.h: Same.
9638         * include/sqlext.h: Same.
9639         * include/sqltypes.h: Same.
9640         * include/sqlucode.h: Same.
9641         * include/sspi.h: Same.
9642         * include/subauth.h: Same.
9643         * include/tlhelp32.h: Same.
9644         * include/unknwn.h: Same.
9645         * include/userenv.h: Same.
9646         * include/w32api.h: Same.
9647         * include/winbase.h: Same.
9648         * include/wincon.h: Same.
9649         * include/wincrypt.h: Same.
9650         * include/windef.h: Same.
9651         * include/windows.h: Same.
9652         * include/windowsx.h: Same.
9653         * include/winerror.h: Same
9654         * include/wingdi.h: Same.
9655         * include/wininet.h: Same.
9656         * include/winioctl.h: Same.
9657         * include/winnetwk.h: Same.
9658         * include/winnls.h: Same.
9659         * include/winnt.h: Same.
9660         * include/winperf.h: Same.
9661         * include/winreg.h: Same.
9662         * include/winresrc.h: Same.
9663         * include/winsock.h: Same.
9664         * include/winsock2.h: Same.
9665         * include/winspool.h: Same.
9666         * include/winsvc.h: Same.
9667         * include/winuser.h: Same.
9668         * include/winver.h: Same.
9669         * include/ws2tcpip.h: Same.
9670         * include/wsnetbs.h: Same.
9671         * include/wtypes.h: Same.
9672         * include/zmouse.h: Same.
9673         * include/mapi.h: Change header guard name to _MAPI_H  for
9674         consistency.
9675
9676 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9677
9678         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9679         Remove unnecessary inclusion of <wtypes.h>.
9680         * ChangeLog: Fix omission of name in recent entries.
9681
9682 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9683
9684         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9685
9686 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9687
9688         * include/mswsock.h: Group winsock2 dependants
9689         together and protect with #ifdef _WINSOCK2_H.
9690         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9691         has been included.
9692
9693 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9694
9695         * include/mswsock.h (TP_*): Add new defines.
9696         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9697         (WSAMSG): Likewise.
9698         (WSACMSGHDR): Likewise.
9699         (DisconnectEx): Add new prototype.
9700         (WSARecvMsg): Likewise.
9701         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9702
9703 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9704
9705         * ChangeLog: Fix typo in last entry.
9706         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9707         * include/ws2tcpip.h: (IP_*): Add new defines.
9708         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9709         (NI_*): Add getnameinfo constants and bitmasks.
9710         (AI_*): Add getaddrinfo flags.
9711         (EAI_*): Add getaddrinfo error codes.
9712         (ip_mreq_source): Add new structure.
9713         (ip_msfilter): Add new structure.
9714         (IP_MSFILTER_SIZE): Add new macro.
9715         (in_pktinfo): Add new structure.
9716         Add preliminary IPv6 support.
9717         (in6_addr): Add new structure and some defines.
9718         (sockaddr_in6): Add new structure.
9719         (in6addr_any, in6addr_loopback): Declare extern structures.
9720         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9721         initialization macros for above.
9722         (IN6_ARE_ADDR_EQUAL): Define macro.
9723         (IN6_IS_ADDR_*): Define address testing macros.
9724         (socklen_t) Add new typedef.
9725         (ipv6_mreq): Add new structure.
9726         (in6_pktinfo): Same.
9727         (addrinfo): Same.
9728         (freeaddrinfo):Add new prototype.
9729         (getaddrinfo): Same.
9730         (gai_strerror[AW]): Same.
9731         (getnameinfo): Same.
9732         (sockaddr_in6_old): Add structure.
9733         (sockaddr_gen): Add union definition.
9734         (INTERFACE_INFO): Use sockaddr_gen as members.
9735         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9736         with INTERFACE_INFO on NT4 prior to sp4.
9737
9738 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9739
9740         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9741         when selecting winsock interface.
9742         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9743         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9744         Expand FIXME comment.
9745         (WSACOMPLETIONTYPE): Add enum.
9746         (WSACOMPLETION): Add structure and typedefs.
9747         (WSANSPIoctl): Add function prototpe and callback typedef.
9748         (SIO_NSP_NOTIFY_CHANGE): Add define.
9749         (sockaddr_storage): Add structure and typedefs.
9750
9751 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9752
9753         * include/winuser.h (OIC_*): Add resource constants.
9754
9755 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9756
9757         * include/ntsecpkg.h: New file.
9758         * include/schannel.h: New file.
9759         * include/schnlsp.h: New file.
9760         * include/security.h: New file.
9761         * include/sspi.h: New file.
9762         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9763         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9764         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9765         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9766         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9767         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9768         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9769         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9770         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9771         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9772         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9773         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9774         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9775         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9776         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9777         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9778         CERT_CHAIN_CONTEXT): Add missing structures.
9779         (CertCloseStore, CertGetCertificateChain,
9780         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9781         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9782         CertFindCertificateInStore, CertFreeCertificateContext,
9783         CertGetIssuerCertificateFromStore,
9784         CertFindChainInStore): Add missing functions.
9785         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9786         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9787         * lib/crypt32.def: New file.
9788         * lib/secur32.def: Add mising stubs.
9789         * lib/test.c: Include new headers.
9790
9791 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9792
9793         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9794         parameter.
9795
9796 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9797
9798         * lib/test.c: Include mapi.h.
9799         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9800         Thanks to: "Ron"  <ron@debian.org>
9801
9802 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9803
9804         * include/mapi.h: New file.
9805         * lib/mapi.def: Add missing function stubs.
9806
9807 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9808
9809         * include/winuser.h (GetWindowLongPtr[AW],
9810         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9811
9812 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9813
9814         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9815         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9816         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9817         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9818
9819 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9820
9821         * lib/test.c: Include wsnetbs.h.
9822
9823 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9824
9825         * include/wsnetbs.h: New file.
9826
9827 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9828
9829         * include/winnt.h: Remove merge conflict.
9830
9831 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9832
9833         * include/winnt.h (_TCHAR): Add typedefs.
9834
9835 2002-01-25  Tim Hughes  <tjh@delcam.com>
9836
9837         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9838         defines.
9839
9840 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9841
9842         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9843         Add defines.
9844         (LPACCESSTIMEOUT): Add typedef.
9845
9846 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9847
9848         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9849
9850 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9851
9852         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9853         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9854         backward compatability with old names. Update UNICODE mappings.
9855         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9856         for struct _HD_LAYOUT and add defines for backward
9857         compatability with old names.
9858         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9859         parallel chages to typedefs. Add defines for backward
9860         compatability with old names.
9861         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9862
9863 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9864
9865         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9866         hex for readability.
9867
9868 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9869
9870         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9871         and typedefs.
9872         (SPI_SETSCREENSAVERRUNNING): Add define.
9873         (LLKHF_ALTDOWN): Add define.
9874         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9875         PFD_DEPTH_DONTCARE): Add defines.
9876
9877 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9878
9879         * include/objbase.h (CoGetObject): Add prototype.
9880
9881 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9882
9883         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9884         ENUM_REGISTRY_SETTINGS): Add defines.
9885
9886 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9887
9888         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9889         (FILE_ATTRIBUTE_DEVICE): Add define.
9890
9891 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9892
9893         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9894
9895 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9896
9897         * ChangeLog: correct date in last entry.
9898
9899 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9900
9901         * include/winuser.h (MONITORENUMPROC): Add typedef.
9902         (EnumDisplayMonitors): Add prototype.
9903         * lib/user32.def (EnumDisplayMonitors): Add stub.
9904
9905 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9906
9907         * include/ntsecapi.h:  Fixed missing void parameter type in some
9908         prototypes.
9909         * include/objbase.h: Ditto.
9910         * include/rapi.h: Ditto.
9911         * include/rpc.h: Ditto.
9912         * include/rpcdce.h: Ditto.
9913         * include/rpcdcep.h: Ditto.
9914         * include/rpcndr.h: Ditto.
9915         * include/rpcnsip.h: Ditto.
9916         * include/rpcproxy.h: Ditto.
9917         * include/windef.h: Ditto.
9918
9919 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9920
9921         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9922
9923 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9924
9925         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9926          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9927         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9928         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9929         WS_EX_NOINHERITLAYOUT): Add defines.
9930         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9931         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9932         MEM_WRITE_WATCH): Add defines.
9933
9934
9935 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9936
9937         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9938         Add prototype.
9939         (SetCriticalSectionSpinCount): Likewise.
9940
9941 2001-12-30  Guido Serassio  <serassio@libero.it>
9942
9943         * include/winsvc.h: Add EnumServiceStatusEx(),
9944         QueryServiceStatusEx()
9945         & RegisterServiceCtrlHandlerEx()
9946
9947 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9948
9949         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9950
9951 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9952
9953         * lib/Makefile.in: Revert inst_installdir definitions to working
9954         versions.
9955
9956 2001-12-17  Guido Serassio  <serassio@libero.it>
9957
9958         * include/winsvc.h: Add ChangeServiceConfig2() &
9959         QueryServiceConfig2() definition
9960
9961 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9962
9963         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9964         on MSDN documentation for XP.
9965
9966 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9967
9968         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9969         mappings.
9970
9971 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9972
9973         * include/commctrl.h (ACS_*): Add new defines.
9974         (PGS_*): Ditto.
9975         (CBES_*): Ditto.
9976         (TBSTYLE_*): Ditto.
9977         (TB_*): Ditto.
9978         (TTS_*): Ditto.
9979         (UDS_HOTTRACK): Add define.
9980         (SBT_TOOLTIPS): Ditto.
9981         (TBS_*): Add new defines.
9982         (HDS_*): Ditto.
9983         (LVS_EX_*) Ditto.
9984         (LVKF_*): Ditto.
9985         (TCM_GETEXTENDEDSTYLE): Add define.
9986         (TVS_NOHSCROLL): Ditto.
9987         (TVIF_INTEGRAL): Ditto.
9988         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9989         (TCS_*): Add new defines.
9990         (CBEM_*): Add defines.
9991         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9992         (tagTVITEMEX[AW]: Ditto.
9993         (tagTVINSERTSTRUCT[AW]: Add union member.
9994         * include/winbase.h (VirtualAllocEx): Add prototype.
9995         * include/winuser.h (SS_*): Add new defines.
9996
9997 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9998
9999         * Makefile.in: Increment VERSION.
10000         * include/w32api.h: Ditto.
10001
10002 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10003
10004         * Makefile.in: Increment VERSION.
10005         * include/w32api.h: Ditto.
10006
10007 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
10008
10009         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
10010         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
10011         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
10012         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
10013         SetupDiOpenDevRegKey): Correct function names.
10014
10015 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
10016
10017         * include/winuser.h (IDC_STATIC): Don't define.
10018
10019 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
10020
10021         Cleanup merge between SourceForge and winsup CVS.
10022         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
10023         definitions.
10024         * include/winnt.h (VER_NT*): Remove duplicate defines.
10025         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
10026
10027 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
10028
10029         * include/accctrl.h: Change \r\n to \n.
10030
10031 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
10032
10033         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
10034         Add structure definition.
10035         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
10036         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
10037         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
10038         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
10039         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
10040         UnenableRouter) Declare functions.
10041         * lib/iphlpapi.def: Add function names to import lib.
10042
10043 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
10044
10045         * include/winnt.h (PACCESS_MASK): Add typedef.
10046         * include/aclapi.h: New file.
10047         * include/acctrl.h: New file.
10048         * lib/advapi32.def: Add missing symbols.
10049         * lib/test.c: Add #include <aclapi.h>.
10050
10051 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
10052
10053         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
10054         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
10055         here ...
10056         * include/winnt.h: ... to here.
10057         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
10058         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
10059         and typedefs.
10060         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
10061         Add defines.
10062
10063 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10064
10065         * w32api/include/winnt.h: prepare SSE register support.
10066         (CONTEXT_EXTENDED_REGISTERS): Add new define.
10067         (MAXIMUM_SUPPORTED_EXTENSION): New define.
10068         (struct CONTEXT): ExtendedRegisters field added.
10069
10070 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
10071
10072         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
10073         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
10074         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
10075         tagLASTINPUTINFO ): Define new structures.
10076         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
10077         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
10078         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
10079         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
10080         SetMenuInfo): Add new prototypes.
10081         * lib/user32.def: Add import stubs for above functions.
10082
10083         * include/winuser.h (IDC_STATIC): Protect against prior
10084         definition.
10085
10086 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
10087
10088         * include/winbase.h (OSVERSIONINFOEX): Add definition.
10089         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
10090
10091 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
10092
10093         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
10094         warnings with _AUTHORITY #defines.
10095
10096 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10097
10098         * include/winnt.h (GetCurrentFiber): Create a prototype before the
10099         implementation.
10100         (GetFiberData): Ditto.
10101
10102 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10103
10104         * include/winnt.h: Backout last change.
10105
10106 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
10107
10108         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
10109         GetCurrentFiber: Create a prototype before the implementation.
10110         GetFiberData: Ditto.
10111
10112 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
10113
10114         * include/winuser.h (IDC_STATIC): Add define.
10115         Thanks to: Benoit Laniel.
10116
10117 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
10118
10119         * include/commdlg.h: Include <unknwn.h> rather than local
10120         definition of LPUKNOWN.
10121         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
10122         Emit warning.
10123
10124 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
10125
10126         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
10127         for Watcom.
10128         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
10129         functions of the form 'type * function(...)' in a way compatible
10130         with both Watcom and GCC.
10131         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
10132         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
10133         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
10134         * include/windows.h: Watcom can use anonymous structs/unions.
10135         * include/winnt.h: Watcom can use 64 bit ints.
10136         (GetCurrentFiber): Add another inline definition using
10137         Watcom inline assembly syntax.
10138         (GetFiberData): Likewise.
10139         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
10140         (gethostbyname): Likewise.
10141         (gethostbyaddr}: Likewise.
10142         (getservbyport}: Likewise.
10143         (getservbyname}: Likewise.
10144         (getprotobynumber}: Likewise.
10145         (getprotobyname}: Likewise.
10146         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
10147         (gethostbyname}: Likewise.
10148         (gethostbyaddr}: Likewise.
10149         (getservbyport}: Likewise.
10150         (getservbyname}: Likewise.
10151         (getprotobynumber}: Likewise.
10152         (getprotobyname}: Likewise.
10153         * lib/diinut.c: Correction for Watcom.
10154         * lib/kernel32.c (GetCurrentFiber): Add another definition
10155         using Watcom inline assembly syntax.
10156         (GetFiberData): Likewise.
10157         * lib/scrnsave.c (WinMain): Add break after default:
10158         clause.
10159
10160 2001-11-04  "stefan"  <stefan@lkcc.org>
10161
10162         * include/winnt.h (GetCurrentFiber): Add prototype.
10163         (GetFiberData): Likewise.
10164
10165 2001-11-04  Christopher Faylor  <cgf@redhat.com>
10166
10167         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
10168         parallel invocations.
10169
10170 2001-11-03  Christopher Faylor  <cgf@redhat.com>
10171
10172         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
10173
10174 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10175
10176         * include/basetyps.h (DECLARE_INTERFACE): Don't add
10177         __attribute__((com_interface)) for __GNUC__ >= 3.
10178
10179 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10180
10181         * include/commdlg.h (PRINTPAGERANGE): Add structure
10182         definition.
10183         (PRINTDLGEX[AW]): Likewise.
10184         (PrintDlgEx[AW]): Add function declaration.
10185         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10186         * ChangeLog: Fix typo in last entry.
10187
10188 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10189
10190         * include/objbase.h (CoGetClassObject): Change third parameter
10191         to COSERVERINFO*.
10192
10193 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10194
10195         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10196         Thanks to: Kim Saunders.
10197         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10198         Thanks to: Pat Thoyts.
10199         * include/winnt.h: Change C++ style comment to C style.
10200         * include/shlobj.h: Ditto.
10201         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10202         list.
10203         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10204         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10205         (enum not limited to range of int).
10206         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10207         (struct with no named members), ifndef NONAMELESSUNION.
10208
10209 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10210
10211         * include/winuser.h (CREATESTRUCT): UNICODE it.
10212         (CBT_CREATEWND): Likewise.
10213
10214 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10215
10216         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10217         (WNetGetResourceInformationW): Ditto.
10218         (WNetGetResourceInformation): Add define.
10219
10220 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10221
10222         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10223         before extracting words.
10224
10225 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10226
10227         * include/winnt.h: Add PF_* defines.
10228         Thanks to: "Wizord"  <wizord@argoslabs.com>
10229
10230 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10231
10232         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10233         field as _ANONYMOUS_STRUCT.
10234         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10235         for UNICODE.
10236         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10237         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10238         test.
10239
10240 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10241
10242         * include/commctrl.h: Add some ListView constants.
10243
10244 2001-09-17  Earnie Boyd  <earnie@sf.net>
10245
10246         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10247         portion of the directory from the install.
10248         (inst_libdir): Ditto.
10249         * Makefile.in (VERSION): Increment.
10250         * include/w32api.h: Increment version.
10251
10252 2001-09-13  Earnie Boyd  <earnie@SF.net>
10253
10254         * lib/Makefile.in (inst_includedir): Change to always use w32api
10255         subdirectory for target == cygwin.
10256         (inst_libdir): Ditto.
10257
10258 2001-09-13  Earnie Boyd  <earnie@SF.net>
10259
10260         * lib/Makefile.in (config_prefix): New variable.
10261         (inst_includedir): Manipulate special value only if target == cygwin
10262         and build == target and prefix != config_prefix.
10263         (inst_libdir): Ditto.
10264
10265 2001-09-12  Earnie Boyd  <earnie@SF.net>
10266
10267         * Makefile.in (TARFLAGS): New variable.
10268         (TARFILEEXT): Ditto.
10269
10270 2001-09-12  Earnie Boyd  <earnie@SF.net>
10271
10272         * Makefile.in: Increment version.
10273         * include/w32api.h: Ditto.
10274         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10275
10276 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10277
10278         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10279         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10280         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10281
10282 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10283
10284         * include/wininet.h (InternetAutodial): Add prototype.
10285         (InternetAutodialHangup): Ditto.
10286         (InternetDial): Ditto.
10287         (InternetGetConnectedState): Ditto.
10288         (InternetGoOnline): Ditto.
10289         (InternetHangUp): Ditto.
10290         (InternetSetDialState): Ditto.
10291         Add associated INTERNET_* auto dial flags.
10292         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10293
10294 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10295
10296         * lib/Makefile.in: Move the setting of variable libdir to after the
10297         setting of exec_prefix since the value of libdir is dependant on it.
10298
10299 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10300
10301         * include/winbase.h: Add missing closing parentheses to
10302         InterlockedExchangePointer declaration.
10303
10304 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10305
10306         * include/shlobj.h (CFSTR_* ): Add new defines.
10307         Thanks to: "Ron" <ron@debian.org> .
10308         Unicode them.
10309
10310 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10311
10312         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10313         anonymous structs are available rather than just testing preprocessor
10314         variable directly.
10315
10316 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10317
10318         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10319         with new `LARGE_INTEGER' definition.
10320
10321 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10322
10323         * include/winsock2.h: Remove "extra token" after #endif.
10324
10325 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10326
10327         * config.guess: Remove the \r from the end of line.
10328         * config.sub: Ditto.
10329
10330 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10331
10332         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10333         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10334
10335 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10336
10337         * config.guess: Add the MSYS system.
10338         * config.sub: Ditto.
10339         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10340         * incldue/winsock2.h: Ditto.
10341
10342 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10343
10344         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10345         non-anonymous (Xxx.u.LowPart) access to HighPart and
10346         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10347
10348 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10349
10350         * include/wingdi.h (HANGUL_CHARSET): Add define.
10351
10352 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10353
10354         * include/setupapi.h: Formatting.
10355
10356 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10357
10358         * include/shlobj.h: Remove \r from the line endings.
10359
10360 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10361
10362         * include/setupapi.h : New file.
10363         * lib/setupapi.def:New file.
10364         * lib/test.c: Include setupapi.h.
10365
10366 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10367         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10368
10369 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10370
10371         * include/richedit.h (ENLINK): Add structure definition.
10372         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10373
10374 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10375
10376         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10377         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10378         (GCS_*): Make UNICODE.
10379         (CSIDL_*): Add more defines.
10380         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10381         (_DISK_GEOMETRY): Ditto.
10382         (_DISK_PERFORMANCE): Ditto.
10383         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10384
10385 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10386
10387         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10388         of block protected by #ifndef VOID.
10389         (This reverts 1998-12-01 Anders Norlander change.)
10390         * include/odbcinst.h: End file with newline.
10391         * include/raserror.h: Ditto.
10392
10393 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10394
10395         * include/winsock2.h (#include <wtypes.h): Don't.
10396         (_BLOB): Define instead, if not already done.
10397         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10398         * include/wtypes.h (_BLOB): Guard against prior definition.
10399
10400 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10401
10402         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10403         as __extension__.
10404         (tagTYPEDESC): Ditto.
10405         (_wireBRECORD): Add structure definition.
10406         (_wireSAFEARR_BRECORD): Ditto.
10407         (_wireSAFEARR_HAVEIID): Ditto.
10408         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10409         SAFEARR_HAVEIID HaveIidStr.
10410         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10411         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10412         pparray to wirePSAFEARRAY*.
10413         (_wireVARIANT): Add field wireBRECORD brecVal.
10414         (wireVARIANT): Change typedef to struct _wireVariant*.
10415         (IRecordInfo): Add interface definition.
10416         (LPRECORDINFO): Add typedef for IRecordInfo*.
10417         (IID_IRecordInfo): Add forward decalaration.
10418
10419 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10420
10421         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10422         * include/nddeapi.h: Likewise.
10423
10424 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10425
10426         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10427         Add more includes of w32api headers.
10428
10429 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10430
10431         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10432         Swap asm code with that of GetFiberData.
10433         (GetFiberData): Ditto.
10434         * lib/kernel32.c: New file, containing library versions of
10435         GetCurrentFiber and GetFiberData.
10436         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10437
10438 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10439
10440         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10441         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10442
10443 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10444
10445         * lib/oleaut32.def: Regenerate.
10446
10447 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10448
10449         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10450
10451 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10452
10453         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10454         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10455         * include/oaidl.h: ... to here.
10456         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10457         (IErrorInfo::GetGUID): Change arg to GUID.
10458         (LPSUPPORTERRORINFO): Add typedef.
10459         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10460
10461 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10462
10463         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10464         defines.
10465
10466 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10467
10468         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10469
10470 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10471
10472         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10473         Thanks to: Jason Craig  <jacraig@softhome.net>
10474
10475 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10476
10477         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10478         and UNICODE mappings, if _WIN32_IE >= 0x400.
10479         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10480         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10481         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10482         (tagNMLVCUSTOMDRAW): Likewise.
10483         (tagNMTVCUSTOMDRAW): Likewise.
10484         (tagNMLVCACHEHINT): Likewise.
10485
10486 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10487
10488         * include/basetsd.h (#include <_mingw.h>): Remove.
10489         (__int64): Define.
10490
10491 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10492
10493         * include/wingdi.h (AC_SRC_OVER): Add define.
10494         (struct _BLENDFUNCTION): Add.
10495
10496 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10497
10498         * include/shlobj.h:  Add BIF_* defines.
10499
10500 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10501
10502         * include/winerror.h (E_PENDING): Add error code define.
10503
10504 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10505
10506         * include/basetsd.h (#include <_mingw.h>): Add directive.
10507
10508 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10509
10510         * include/winbase.h (InterlockedCompareExchange): Change args
10511         and return value from PVOID to LONG.
10512         (InterlockedExchange): Change first arg to LPLONG.
10513         (InterlockedCompareExchangePointer): New macro.
10514         (InterlockedExchangePointer): New macro.
10515
10516 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10517
10518         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10519         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10520
10521 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10522
10523         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10524         (IMalloc::Free()): Ditto.
10525
10526 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10527
10528         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10529         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10530         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10531
10532 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10533
10534         * include/shlobj.h (struct _browseinfo): UNICODE it.
10535         (SHBrowseForFolder): Ditto.
10536         (SHGetPathFromIDList): Ditto.
10537
10538 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10539
10540         * include/basetsd.h: RC_INVOKED protection and realignment.
10541         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10542
10543 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10544
10545         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10546         line.
10547
10548 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10549
10550         * lib/mapi32.def: Add MAPISendMail.
10551
10552 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10553
10554         * include/w32api.h: Update version.
10555         * Makefile.in: Ditto.
10556
10557 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10558
10559         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10560         compiler warnings.
10561
10562 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10563
10564         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10565         previous definition in include/ntsecapi.h.
10566         * include/ntsecapi.h: Vice versa.
10567
10568 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10569
10570         * include/winnt.h: Add defines for group attributes.
10571         Add define for SYSTEM_LUID.
10572         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10573         `PTOKEN_PRIMARY_GROUP'.
10574
10575 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10576
10577         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10578         for cygwin.
10579
10580 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10581
10582         * include/winsock2.h: Protect one *more* newlib defines when compiling
10583         cygwin.
10584
10585 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10586
10587         * include/winsock2.h: Protect some more newlib defines when compiling
10588         cygwin.
10589
10590 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10591
10592         * include/winsock.h: Protect some more newlib defines when compiling
10593         cygwin.
10594
10595 2001-04-17  Egor Duda  <deo@logos-m.ru>
10596
10597         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10598         as __extenstion__ when appropriate.
10599         * include/mmsystem.h: Mark anonymous structs and unions as
10600         __extension__ to prevent compiler warning when invoked with
10601         -pedantic
10602         * include/oaidl.h: Ditto.
10603         * include/objidl.h: Ditto.
10604         * include/olectl.h: Ditto.
10605         * include/prsht.h: Ditto.
10606         * include/shlobj.h: Ditto.
10607         * include/winbase.h: Ditto.
10608         * include/winnt.h: Ditto.
10609         * include/wtypes.h: Ditto.
10610
10611 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10612
10613         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10614         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10615
10616 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10617
10618         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10619
10620 2001-04-11  John Fortin  <fortinj@attglobal.net>
10621
10622         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10623         (*LPBOOL): Ditto.
10624
10625 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10626
10627         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10628         code will be included in every module which includes this header.
10629         (GetFiberData): Ditto.
10630
10631 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10632
10633         * include/winnt.h (GetCurrentFiber): Fix typo.
10634
10635 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10636
10637         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10638         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10639         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10640         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10641         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10642
10643         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10644         (GetCurrentFiber): Ditto.
10645         Thanks to: Andy Younger  <AndyY@redlemon.com>
10646
10647         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10648         DirectX 8 from complaining.
10649         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10650
10651 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10652
10653         * include/commctrl.h Updated TreeView and ListView defines and macros.
10654
10655 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10656
10657         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10658         and above.
10659
10660 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10661         * include/winuser.h (VK_KANA): New definition.
10662         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10663
10664 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10665
10666         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10667         (RT_FONT): Ditto.
10668         * include/basetsd.h (INT32): Ditto.
10669         * include/windef.h (ATOM): Ditto.
10670         (BOOL): Ditto.
10671         (BYTE): Ditto.
10672         * include/winbase.h (FreeResource): Ditto.
10673         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10674
10675 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10676
10677         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10678         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10679         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10680         macro now defined in newlib sys/types.h.  Emit warning if defined.
10681         * include/winsock2.h: Ditto.
10682         * include/windows.h (Win32_Winsock): Replace with new macros
10683         __USE_W32_SOCKETS and warn of deprecation.
10684
10685 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10686
10687         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10688         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10689
10690 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10691
10692         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10693         (TB_GETBUTTONSIZE): Ditto.
10694         (TCS_HOTTRACK): Ditto.
10695         Thanks to: Chris Hansen <popeofpop@softhome.net>
10696
10697 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10698
10699         * Makefile.in: (snapshot): Add target.
10700         * lib/Makefile.in: (install-headers): Use installdir variable.
10701         (installdir): Set value based on target-alias.
10702
10703 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10704
10705         * include/w32api.h: (_W32API_VERSION): Remove.
10706         (__W32API_VERSION): Add.
10707         (__W32API_MAJOR_VERSION): Ditto.
10708         (__W32API_MINOR_VERSION): Ditto.
10709
10710 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10711
10712         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10713         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10714         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10715         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10716
10717 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10718
10719         * include/mswsock.h: New file.
10720         * include/ws2tcpip.h: New file.
10721         * include/winsock.h (IPPROTO_IGMP): New define.
10722         (IPPROTO_GGP): Correct value.
10723         (SO_* macros): Remove mswsock defines.
10724         (TCP_BSDURGENT): Likewise.
10725         (IP_* macros): Add comment warning of WinSock2 incompatibility
10726         (WSARecvEx): Remove mswsock prototype.
10727         (TransmitFile): Likewise.
10728         (AcceptEx): Likewise.
10729         (GetAcceptExSockaddrs): Likewise.
10730         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10731         (#include <mswsock.h>): Add directive and explanatory comment
10732         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10733         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10734         (#include <winsock.h>): Replace directive with winsock.h file content
10735         The following changes apply to the merged file:
10736         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10737         (SOMAXCONN): Likewise
10738         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10739         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10740         in ws2tcpip.h)
10741         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10742         (FD_*_BIT and FD_* defines): Place together and extend to
10743         FD_MAX_EVENTS 10
10744         (AF* defines): Extend to AF_MAX 10
10745         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10746         (WSAUnhookBlockingHook): Likewise.
10747         (WSASetBlockingHook): Likewise.
10748         (WSACancelBlockingCall): Likewise.
10749         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10750         (#include <mswsock.h>): Delete directive inherited from winsock.h
10751         (WSA_QOS* defines): Add QualityOfService error codes.
10752         (SIO_* defines): Add new macros
10753         * include/ipexport.h (IP_STATUS flags): Add definitions.
10754         (IP_FLAG_DF): Likewise.
10755         (IP_OPT_* ): Likewise.
10756         (struct ip_option_information): Likewise.
10757         (struct icmp_echo_reply): Likewise.
10758
10759 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10760
10761         * include/commctrl.h: Revert TEXT change.
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/winnt.h: Ditto.
10773
10774 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10775
10776         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10777         * include/lmalert.h: Ditto.
10778         * include/lmcons.h: Ditto.
10779         * include/lmsname.h: Ditto.
10780         * include/lmsvc.h: Ditto.
10781         * include/ntsecapi.h: Ditto.
10782         * include/oledlg.h: Ditto.
10783         * include/ras.h: Ditto.
10784         * include/regstr.h: Ditto.
10785         * include/richedit.h: Ditto.
10786         * include/wininet.h: Ditto.
10787         * include/w32api.h: New File.
10788
10789 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10790
10791         * include/shlobj.h: Add missing SLR_* flags.
10792
10793 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10794
10795         * lib/Makefile.in: (host_alias): Add variable.
10796         (host_build): Ditto:
10797         (xinstall): Removed
10798         (xinstall-libraries): Ditto.
10799         (xinstall-headers): Ditto.
10800         (xuninstall): Ditto.
10801         (xuninstall-libraries): Ditto.
10802         (xuninstall-headers): Ditto.
10803         * Makefile.in: (host_alias): Add variable.
10804         (build_alias): Ditto.
10805
10806 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10807
10808         * include/winnt.h: (__TEXT): Add private macro.
10809         (_TEXT): Modify definition to use __TEXT.
10810         (_T): Ditto.
10811         This change allows the passing of a MACRO as an argument and have that
10812         MACRO resolved first.
10813         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10814
10815 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10816
10817         * Makefile.in: Increment VERSION to 0.5
10818         * include/winnt.h: Change TEXT to _TEXT throughout.
10819         (SID_RELEASE): Define.
10820         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10821
10822 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10823
10824         * Apply Phil Krylov patches.
10825         2001-01-19  Phil Krylov  <phil@mail.ru>
10826         * include/commctrl.h: (HDI_IMAGE) New definition.
10827         (HDI_DI_SETITEM) Ditto.
10828         (HDI_ORDER) Ditto.
10829         (HDI_FILTER) Ditto.
10830         (HDF_BITMAP_ON_RIGHT) Ditto.
10831         (HDF_IMAGE) Ditto.
10832         (HDM_SETORDERARRAY) Ditto.
10833         (Header_SetOrderArray) Ditto.
10834         (ICC_BAR_CLASSES) Ditto.
10835         (struct _HD_ITEMA) Change definition.
10836         (struct _HD_ITEMW) Ditto.
10837         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10838         (InitCommonControlsEx()) Ditto.
10839         2001-01-23  Phil Krylov  <phil@mail.ru>
10840         * include/richedit.h: Many Richedit 2.0 definitions.
10841
10842 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10843
10844         * include/winuser.h: (IDC_HAND)  New resource identifier.
10845         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10846
10847 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10848
10849         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10850         Fix typo's.
10851
10852 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10853
10854         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10855         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10856         Thanks To: <bge@users.sourceforge.net>
10857
10858 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10859
10860         * Apply Danny Smith patch 102386
10861         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10862         * lib/rasapi32.def: add symbols available in NT4 and W2k
10863
10864 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10865
10866         * Apply Danny Smith patch 102382
10867         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10868         * lib/mswsock.def: remove leading underscores from symbol names
10869
10870 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10871
10872         * Apply Danny Smith patch 102446
10873         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10874         * include/sql.h (ODBCVER): change default to 0x0351.
10875         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10876         (SQLColAttributes): likewise.
10877         (SQLBindParam): add prototype for ODBC 3.x function.
10878         (SQLCloseCursor): likewise.
10879         (SQLColAttribute): likewise.
10880         (SQLCopyDesc):likewise.
10881         (SQLEndTran): likewise.
10882         (SQLFetchScroll): likewise.
10883         (SQLGetConnectAttr): likewise.
10884         (SQLGetDescField): likewise.
10885         (SQLGetDescRec): likewise.
10886         (SQLGetDiagField): likewise.
10887         (SQLGetDiagRec): likewise.
10888         (SQLGetEnvAttr): likewise.
10889         (SQLGetStmtAttr): likewise.
10890         (SQLSetConnectAttr): likewise.
10891         (SQLSetDescField):likewise.
10892         (SQLSetDescRec): likewise.
10893         (SQLSetEnvAttr): likewise.
10894         (SQLSetStmtAttr): likewise.
10895         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10896         _WIN64 compatability;
10897         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10898         (SQL_ACTIVE_CONNECTIONS): likewise.
10899         (SQL_ACTIVE_STATEMENTS): likewise.
10900         (SQL_ALL_EXCEPT_LIKE): likewise.
10901         (SQL_API_ALL_FUNCTIONS): likewise.
10902         (SQL_API_LOADBYORDINAL): likewise.
10903         (SQL_API_SQLBINDPARAMETER): likewise.
10904         (SQL_API_SQLBROWSECONNECT): likewise.
10905         (SQL_API_SQLCOLATTRIBUTES): likewise.
10906         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10907         (SQL_API_SQLDESCRIBEPARAM): likewise.
10908         (SQL_API_SQLDRIVERCONNECT): likewise.
10909         (SQL_API_SQLDRIVERS): likewise.
10910         (SQL_API_SQLEXTENDEDFETCH): likewise.
10911         (SQL_API_SQLFOREIGNKEYS): likewise.
10912         (SQL_API_SQLMORERESULTS): likewise.
10913         (SQL_API_SQLNATIVESQL): likewise.
10914         (SQL_API_SQLNUMPARAMS): likewise.
10915         (SQL_API_SQLPARAMOPTIONS): likewise.
10916         (SQL_API_SQLPRIMARYKEYS): likewise.
10917         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10918         (SQL_API_SQLPROCEDURES): likewise.
10919         (SQL_API_SQLSETPOS): likewise.
10920         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10921         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10922         (SQL_ASYNC_ENABLE): likewise.
10923         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10924         (SQL_ASYNC_ENABLE_OFF): likewise.
10925         (SQL_ASYNC_ENABLE_ON): likewise.
10926         (SQL_ATTR_READONLY): likewise.
10927         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10928         (SQL_ATTR_WRITE): likewise.
10929         (SQL_AUTOCOMMIT): likewise.
10930         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10931         (SQL_AUTOCOMMIT_OFF): likewise.
10932         (SQL_AUTOCOMMIT_ON): likewise.
10933         (SQL_BEST_ROWID): likewise.
10934         (SQL_BIGINT): likewise.
10935         (SQL_BINARY): likewise.
10936         (SQL_BIND_BY_COLUMN): likewise.
10937         (SQL_BIND_TYPE): likewise.
10938         (SQL_BIND_TYPE_DEFAULT): likewise.
10939         (SQL_BIT): likewise.
10940         (SQL_BOOKMARK_PERSISTENCE): likewise.
10941         (SQL_BP_CLOSE): likewise.
10942         (SQL_BP_DELETE): likewise.
10943         (SQL_BP_DROP): likewise.
10944         (SQL_BP_OTHER_HSTMT): likewise.
10945         (SQL_BP_SCROLL): likewise.
10946         (SQL_BP_TRANSACTION): likewise.
10947         (SQL_BP_UPDATE): likewise.
10948         (SQL_C_BINARY): likewise.
10949         (SQL_C_BIT): likewise.
10950         (SQL_C_BOOKMARK): likewise.
10951         (SQL_C_CHAR): likewise.
10952         (SQL_C_DATE): likewise.
10953         (SQL_C_DEFAULT): likewise.
10954         (SQL_C_DOUBLE): likewise.
10955         (SQL_C_FLOAT): likewise.
10956         (SQL_C_LONG): likewise.
10957         (SQL_C_SHORT): likewise.
10958         (SQL_C_SLONG): likewise.
10959         (SQL_C_SSHORT): likewise.
10960         (SQL_C_STINYINT): likewise.
10961         (SQL_C_TIME): likewise.
10962         (SQL_C_TIMESTAMP): likewise.
10963         (SQL_C_TINYINT): likewise.
10964         (SQL_C_ULONG): likewise.
10965         (SQL_C_USHORT): likewise.
10966         (SQL_C_UTINYINT): likewise.
10967         (SQL_CB_NON_NULL): likewise.
10968         (SQL_CB_NULL): likewise.
10969         (SQL_CC_CLOSE): likewise.
10970         (SQL_CC_DELETE): likewise.
10971         (SQL_CC_PRESERVE): likewise.
10972         (SQL_CN_ANY): likewise.
10973         (SQL_CN_DIFFERENT): likewise.
10974         (SQL_CN_NONE): likewise.
10975         (SQL_COLATT_OPT_MAX): likewise.
10976         (SQL_COLATT_OPT_MIN): likewise.
10977         (SQL_COLUMN_ALIAS): likewise.
10978         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10979         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10980         (SQL_COLUMN_COUNT): likewise.
10981         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10982         (SQL_COLUMN_DRIVER_START): likewise.
10983         (SQL_COLUMN_LABEL): likewise.
10984         (SQL_COLUMN_LENGTH): likewise.
10985         (SQL_COLUMN_MONEY): likewise.
10986         (SQL_COLUMN_NAME): likewise.
10987         (SQL_COLUMN_NULLABLE): likewise.
10988         (SQL_COLUMN_OWNER_NAME): likewise.
10989         (SQL_COLUMN_PRECISION): likewise.
10990         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10991         (SQL_COLUMN_SCALE): likewise.
10992         (SQL_COLUMN_SEARCHABLE): likewise.
10993         (SQL_COLUMN_TABLE_NAME): likewise.
10994         (SQL_COLUMN_TYPE): likewise.
10995         (SQL_COLUMN_TYPE_NAME): likewise.
10996         (SQL_COLUMN_UNSIGNED): likewise.
10997         (SQL_COLUMN_UPDATABLE): likewise.
10998         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10999         (SQL_CONCUR_DEFAULT): likewise.
11000         (SQL_CONCUR_LOCK): likewise.
11001         (SQL_CONCUR_READ_ONLY): likewise.
11002         (SQL_CONCUR_ROWVER): likewise.
11003         (SQL_CONCUR_TIMESTAMP): likewise.
11004         (SQL_CONCUR_VALUES): likewise.
11005         (SQL_CONCURRENCY): likewise.
11006         (SQL_CONN_OPT_MAX): likewise.
11007         (SQL_CONN_OPT_MIN): likewise.
11008         (SQL_CONNECT_OPT_DRVR_START): likewise.
11009         (SQL_CONVERT_BIGINT): likewise.
11010         (SQL_CONVERT_BINARY): likewise.
11011         (SQL_CONVERT_BIT): likewise.
11012         (SQL_CONVERT_CHAR): likewise.
11013         (SQL_CONVERT_DATE): likewise.
11014         (SQL_CONVERT_DECIMAL): likewise.
11015         (SQL_CONVERT_DOUBLE): likewise.
11016         (SQL_CONVERT_FLOAT): likewise.
11017         (SQL_CONVERT_FUNCTIONS): likewise.
11018         (SQL_CONVERT_INTEGER): likewise.
11019         (SQL_CONVERT_LONGVARBINARY): likewise.
11020         (SQL_CONVERT_LONGVARCHAR): likewise.
11021         (SQL_CONVERT_NUMERIC): likewise.
11022         (SQL_CONVERT_REAL): likewise.
11023         (SQL_CONVERT_SMALLINT): likewise.
11024         (SQL_CONVERT_TIME): likewise.
11025         (SQL_CONVERT_TIMESTAMP): likewise.
11026         (SQL_CONVERT_TINYINT): likewise.
11027         (SQL_CONVERT_VARBINARY): likewise.
11028         (SQL_CONVERT_VARCHAR): likewise.
11029         (SQL_CORRELATION_NAME): likewise.
11030         (SQL_CR_CLOSE): likewise.
11031         (SQL_CR_DELETE): likewise.
11032         (SQL_CR_PRESERVE): likewise.
11033         (SQL_CUR_DEFAULT): likewise.
11034         (SQL_CUR_USE_DRIVER): likewise.
11035         (SQL_CUR_USE_IF_NEEDED): likewise.
11036         (SQL_CUR_USE_ODBC): likewise.
11037         (SQL_CURRENT_QUALIFIER): likewise.
11038         (SQL_CURSOR_DYNAMIC): likewise.
11039         (SQL_CURSOR_FORWARD_ONLY): likewise.
11040         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
11041         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
11042         (SQL_CURSOR_STATIC): likewise.
11043         (SQL_CURSOR_TYPE): likewise.
11044         (SQL_CURSOR_TYPE_DEFAULT): likewise.
11045         (SQL_CVT_BIGINT): likewise.
11046         (SQL_CVT_BINARY): likewise.
11047         (SQL_CVT_BIT): likewise.
11048         (SQL_CVT_CHAR): likewise.
11049         (SQL_CVT_DATE): likewise.
11050         (SQL_CVT_DECIMAL): likewise.
11051         (SQL_CVT_DOUBLE): likewise.
11052         (SQL_CVT_FLOAT): likewise.
11053         (SQL_CVT_INTEGER): likewise.
11054         (SQL_CVT_LONGVARBINARY): likewise.
11055         (SQL_CVT_LONGVARCHAR): likewise.
11056         (SQL_CVT_NUMERIC): likewise.
11057         (SQL_CVT_REAL): likewise.
11058         (SQL_CVT_SMALLINT): likewise.
11059         (SQL_CVT_TIME): likewise.
11060         (SQL_CVT_TIMESTAMP): likewise.
11061         (SQL_CVT_TINYINT): likewise.
11062         (SQL_CVT_VARBINARY): likewise.
11063         (SQL_CVT_VARCHAR): likewise.
11064         (SQL_DATABASE_NAME): likewise.
11065         (SQL_DATE): likewise.
11066         (SQL_DRIVER_HDBC): likewise.
11067         (SQL_DRIVER_HENV): likewise.
11068         (SQL_DRIVER_HLIB): likewise.
11069         (SQL_DRIVER_HSTMT): likewise.
11070         (SQL_DRIVER_NAME): likewise.
11071         (SQL_DRIVER_ODBC_VER): likewise.
11072         (SQL_DRIVER_VER): likewise.
11073         (SQL_ENSURE): likewise.
11074         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
11075         (SQL_EXT_API_LAST): likewise.
11076         (SQL_EXT_API_START): likewise.
11077         (SQL_FD_FETCH_BOOKMARK): likewise.
11078         (SQL_FD_FETCH_PREV): likewise.
11079         (SQL_FD_FETCH_RESUME): likewise.
11080         (SQL_FETCH_PREV): likewise.
11081         (SQL_FETCH_RESUME): likewise.
11082         (SQL_FILE_NOT_SUPPORTED): likewise.
11083         (SQL_FILE_QUALIFIER): likewise.
11084         (SQL_FILE_TABLE): likewise.
11085         (SQL_FILE_USAGE): likewise.
11086         (SQL_FN_CVT_CONVERT): likewise.
11087         (SQL_FN_NUM_ABS): likewise.
11088         (SQL_FN_NUM_ACOS): likewise.
11089         (SQL_FN_NUM_ASIN): likewise.
11090         (SQL_FN_NUM_ATAN): likewise.
11091         (SQL_FN_NUM_ATAN2): likewise.
11092         (SQL_FN_NUM_CEILING): likewise.
11093         (SQL_FN_NUM_COS): likewise.
11094         (SQL_FN_NUM_COT): likewise.
11095         (SQL_FN_NUM_DEGREES): likewise.
11096         (SQL_FN_NUM_EXP): likewise.
11097         (SQL_FN_NUM_FLOOR): likewise.
11098         (SQL_FN_NUM_LOG): likewise.
11099         (SQL_FN_NUM_LOG10): likewise.
11100         (SQL_FN_NUM_MOD): likewise.
11101         (SQL_FN_NUM_PI): likewise.
11102         (SQL_FN_NUM_POWER): likewise.
11103         (SQL_FN_NUM_RADIANS): likewise.
11104         (SQL_FN_NUM_RAND): likewise.
11105         (SQL_FN_NUM_ROUND): likewise.
11106         (SQL_FN_NUM_SIGN): likewise.
11107         (SQL_FN_NUM_SIN): likewise.
11108         (SQL_FN_NUM_SQRT): likewise.
11109         (SQL_FN_NUM_TAN): likewise.
11110         (SQL_FN_NUM_TRUNCATE): likewise.
11111         (SQL_FN_STR_ASCII): likewise.
11112         (SQL_FN_STR_CHAR): likewise.
11113         (SQL_FN_STR_CONCAT): likewise.
11114         (SQL_FN_STR_DIFFERENCE): likewise.
11115         (SQL_FN_STR_INSERT): likewise.
11116         (SQL_FN_STR_LCASE): likewise.
11117         (SQL_FN_STR_LEFT): likewise.
11118         (SQL_FN_STR_LENGTH): likewise.
11119         (SQL_FN_STR_LOCATE): likewise.
11120         (SQL_FN_STR_LOCATE_2): likewise.
11121         (SQL_FN_STR_LTRIM): likewise.
11122         (SQL_FN_STR_REPEAT): likewise.
11123         (SQL_FN_STR_REPLACE): likewise.
11124         (SQL_FN_STR_RIGHT): likewise.
11125         (SQL_FN_STR_RTRIM): likewise.
11126         (SQL_FN_STR_SOUNDEX): likewise.
11127         (SQL_FN_STR_SPACE): likewise.
11128         (SQL_FN_STR_SUBSTRING): likewise.
11129         (SQL_FN_STR_UCASE): likewise.
11130         (SQL_FN_SYS_DBNAME): likewise.
11131         (SQL_FN_SYS_IFNULL): likewise.
11132         (SQL_FN_SYS_USERNAME): likewise.
11133         (SQL_FN_TD_CURDATE): likewise.
11134         (SQL_FN_TD_CURTIME): likewise.
11135         (SQL_FN_TD_DAYNAME): likewise.
11136         (SQL_FN_TD_DAYOFMONTH): likewise.
11137         (SQL_FN_TD_DAYOFWEEK): likewise.
11138         (SQL_FN_TD_DAYOFYEAR): likewise.
11139         (SQL_FN_TD_HOUR): likewise.
11140         (SQL_FN_TD_MINUTE): likewise.
11141         (SQL_FN_TD_MONTH): likewise.
11142         (SQL_FN_TD_MONTHNAME): likewise.
11143         (SQL_FN_TD_NOW): likewise.
11144         (SQL_FN_TD_QUARTER): likewise.
11145         (SQL_FN_TD_SECOND): likewise.
11146         (SQL_FN_TD_TIMESTAMPadd): likewise.
11147         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
11148         (SQL_FN_TD_WEEK): likewise.
11149         (SQL_FN_TD_YEAR): likewise.
11150         (SQL_FN_TSI_DAY): likewise.
11151         (SQL_FN_TSI_FRAC_SECOND): likewise.
11152         (SQL_FN_TSI_HOUR): likewise.
11153         (SQL_FN_TSI_MINUTE): likewise.
11154         (SQL_FN_TSI_MONTH): likewise.
11155         (SQL_FN_TSI_QUARTER): likewise.
11156         (SQL_FN_TSI_SECOND): likewise.
11157         (SQL_FN_TSI_WEEK): likewise.
11158         (SQL_FN_TSI_YEAR): likewise.
11159         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
11160         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
11161         (SQL_GB_NO_RELATION): likewise.
11162         (SQL_GB_NOT_SUPPORTED): likewise.
11163         (SQL_GD_BLOCK): likewise.
11164         (SQL_GD_BOUND): likewise.
11165         (SQL_GET_BOOKMARK): likewise.
11166         (SQL_GROUP_BY): likewise.
11167         (SQL_INFO_DRIVER_START): likewise.
11168         (SQL_INFO_FIRST): likewise.
11169         (SQL_INFO_LAST): likewise.
11170         (SQL_INTERVAL_DAY): likewise.
11171         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
11172         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
11173         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
11174         (SQL_INTERVAL_HOUR): likewise.
11175         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
11176         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
11177         (SQL_INTERVAL_MINUTE): likewise.
11178         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11179         (SQL_INTERVAL_MONTH): likewise.
11180         (SQL_INTERVAL_SECOND): likewise.
11181         (SQL_INTERVAL_YEAR): likewise.
11182         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11183         (SQL_KEYSET_SIZE): likewise.
11184         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11185         (SQL_KEYWORDS): likewise.
11186         (SQL_LCK_EXCLUSIVE): likewise.
11187         (SQL_LCK_NO_CHANGE): likewise.
11188         (SQL_LCK_UNLOCK): likewise.
11189         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11190         (SQL_LIKE_ONLY): likewise.
11191         (SQL_LOCK_TYPES): likewise.
11192         (SQL_LOGIN_TIMEOUT): likewise.
11193         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11194         (SQL_LONGVARBINARY): likewise.
11195         (SQL_LONGVARCHAR): likewise.
11196         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11197         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11198         (SQL_MAX_DSN_LENGTH): likewise.
11199         (SQL_MAX_LENGTH): likewise.
11200         (SQL_MAX_LENGTH_DEFAULT): likewise.
11201         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11202         (SQL_MAX_OWNER_NAME_LEN): likewise.
11203         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11204         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11205         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11206         (SQL_MAX_ROWS): likewise.
11207         (SQL_MAX_ROWS_DEFAULT): likewise.
11208         (SQL_MODE_DEFAULT): likewise.
11209         (SQL_MODE_READ_ONLY): likewise.
11210         (SQL_MODE_READ_WRITE): likewise.
11211         (SQL_MULT_RESULT_SETS): likewise.
11212         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11213         (SQL_NC_END): likewise.
11214         (SQL_NC_START): likewise.
11215         (SQL_NEED_LONG_DATA_LEN): likewise.
11216         (SQL_NNC_NON_NULL): likewise.
11217         (SQL_NNC_NULL): likewise.
11218         (SQL_NO_TOTAL): likewise.
11219         (SQL_NON_NULLABLE_COLUMNS): likewise.
11220         (SQL_NOSCAN): likewise.
11221         (SQL_NOSCAN_DEFAULT): likewise.
11222         (SQL_NOSCAN_OFF): likewise.
11223         (SQL_NOSCAN_ON): likewise.
11224         (SQL_NUM_EXTENSIONS): likewise.
11225         (SQL_NUM_FUNCTIONS): likewise.
11226         (SQL_NUMERIC_FUNCTIONS): likewise.
11227         (SQL_OAC_LEVEL1): likewise.
11228         (SQL_OAC_LEVEL2): likewise.
11229         (SQL_OAC_NONE): likewise.
11230         (SQL_ODBC_API_CONFORMANCE): likewise.
11231         (SQL_ODBC_CURSORS): likewise.
11232         (SQL_ODBC_KEYWORDS): likewise.
11233         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11234         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11235         (SQL_ODBC_SQL_OPT_IEF): likewise.
11236         (SQL_ODBC_VER): likewise.
11237         (SQL_OPT_TRACE): likewise.
11238         (SQL_OPT_TRACE_DEFAULT): likewise.
11239         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11240         (SQL_OPT_TRACE_OFF): likewise.
11241         (SQL_OPT_TRACE_ON): likewise.
11242         (SQL_OPT_TRACEFILE): likewise.
11243         (SQL_OSC_CORE): likewise.
11244         (SQL_OSC_EXTENDED): likewise.
11245         (SQL_OSC_MINIMUM): likewise.
11246         (SQL_OSCC_COMPLIANT): likewise.
11247         (SQL_OSCC_NOT_COMPLIANT): likewise.
11248         (SQL_OU_DML_STATEMENTS): likewise.
11249         (SQL_OU_INDEX_DEFINITION): likewise.
11250         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11251         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11252         (SQL_OU_TABLE_DEFINITION): likewise.
11253         (SQL_OUTER_JOINS): likewise.
11254         (SQL_OWNER_TERM): likewise.
11255         (SQL_OWNER_USAGE): likewise.
11256         (SQL_PACKET_SIZE): likewise.
11257         (SQL_PC_NOT_PSEUDO): likewise.
11258         (SQL_POS_add): likewise.
11259         (SQL_POS_DELETE): likewise.
11260         (SQL_POS_OPERATIONS): likewise.
11261         (SQL_POS_POSITION): likewise.
11262         (SQL_POS_REFRESH): likewise.
11263         (SQL_POS_UPDATE): likewise.
11264         (SQL_POSITIONED_STATEMENTS): likewise.
11265         (SQL_PROCEDURE_TERM): likewise.
11266         (SQL_PROCEDURES): likewise.
11267         (SQL_PS_POSITIONED_DELETE): likewise.
11268         (SQL_PS_POSITIONED_UPDATE): likewise.
11269         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11270         (SQL_QL_END): likewise.
11271         (SQL_QL_START): likewise.
11272         (SQL_QU_DML_STATEMENTS): likewise.
11273         (SQL_QU_INDEX_DEFINITION): likewise.
11274         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11275         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11276         (SQL_QU_TABLE_DEFINITION): likewise.
11277         (SQL_QUALIFIER_LOCATION): likewise.
11278         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11279         (SQL_QUALIFIER_TERM): likewise.
11280         (SQL_QUALIFIER_USAGE): likewise.
11281         (SQL_QUERY_TIMEOUT): likewise.
11282         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11283         (SQL_QUICK): likewise.
11284         (SQL_QUIET_MODE): likewise.
11285         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11286         (SQL_RD_DEFAULT): likewise.
11287         (SQL_RD_OFF): likewise.
11288         (SQL_RD_ON): likewise.
11289         (SQL_RETRIEVE_DATA): likewise.
11290         (SQL_ROW_NUMBER): likewise.
11291         (SQL_ROW_UPDATES): likewise.
11292         (SQL_ROWSET_SIZE): likewise.
11293         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11294         (SQL_ROWVER): likewise.
11295         (SQL_SC_NON_UNIQUE): likewise.
11296         (SQL_SC_TRY_UNIQUE): likewise.
11297         (SQL_SC_UNIQUE): likewise.
11298         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11299         (SQL_SCROLL_DYNAMIC): likewise.
11300         (SQL_SCROLL_FORWARD_ONLY): likewise.
11301         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11302         (SQL_SCROLL_OPTIONS): likewise.
11303         (SQL_SCROLL_STATIC): likewise.
11304         (SQL_SEARCHABLE): likewise.
11305         (SQL_SIGNED_OFFSET): likewise.
11306         (SQL_SIMULATE_CURSOR): likewise.
11307         (SQL_SO_DYNAMIC): likewise.
11308         (SQL_SO_FORWARD_ONLY): likewise.
11309         (SQL_SO_KEYSET_DRIVEN): likewise.
11310         (SQL_SO_MIXED): likewise.
11311         (SQL_SO_STATIC): likewise.
11312         (SQL_SPEC_MAJOR): likewise.
11313         (SQL_SPEC_MINOR): likewise.
11314         (SQL_SPEC_STRING): likewise.
11315         (SQL_SQ_COMPARISON): likewise.
11316         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11317         (SQL_SQ_EXISTS): likewise.
11318         (SQL_SQ_IN): likewise.
11319         (SQL_SQ_QUANTIFIED): likewise.
11320         (SQL_SQLSTATE_SIZE): likewise.
11321         (SQL_SS_addITIONS): likewise.
11322         (SQL_SS_DELETIONS): likewise.
11323         (SQL_SS_UPDATES): likewise.
11324         (SQL_STATIC_SENSITIVITY): likewise.
11325         (SQL_STMT_OPT_MAX): likewise.
11326         (SQL_STMT_OPT_MIN): likewise.
11327         (SQL_STRING_FUNCTIONS): likewise.
11328         (SQL_SUBQUERIES): likewise.
11329         (SQL_SYSTEM_FUNCTIONS): likewise.
11330         (SQL_TABLE_STAT): likewise.
11331         (SQL_TABLE_TERM): likewise.
11332         (SQL_TIME): likewise.
11333         (SQL_TIMEDATE_add_INTERVALS): likewise.
11334         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11335         (SQL_TIMEDATE_FUNCTIONS): likewise.
11336         (SQL_TIMESTAMP): likewise.
11337         (SQL_TINYINT): likewise.
11338         (SQL_TRANSLATE_DLL): likewise.
11339         (SQL_TRANSLATE_OPTION): likewise.
11340         (SQL_TXN_ISOLATION): likewise.
11341         (SQL_TXN_VERSIONING): likewise.
11342         (SQL_TYPE_DRIVER_END): likewise.
11343         (SQL_TYPE_DRIVER_START): likewise.
11344         (SQL_TYPE_MAX): likewise.
11345         (SQL_TYPE_MIN): likewise.
11346         (SQL_TYPE_NULL): likewise.
11347         (SQL_U_UNION): likewise.
11348         (SQL_U_UNION_ALL): likewise.
11349         (SQL_UB_DEFAULT): likewise.
11350         (SQL_UB_OFF): likewise.
11351         (SQL_UB_ON): likewise.
11352         (SQL_UNICODE): likewise.
11353         (SQL_UNICODE_CHAR): likewise.
11354         (SQL_UNICODE_LONGVARCHAR): likewise.
11355         (SQL_UNICODE_VARCHAR): likewise.
11356         (SQL_UNION): likewise.
11357         (SQL_UNSEARCHABLE): likewise.
11358         (SQL_UNSIGNED_OFFSET): likewise.
11359         (SQL_USE_BOOKMARKS): likewise.
11360         (SQL_VARBINARY): likewise.
11361         (SQL_TRUE): add define for ODBC3.x.
11362         (SQL_FALSE): likewise.
11363         (SQL_AM_CONNECTION): likewise.
11364         (SQL_AM_NONE): likewise.
11365         (SQL_AM_STATEMENT): likewise.
11366         (SQL_API_SQLALLOCHANDLE): likewise.
11367         (SQL_API_SQLBINDPARAM): likewise.
11368         (SQL_API_SQLCLOSECURSOR): likewise.
11369         (SQL_API_SQLCOLATTRIBUTE): likewise.
11370         (SQL_API_SQLCOPYDESC): likewise.
11371         (SQL_API_SQLENDTRAN): likewise.
11372         (SQL_API_SQLFETCHSCROLL): likewise.
11373         (SQL_API_SQLFREEHANDLE): likewise.
11374         (SQL_API_SQLGETCONNECTATTR): likewise.
11375         (SQL_API_SQLGETDESCFIELD): likewise.
11376         (SQL_API_SQLGETDESCREC): likewise.
11377         (SQL_API_SQLGETDIAGFIELD): likewise.
11378         (SQL_API_SQLGETDIAGREC): likewise.
11379         (SQL_API_SQLGETENVATTR): likewise.
11380         (SQL_API_SQLGETSTMTATTR): likewise.
11381         (SQL_API_SQLSETCONNECTATTR): likewise.
11382         (SQL_API_SQLSETDESCFIELD): likewise.
11383         (SQL_API_SQLSETDESCREC): likewise.
11384         (SQL_API_SQLSETENVATTR): likewise.
11385         (SQL_API_SQLSETSTMTATTR): likewise.
11386         (SQL_ARD_TYPE): likewise.
11387         (SQL_AT_add_CONSTRAINT): likewise.
11388         (SQL_ATTR_APP_PARAM_DESC): likewise.
11389         (SQL_ATTR_APP_ROW_DESC): likewise.
11390         (SQL_ATTR_AUTO_IPD): likewise.
11391         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11392         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11393         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11394         (SQL_ATTR_IMP_ROW_DESC): likewise.
11395         (SQL_ATTR_METADATA_ID): likewise.
11396         (SQL_ATTR_OUTPUT_NTS): likewise.
11397         (SQL_CATALOG_NAME): likewise.
11398         (SQL_CODE_DATE): likewise.
11399         (SQL_CODE_TIME): likewise.
11400         (SQL_CODE_TIMESTAMP): likewise.
11401         (SQL_COLLATION_SEQ): likewise.
11402         (SQL_CURSOR_SENSITIVITY): likewise.
11403         (SQL_DATE_LEN): likewise.
11404         (SQL_DATETIME): likewise.
11405         (SQL_DEFAULT): likewise.
11406         (SQL_DESC_ALLOC_AUTO): likewise.
11407         (SQL_DESC_ALLOC_TYPE): likewise.
11408         (SQL_DESC_ALLOC_USER): likewise.
11409         (SQL_DESC_COUNT): likewise.
11410         (SQL_DESC_DATA_PTR): likewise.
11411         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11412         (SQL_DESC_INDICATOR_PTR): likewise.
11413         (SQL_DESC_LENGTH): likewise.
11414         (SQL_DESC_NAME): likewise.
11415         (SQL_DESC_NULLABLE): likewise.
11416         (SQL_DESC_OCTET_LENGTH): likewise.
11417         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11418         (SQL_DESC_PRECISION): likewise.
11419         (SQL_DESC_SCALE): likewise.
11420         (SQL_DESC_TYPE): likewise.
11421         (SQL_DESC_UNNAMED): likewise.
11422         (SQL_DESCRIBE_PARAMETER): likewise.
11423         (SQL_DIAG_ALTER_DOMAIN): likewise.
11424         (SQL_DIAG_ALTER_TABLE): likewise.
11425         (SQL_DIAG_CALL): likewise.
11426         (SQL_DIAG_CLASS_ORIGIN): likewise.
11427         (SQL_DIAG_CONNECTION_NAME): likewise.
11428         (SQL_DIAG_CREATE_ASSERTION): likewise.
11429         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11430         (SQL_DIAG_CREATE_COLLATION): likewise.
11431         (SQL_DIAG_CREATE_DOMAIN): likewise.
11432         (SQL_DIAG_CREATE_INDEX): likewise.
11433         (SQL_DIAG_CREATE_SCHEMA): likewise.
11434         (SQL_DIAG_CREATE_TABLE): likewise.
11435         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11436         (SQL_DIAG_CREATE_VIEW): likewise.
11437         (SQL_DIAG_DELETE_WHERE): likewise.
11438         (SQL_DIAG_DROP_ASSERTION): likewise.
11439         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11440         (SQL_DIAG_DROP_COLLATION): likewise.
11441         (SQL_DIAG_DROP_DOMAIN): likewise.
11442         (SQL_DIAG_DROP_INDEX): likewise.
11443         (SQL_DIAG_DROP_SCHEMA): likewise.
11444         (SQL_DIAG_DROP_TABLE): likewise.
11445         (SQL_DIAG_DROP_TRANSLATION): likewise.
11446         (SQL_DIAG_DROP_VIEW): likewise.
11447         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11448         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11449         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11450         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11451         (SQL_DIAG_GRANT): likewise.
11452         (SQL_DIAG_INSERT): likewise.
11453         (SQL_DIAG_MESSAGE_TEXT): likewise.
11454         (SQL_DIAG_NATIVE): likewise.
11455         (SQL_DIAG_NUMBER): likewise.
11456         (SQL_DIAG_RETURNCODE): likewise.
11457         (SQL_DIAG_REVOKE): likewise.
11458         (SQL_DIAG_ROW_COUNT): likewise.
11459         (SQL_DIAG_SELECT_CURSOR): likewise.
11460         (SQL_DIAG_SERVER_NAME): likewise.
11461         (SQL_DIAG_SQLSTATE): likewise.
11462         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11463         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11464         (SQL_DIAG_UPDATE_WHERE): likewise.
11465         (SQL_FALSE): likewise.
11466         (SQL_FETCH_ABSOLUTE): likewise.
11467         (SQL_FETCH_LAST): likewise.
11468         (SQL_FETCH_PRIOR): likewise.
11469         (SQL_FETCH_RELATIVE): likewise.
11470         (SQL_HANDLE_DBC): likewise.
11471         (SQL_HANDLE_DESC): likewise.
11472         (SQL_HANDLE_ENV): likewise.
11473         (SQL_HANDLE_STMT): likewise.
11474         (SQL_INSENSITIVE): likewise.
11475         (SQL_INTEGRITY): likewise.
11476         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11477         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11478         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11479         (SQL_MAX_IDENTIFIER_LEN): likewise.
11480         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11481         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11482         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11483         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11484         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11485         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11486         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11487         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11488         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11489         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11490         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11491         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11492         (SQL_MAXIMUM_ROW_SIZE): likewise.
11493         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11494         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11495         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11496         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11497         (SQL_NAMED): likewise.
11498         (SQL_NONSCROLLABLE): likewise.
11499         (SQL_NTSL): likewise.
11500         (SQL_NULL_HANDLE): likewise.
11501         (SQL_NULL_HDESC): likewise.
11502         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11503         (SQL_PRED_BASIC): likewise.
11504         (SQL_PRED_CHAR): likewise.
11505         (SQL_PRED_NONE): likewise.
11506         (SQL_ROW_IDENTIFIER): likewise.
11507         (SQL_SCROLLABLE): likewise.
11508         (SQL_SENSITIVE): likewise.
11509         (SQL_SUCCEEDED(rc)): likewise.
11510         (SQL_TIME_LEN): likewise.
11511         (SQL_TIMESTAMP_LEN): likewise.
11512         (SQL_TRANSACTION_CAPABLE): likewise.
11513         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11514         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11515         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11516         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11517         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11518         (SQL_TYPE_DATE): likewise.
11519         (SQL_TYPE_TIME): likewise.
11520         (SQL_TYPE_TIMESTAMP): likewise.
11521         (SQL_UNKNOWN_TYPE): likewise.
11522         (SQL_UNNAMED): likewise.
11523         (SQL_UNSPECIFIED): likewise.
11524         (SQL_XOPEN_CLI_YEAR): likewise.
11525         (SQLAllocConnect): add comment marking as deperecated.
11526         (SQLAllocEnv): likewise.
11527         (SQLAllocStmt): likewise.
11528         (SQLFreeConnect): likewise.
11529         (SQLFreeEnv): likewise.
11530         (SQLGetConnectOption): likewise.
11531         (SQLGetStmtOption): likewise.
11532
11533         * include/sqlext.h (#include <sqlucode.h>): add directive.
11534         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11535         (SQLColAttributes): likewise.
11536         (SQLBulkOperations): add function prototype.
11537         (SQLAllocHandleStd): likewise
11538         (TraceReturn): add Trace API prototype.
11539         (TraceVersion): likewise.
11540         (ODBCGetTryWaitValue):likewise.
11541         (ODBCSetTryWaitValue): likewise.
11542         (SQL_LOCK_RECORD): correct function macro.
11543         (SQL_REFRESH_RECORD): likewise.
11544         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11545         _WIN64 compatability.
11546         move defines for non-core functions from sql.h to sqlext.h (refer
11547         changes for sql.h)
11548         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11549         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11550         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11551         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11552         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11553         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11554         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11555         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11556         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11557         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11558         (SQL_AF_ALL): likewise.
11559         (SQL_AF_AVG): likewise.
11560         (SQL_AF_COUNT): likewise.
11561         (SQL_AF_DISTINCT): likewise.
11562         (SQL_AF_MAX): likewise.
11563         (SQL_AF_MIN): likewise.
11564         (SQL_AF_SUM): likewise.
11565         (SQL_AGGREGATE_FUNCTIONS): likewise.
11566         (SQL_ALL_CATALOGS): likewise.
11567         (SQL_ALL_SCHEMAS): likewise.
11568         (SQL_ALL_TABLE_TYPES): likewise.
11569         (SQL_ALTER_DOMAIN): likewise.
11570         (SQL_AM_CONNECTION): likewise.
11571         (SQL_AM_NONE): likewise.
11572         (SQL_AM_STATEMENT): likewise.
11573         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11574         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11575         (SQL_API_SQLALLOCHANDLESTD): likewise.
11576         (SQL_API_SQLBULKOPERATIONS): likewise.
11577         (SQL_ASYNC_MODE): likewise.
11578         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11579         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11580         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11581         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11582         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11583         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11584         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11585         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11586         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11587         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11588         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11589         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11590         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11591         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11592         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11593         (SQL_ATTR_ACCESS_MODE): likewise.
11594         (SQL_ATTR_ASYNC_ENABLE): likewise.
11595         (SQL_ATTR_AUTOCOMMIT): likewise.
11596         (SQL_ATTR_CONCURRENCY): likewise.
11597         (SQL_ATTR_CONNECTION_POOLING): likewise.
11598         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11599         (SQL_ATTR_CP_MATCH): likewise.
11600         (SQL_ATTR_CURRENT_CATALOG): likewise.
11601         (SQL_ATTR_CURSOR_TYPE): likewise.
11602         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11603         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11604         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11605         (SQL_ATTR_ENLIST_IN_XA): likewise.
11606         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11607         (SQL_ATTR_KEYSET_SIZE): likewise.
11608         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11609         (SQL_ATTR_MAX_LENGTH): likewise.
11610         (SQL_ATTR_MAX_ROWS): likewise.
11611         (SQL_ATTR_NOSCAN): likewise.
11612         (SQL_ATTR_ODBC_CURSORS): likewise.
11613         (SQL_ATTR_ODBC_VERSION): likewise.
11614         (SQL_ATTR_PACKET_SIZE): likewise.
11615         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11616         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11617         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11618         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11619         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11620         (SQL_ATTR_PARAMSET_SIZE): likewise.
11621         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11622         (SQL_ATTR_QUIET_MODE): likewise.
11623         (SQL_ATTR_RETRIEVE_DATA): likewise.
11624         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11625         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11626         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11627         (SQL_ATTR_ROW_NUMBER): likewise.
11628         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11629         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11630         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11631         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11632         (SQL_ATTR_TRACE): likewise.
11633         (SQL_ATTR_TRACEFILE): likewise.
11634         (SQL_ATTR_TRANSLATE_LIB): likewise.
11635         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11636         (SQL_ATTR_TXN_ISOLATION): likewise.
11637         (SQL_ATTR_USE_BOOKMARKS): likewise.
11638         (SQL_BATCH_ROW_COUNT): likewise.
11639         (SQL_BATCH_SUPPORT): likewise.
11640         (SQL_BRC_EXPLICIT): likewise.
11641         (SQL_BRC_PROCEDURES): likewise.
11642         (SQL_BRC_ROLLED_UP): likewise.
11643         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11644         (SQL_BS_ROW_COUNT_PROC): likewise.
11645         (SQL_BS_SELECT_EXPLICIT): likewise.
11646         (SQL_BS_SELECT_PROC): likewise.
11647         (SQL_C_INTERVAL_DAY): likewise.
11648         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11649         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11650         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11651         (SQL_C_INTERVAL_HOUR): likewise.
11652         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11653         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11654         (SQL_C_INTERVAL_MINUTE): likewise.
11655         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11656         (SQL_C_INTERVAL_MONTH): likewise.
11657         (SQL_C_INTERVAL_SECOND): likewise.
11658         (SQL_C_INTERVAL_YEAR): likewise.
11659         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11660         (SQL_C_NUMERIC): likewise.
11661         (SQL_C_SBIGINT): likewise.
11662         (SQL_C_TYPE_DATE): likewise.
11663         (SQL_C_TYPE_TIME): likewise.
11664         (SQL_C_TYPE_TIMESTAMP): likewise.
11665         (SQL_C_UBIGINT): likewise.
11666         (SQL_C_VARBOOKMARK): likewise.
11667         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11668         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11669         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11670         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11671         (SQL_CA_CREATE_ASSERTION): likewise.
11672         (SQL_CA1_ABSOLUTE): likewise.
11673         (SQL_CA1_BOOKMARK): likewise.
11674         (SQL_CA1_BULK_ADD): likewise.
11675         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11676         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11677         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11678         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11679         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11680         (SQL_CA1_LOCK_UNLOCK): likewise.
11681         (SQL_CA1_NEXT): likewise.
11682         (SQL_CA1_POS_DELETE): likewise.
11683         (SQL_CA1_POS_POSITION): likewise.
11684         (SQL_CA1_POS_REFRESH): likewise.
11685         (SQL_CA1_POS_UPDATE): likewise.
11686         (SQL_CA1_POSITIONED_DELETE): likewise.
11687         (SQL_CA1_POSITIONED_UPDATE): likewise.
11688         (SQL_CA1_RELATIVE): likewise.
11689         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11690         (SQL_CA2_CRC_APPROXIMATE): likewise.
11691         (SQL_CA2_CRC_EXACT): likewise.
11692         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11693         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11694         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11695         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11696         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11697         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11698         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11699         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11700         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11701         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11702         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11703         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11704         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11705         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11706         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11707         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11708         (SQL_CATALOG_LOCATION): likewise.
11709         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11710         (SQL_CATALOG_TERM): likewise.
11711         (SQL_CATALOG_USAGE): likewise.
11712         (SQL_CCOL_CREATE_COLLATION): likewise.
11713         (SQL_CCS_COLLATE_CLAUSE): likewise.
11714         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11715         (SQL_CCS_LIMITED_COLLATION): likewise.
11716         (SQL_CDO_COLLATION): likewise.
11717         (SQL_CDO_CONSTRAINT): likewise.
11718         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11719         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11720         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11721         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11722         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11723         (SQL_CDO_CREATE_DOMAIN): likewise.
11724         (SQL_CDO_DEFAULT): likewise.
11725         (SQL_CL_END): likewise.
11726         (SQL_CL_START): likewise.
11727         (SQL_COL_PRED_BASIC): likewise.
11728         (SQL_COL_PRED_CHAR): likewise.
11729         (SQL_COLUMN_DRIVER_START): likewise.
11730         (SQL_COLUMN_IGNORE): likewise.
11731         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11732         (SQL_CONVERT_GUID): likewise.
11733         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11734         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11735         (SQL_CONVERT_WCHAR): likewise.
11736         (SQL_CONVERT_WLONGVARCHAR): likewise.
11737         (SQL_CONVERT_WVARCHAR): likewise.
11738         (SQL_CP_DEFAULT): likewise.
11739         (SQL_CP_MATCH_DEFAULT): likewise.
11740         (SQL_CP_OFF): likewise.
11741         (SQL_CP_ONE_PER_DRIVER): likewise.
11742         (SQL_CP_ONE_PER_HENV): likewise.
11743         (SQL_CP_RELAXED_MATCH): likewise.
11744         (SQL_CP_STRICT_MATCH): likewise.
11745         (SQL_CREATE_ASSERTION): likewise.
11746         (SQL_CREATE_CHARACTER_SET): likewise.
11747         (SQL_CREATE_COLLATION): likewise.
11748         (SQL_CREATE_DOMAIN): likewise.
11749         (SQL_CREATE_SCHEMA): likewise.
11750         (SQL_CREATE_TABLE): likewise.
11751         (SQL_CREATE_TRANSLATION): likewise.
11752         (SQL_CREATE_VIEW): likewise.
11753         (SQL_CS_AUTHORIZATION): likewise.
11754         (SQL_CS_CREATE_SCHEMA): likewise.
11755         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11756         (SQL_CT_COLUMN_COLLATION): likewise.
11757         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11758         (SQL_CT_COLUMN_DEFAULT): likewise.
11759         (SQL_CT_COMMIT_DELETE): likewise.
11760         (SQL_CT_COMMIT_PRESERVE): likewise.
11761         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11762         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11763         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11764         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11765         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11766         (SQL_CT_CREATE_TABLE): likewise.
11767         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11768         (SQL_CT_LOCAL_TEMPORARY): likewise.
11769         (SQL_CT_TABLE_CONSTRAINT): likewise.
11770         (SQL_CTR_CREATE_TRANSLATION): likewise.
11771         (SQL_CU_DML_STATEMENTS): likewise.
11772         (SQL_CU_INDEX_DEFINITION): likewise.
11773         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11774         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11775         (SQL_CU_TABLE_DEFINITION): likewise.
11776         (SQL_CVT_GUID): likewise.
11777         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11778         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11779         (SQL_CVT_WCHAR): likewise.
11780         (SQL_CVT_WLONGVARCHAR): likewise.
11781         (SQL_CVT_WVARCHAR): likewise.
11782         (SQL_DA_DROP_ASSERTION): likewise.
11783         (SQL_DATETIME_LITERALS): likewise.
11784         (SQL_DB_DEFAULT): likewise.
11785         (SQL_DB_DISCONNECT): likewise.
11786         (SQL_DB_RETURN_TO_POOL): likewise.
11787         (SQL_DC_DROP_COLLATION): likewise.
11788         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11789         (SQL_DD_CASCADE): likewise.
11790         (SQL_DD_DROP_DOMAIN): likewise.
11791         (SQL_DD_RESTRICT): likewise.
11792         (SQL_DDL_INDEX): likewise.
11793         (SQL_DELETE_BY_BOOKMARK): likewise.
11794         (SQL_DESC_ARRAY_SIZE): likewise.
11795         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11796         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11797         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11798         (SQL_DESC_BASE_TABLE_NAME): likewise.
11799         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11800         (SQL_DESC_BIND_TYPE): likewise.
11801         (SQL_DESC_CASE_SENSITIVE): likewise.
11802         (SQL_DESC_CATALOG_NAME): likewise.
11803         (SQL_DESC_CONCISE_TYPE): likewise.
11804         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11805         (SQL_DESC_DISPLAY_SIZE): likewise.
11806         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11807         (SQL_DESC_LABEL): likewise.
11808         (SQL_DESC_LITERAL_PREFIX): likewise.
11809         (SQL_DESC_LITERAL_SUFFIX): likewise.
11810         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11811         (SQL_DESC_MAXIMUM_SCALE): likewise.
11812         (SQL_DESC_MINIMUM_SCALE): likewise.
11813         (SQL_DESC_NUM_PREC_RADIX): likewise.
11814         (SQL_DESC_PARAMETER_TYPE): likewise.
11815         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11816         (SQL_DESC_SCHEMA_NAME): likewise.
11817         (SQL_DESC_SEARCHABLE): likewise.
11818         (SQL_DESC_TABLE_NAME): likewise.
11819         (SQL_DESC_TYPE_NAME): likewise.
11820         (SQL_DESC_UNSIGNED): likewise.
11821         (SQL_DESC_UPDATABLE): likewise.
11822         (SQL_DI_CREATE_INDEX): likewise.
11823         (SQL_DI_DROP_INDEX): likewise.
11824         (SQL_DIAG_COLUMN_NUMBER): likewise.
11825         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11826         (SQL_DIAG_ROW_NUMBER): likewise.
11827         (SQL_DL_SQL92_DATE): likewise.
11828         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11829         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11830         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11831         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11832         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11833         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11834         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11835         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11836         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11837         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11838         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11839         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11840         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11841         (SQL_DL_SQL92_TIME): likewise.
11842         (SQL_DL_SQL92_TIMESTAMP): likewise.
11843         (SQL_DM_VER): likewise.
11844         (SQL_DRIVER_HDESC): likewise.
11845         (SQL_DROP_ASSERTION): likewise.
11846         (SQL_DROP_CHARACTER_SET): likewise.
11847         (SQL_DROP_COLLATION): likewise.
11848         (SQL_DROP_DOMAIN): likewise.
11849         (SQL_DROP_SCHEMA): likewise.
11850         (SQL_DROP_TABLE): likewise.
11851         (SQL_DROP_TRANSLATION): likewise.
11852         (SQL_DROP_VIEW): likewise.
11853         (SQL_DS_CASCADE): likewise.
11854         (SQL_DS_DROP_SCHEMA): likewise.
11855         (SQL_DS_RESTRICT): likewise.
11856         (SQL_DT_CASCADE): likewise.
11857         (SQL_DT_DROP_TABLE): likewise.
11858         (SQL_DT_RESTRICT): likewise.
11859         (SQL_DTC_DONE): likewise.
11860         (SQL_DTR_DROP_TRANSLATION): likewise.
11861         (SQL_DV_CASCADE): likewise.
11862         (SQL_DV_DROP_VIEW): likewise.
11863         (SQL_DV_RESTRICT): likewise.
11864         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11865         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11866         (SQL_EXT_API_LAST): likewise.
11867         (SQL_EXT_API_START): likewise.
11868         (SQL_FETCH_BY_BOOKMARK): likewise.
11869         (SQL_FETCH_FIRST_SYSTEM): likewise.
11870         (SQL_FETCH_FIRST_USER): likewise.
11871         (SQL_FN_CVT_CAST): likewise.
11872         (SQL_FN_STR_BIT_LENGTH): likewise.
11873         (SQL_FN_STR_CHAR_LENGTH): likewise.
11874         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11875         (SQL_FN_STR_OCTET_LENGTH): likewise.
11876         (SQL_FN_STR_POSITION): likewise.
11877         (SQL_FN_TD_CURRENT_DATE): likewise.
11878         (SQL_FN_TD_CURRENT_TIME): likewise.
11879         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11880         (SQL_FN_TD_EXTRACT): likewise.
11881         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11882         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11883         (SQL_FUNC_EXISTS(exists,api)): likewise.
11884         (SQL_GB_COLLATE): likewise.
11885         (SQL_HANDLE_SENV): likewise.
11886         (SQL_IK_ALL): likewise.
11887         (SQL_IK_ASC): likewise.
11888         (SQL_IK_DESC): likewise.
11889         (SQL_IK_NONE): likewise.
11890         (SQL_INDEX_KEYWORDS): likewise.
11891         (SQL_INFO_DRIVER_START): likewise.
11892         (SQL_INFO_LAST): likewise.
11893         (SQL_INFO_SCHEMA_VIEWS): likewise.
11894         (SQL_INITIALLY_DEFERRED): likewise.
11895         (SQL_INITIALLY_IMMEDIATE): likewise.
11896         (SQL_INSERT_STATEMENT): likewise.
11897         (SQL_INTERVAL): likewise.
11898         (SQL_IS_INSERT_LITERALS): likewise.
11899         (SQL_IS_INSERT_SEARCHED): likewise.
11900         (SQL_IS_INTEGER): likewise.
11901         (SQL_IS_POINTER): likewise.
11902         (SQL_IS_SELECT_INTO): likewise.
11903         (SQL_IS_SMALLINT): likewise.
11904         (SQL_IS_UINTEGER): likewise.
11905         (SQL_IS_USMALLINT): likewise.
11906         (SQL_ISV_ASSERTIONS): likewise.
11907         (SQL_ISV_CHARACTER_SETS): likewise.
11908         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11909         (SQL_ISV_COLLATIONS): likewise.
11910         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11911         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11912         (SQL_ISV_COLUMNS): likewise.
11913         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11914         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11915         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11916         (SQL_ISV_DOMAINS): likewise.
11917         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11918         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11919         (SQL_ISV_SCHEMATA): likewise.
11920         (SQL_ISV_SQL_LANGUAGES): likewise.
11921         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11922         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11923         (SQL_ISV_TABLES): likewise.
11924         (SQL_ISV_TRANSLATIONS): likewise.
11925         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11926         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11927         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11928         (SQL_ISV_VIEWS): likewise.
11929         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11930         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11931         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11932         (SQL_NO_COLUMN_NUMBER): likewise.
11933         (SQL_NO_ROW_NUMBER): likewise.
11934         (SQL_NOT_DEFERRABLE): likewise.
11935         (SQL_NUM_EXTENSIONS): likewise.
11936         (SQL_NUM_FUNCTIONS): likewise.
11937         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11938         (SQL_OIC_CORE): likewise.
11939         (SQL_OIC_LEVEL1): likewise.
11940         (SQL_OIC_LEVEL2): likewise.
11941         (SQL_OV_ODBC2): likewise.
11942         (SQL_OV_ODBC3): likewise.
11943         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11944         (SQL_PARAM_ARRAY_SELECTS): likewise.
11945         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11946         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11947         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11948         (SQL_PARAM_ERROR): likewise.
11949         (SQL_PARAM_IGNORE): likewise.
11950         (SQL_PARAM_PROCEED): likewise.
11951         (SQL_PARAM_SUCCESS): likewise.
11952         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11953         (SQL_PARAM_UNUSED): likewise.
11954         (SQL_PARC_BATCH): likewise.
11955         (SQL_PARC_NO_BATCH): likewise.
11956         (SQL_PAS_BATCH): likewise.
11957         (SQL_PAS_NO_BATCH): likewise.
11958         (SQL_PAS_NO_SELECT): likewise.
11959         (SQL_ROW_IGNORE): likewise.
11960         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11961         (SQL_ROW_PROCEED): likewise.
11962         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11963         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11964         (SQL_SC_SQL92_ENTRY): likewise.
11965         (SQL_SC_SQL92_FULL): likewise.
11966         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11967         (SQL_SCC_ISO92_CLI): likewise.
11968         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11969         (SQL_SCHEMA_TERM): likewise.
11970         (SQL_SCHEMA_USAGE): likewise.
11971         (SQL_SDF_CURRENT_DATE): likewise.
11972         (SQL_SDF_CURRENT_TIME): likewise.
11973         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11974         (SQL_SFKD_CASCADE): likewise.
11975         (SQL_SFKD_NO_ACTION): likewise.
11976         (SQL_SFKD_SET_DEFAULT): likewise.
11977         (SQL_SFKD_SET_NULL): likewise.
11978         (SQL_SFKU_CASCADE): likewise.
11979         (SQL_SFKU_NO_ACTION): likewise.
11980         (SQL_SFKU_SET_DEFAULT): likewise.
11981         (SQL_SFKU_SET_NULL): likewise.
11982         (SQL_SG_DELETE_TABLE): likewise.
11983         (SQL_SG_INSERT_COLUMN): likewise.
11984         (SQL_SG_INSERT_TABLE): likewise.
11985         (SQL_SG_REFERENCES_COLUMN): likewise.
11986         (SQL_SG_REFERENCES_TABLE): likewise.
11987         (SQL_SG_SELECT_TABLE): likewise.
11988         (SQL_SG_UPDATE_COLUMN): likewise.
11989         (SQL_SG_UPDATE_TABLE): likewise.
11990         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11991         (SQL_SG_USAGE_ON_COLLATION): likewise.
11992         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11993         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11994         (SQL_SG_WITH_GRANT_OPTION): likewise.
11995         (SQL_SNVF_BIT_LENGTH): likewise.
11996         (SQL_SNVF_CHAR_LENGTH): likewise.
11997         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11998         (SQL_SNVF_EXTRACT): likewise.
11999         (SQL_SNVF_OCTET_LENGTH): likewise.
12000         (SQL_SNVF_POSITION): likewise.
12001         (SQL_SP_BETWEEN): likewise.
12002         (SQL_SP_COMPARISON): likewise.
12003         (SQL_SP_EXISTS): likewise.
12004         (SQL_SP_IN): likewise.
12005         (SQL_SP_ISNOTNULL): likewise.
12006         (SQL_SP_ISNULL): likewise.
12007         (SQL_SP_LIKE): likewise.
12008         (SQL_SP_MATCH_FULL): likewise.
12009         (SQL_SP_MATCH_PARTIAL): likewise.
12010         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
12011         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
12012         (SQL_SP_OVERLAPS): likewise.
12013         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
12014         (SQL_SP_UNIQUE): likewise.
12015         (SQL_SQL_CONFORMANCE): likewise.
12016         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
12017         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
12018         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
12019         (SQL_SQL92_GRANT): likewise.
12020         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
12021         (SQL_SQL92_PREDICATES): likewise.
12022         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
12023         (SQL_SQL92_REVOKE): likewise.
12024         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
12025         (SQL_SQL92_STRING_FUNCTIONS): likewise.
12026         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
12027         (SQL_SR_CASCADE): likewise.
12028         (SQL_SR_DELETE_TABLE): likewise.
12029         (SQL_SR_GRANT_OPTION_FOR): likewise.
12030         (SQL_SR_INSERT_COLUMN): likewise.
12031         (SQL_SR_INSERT_TABLE): likewise.
12032         (SQL_SR_REFERENCES_COLUMN): likewise.
12033         (SQL_SR_REFERENCES_TABLE): likewise.
12034         (SQL_SR_RESTRICT): likewise.
12035         (SQL_SR_SELECT_TABLE): likewise.
12036         (SQL_SR_UPDATE_COLUMN): likewise.
12037         (SQL_SR_UPDATE_TABLE): likewise.
12038         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
12039         (SQL_SR_USAGE_ON_COLLATION): likewise.
12040         (SQL_SR_USAGE_ON_DOMAIN): likewise.
12041         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
12042         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
12043         (SQL_SRJO_CROSS_JOIN): likewise.
12044         (SQL_SRJO_EXCEPT_JOIN): likewise.
12045         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
12046         (SQL_SRJO_INNER_JOIN): likewise.
12047         (SQL_SRJO_INTERSECT_JOIN): likewise.
12048         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
12049         (SQL_SRJO_NATURAL_JOIN): likewise.
12050         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
12051         (SQL_SRJO_UNION_JOIN): likewise.
12052         (SQL_SRVC_DEFAULT): likewise.
12053         (SQL_SRVC_NULL): likewise.
12054         (SQL_SRVC_ROW_SUBQUERY): likewise.
12055         (SQL_SRVC_VALUE_EXPRESSION): likewise.
12056         (SQL_SSF_CONVERT): likewise.
12057         (SQL_SSF_LOWER): likewise.
12058         (SQL_SSF_SUBSTRING): likewise.
12059         (SQL_SSF_TRANSLATE): likewise.
12060         (SQL_SSF_TRIM_BOTH): likewise.
12061         (SQL_SSF_TRIM_LEADING): likewise.
12062         (SQL_SSF_TRIM_TRAILING): likewise.
12063         (SQL_SSF_UPPER): likewise.
12064         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
12065         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
12066         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
12067         (SQL_SU_DML_STATEMENTS): likewise.
12068         (SQL_SU_INDEX_DEFINITION): likewise.
12069         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
12070         (SQL_SU_PROCEDURE_INVOCATION): likewise.
12071         (SQL_SU_TABLE_DEFINITION): likewise.
12072         (SQL_SVE_CASE): likewise.
12073         (SQL_SVE_CAST): likewise.
12074         (SQL_SVE_COALESCE): likewise.
12075         (SQL_SVE_NULLIF): likewise.
12076         (SQL_UB_FIXED): likewise.
12077         (SQL_UB_VARIABLE): likewise.
12078         (SQL_UNION_STATEMENT): likewise.
12079         (SQL_UPDATE_BY_BOOKMARK): likewise.
12080         (SQL_US_UNION): likewise.
12081         (SQL_US_UNION_ALL): likewise.
12082         (SQL_DESC_ROWVER): likewise.
12083         (SQL_GUID): likewise.
12084         (SQL_C_GUID): likewise.
12085         (ODBC_STD): likewise.
12086         (SQLAllocHandle): likewise.
12087         (SQLAllocEnv(p)): likewise.
12088         (SQL_YEAR): likewise.
12089         (SQL_MONTH): likewise.
12090         (SQL_DAY): likewise.
12091         (SQL_HOUR): likewise.
12092         (SQL_MINUTE): likewise.
12093         (SQL_SECOND): likewise.
12094         (SQL_YEAR_TO_MONTH): likewise.
12095         (SQL_DAY_TO_HOUR): likewise.
12096         (SQL_DAY_TO_MINUTE): likewise.
12097         (SQL_DAY_TO_SECOND): likewise.
12098         (SQL_HOUR_TO_MINUTE): likewise.
12099         (SQL_HOUR_TO_SECOND): likewise.
12100         (SQL_MINUTE_TO_SECOND): likewise.
12101         (SQL_ATTR_ANSI_APP): likewise.
12102         (SQL_AA_TRUE): likewise.
12103         (SQL_AA_FALSE): likewise.
12104
12105         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
12106         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
12107         (struct tagSQL_DAY_SECOND): likewise.
12108         (struct tagSQL_INTERVAL_STRUCT): likewise.
12109         (struct tagSQL_NUMERIC_STRUCT): likewise.
12110         (struct tagSQLGUID): add for 0DBC3.50.
12111         (enum SQLINTERVAL): add for ODBC3.x.
12112         (SQLWCHAR): add typedef.
12113         (SQLTCHAR): add typedef, conditional on UNICODE.
12114         (SQLLEN): add typedef for _WIN64, define for _WIN32.
12115         (SQLULEN): likewise.
12116         (SQLROWOFFSET): likewise.
12117         (SQLROWCOUNT): likewise.
12118         (SQLTRANSID): likewise.
12119         (SQLSETPOSIROW): likewise.
12120         (SQLHANDLE): add ODBC3.x typedef.
12121         (SQLHDESC): likewise.
12122         (SQLDATE): likewise.
12123         (SQLDECIMAL): likewise.
12124         (SQLDOUBLE): likewise.
12125         (SQLFLOAT): likewise.
12126         (SQLNUMERIC): likewise.
12127         (SQLREAL): likewise.
12128         (SQLTIME): likewise.
12129         (SQLTIMESTAMP): likewise.
12130         (SQLVARCHAR): likewise.
12131         (SQLBIGINT): likewise.
12132         (SQLUBIGINT): likewise.
12133         (SQL_DATE_STRUCT): likewise.
12134         (SQL_TIME_STRUCT): likewise.
12135         (SQL_TIMESTAMP_STRUCT): likewise.
12136         (ODBCINT64): add ODBC3.x define.
12137
12138         * lib/odbc32.def : regenerate.
12139
12140 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
12141
12142         * Apply Danny Smith patch 102275
12143         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12144         * include/objbase.h: (COM_RIGHTS): Add definition.
12145         (tagSTDMSHLFLAGS): add enumeration.
12146         (CoInitializeEx): Add prototypes.
12147         (CoGetStdMarshalEx): ditto.
12148         (CoCreateInstanceEx): ditto.
12149         (CoInitializeSecurity): ditto.
12150         (CoGetCallContext): ditto.
12151         (CoQueryProxyBlanket): ditto.
12152         (CoSetProxyBlanket): ditto.
12153         (CoCopyProxy): ditto.
12154         (CoQueryClientBlanket): ditto.
12155         (CoImpersonateClient): ditto.
12156         (CoRevertToSelf): ditto.
12157         (CoQueryAuthenticationServices): ditto.
12158         (CoSwitchCallContext): ditto.
12159         (CoGetInstanceFromFile): ditto.
12160         (CoGetInstanceFromIStorage): ditto.
12161         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
12162         (SOLE_AUTHENTICATION_INFO): ditto.
12163         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
12164         (COLE_DEFAULT_PRINCIPAL): Add definition.
12165         (COLE_DEFAULT_AUTHINFO): Ditto.
12166         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
12167         (RPC_PROTSEQ_VECTOR) Fix typo.
12168         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
12169         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
12170         attribute.
12171
12172 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
12173
12174         * lib/msvcp60.def: Apply Danny Smith patch 103321.
12175         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
12176         New file.
12177
12178 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12179
12180         * include/winnt.h: Add PTOKEN_USER.
12181
12182 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12183
12184         * include/sqlucode.h: Apply Danny Smith patch 102443
12185         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12186         New file.
12187
12188 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12189
12190         * lib/odbccp32.def: Apply Danny Smith patch 102442
12191         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12192         New file.
12193
12194 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12195
12196         * include/odbcinst.h: Apply Danny Smith patch 102441
12197         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12198         New file.
12199
12200 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12201
12202         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12203
12204 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12205
12206         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12207
12208 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12209
12210         * lib/Makefile.in: Install headers and libraries in tooldir.
12211
12212 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12213
12214         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12215         SORT_STRINGSORT: ditto.
12216         CMAP*: ditto.
12217         CTRY_*: add new defines.
12218         LGRPID_*: ditto.
12219         LCMAP*: change defines to hex notation.
12220         CALID: change from ULONG to DWORD.
12221         CALTYPE: ditto.
12222         _cpinfoex[AW]: add structure.
12223         FoldString: correct Unicode mappings.
12224         GetCPInfoEx[AW]: add prototypes.
12225         EnumCalendarInfoEx[AW]: ditto.
12226         EnumDateFormatsEx[AW]: ditto.
12227         EnumSystemLanguageGroups[AW]: ditto.
12228         EnumLanguageGroupLocales[AW]: ditto.
12229         EnumUILanguages[AW]: ditto.
12230         GetSystemDefaultUILanguage[AW]: ditto.
12231         GetUserDefaultUILanguage[AW]: ditto.
12232         IsValidLanguageGroup[AW]: ditto.
12233         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12234         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12235         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12236         UILANGUAGE_ENUMPROC[AW]: ditto
12237         DATEFMT_ENUMPROCEX[AW]: ditto
12238         LPCURRENCYFMT[AW]: add structure pointer typedef
12239         LPNUMBERFMT[AW]: ditto
12240
12241 2000-12-02  Matt Hargett  <matt@use.net>
12242
12243         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12244         possible return code for the SetFilePointer() win32 API call.
12245
12246 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12247
12248         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12249
12250 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12251
12252         * Makefile.in: increment VERSION.
12253         (dist:) Rename to srcdist.  Create new dist target to call
12254         srcdist and bindist targets.
12255         (srcdist:) New target.
12256         (clean-top:) add call to mostlyclean-top and add rm of distribution
12257         tarballs.
12258         * lib/Makefile.in: (uninstall:) modify to remove files from the
12259         new w32api subdirectory and to remove w32api subdirectory.
12260         (xuninstall:) Ditto.
12261         TODO: Add a task to redo the clean targets of Makefile.in
12262
12263 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12264
12265         * lib/Makefile.in: Install header files in w32api subdirectory.
12266
12267 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12268
12269         * CONTRIBUTIONS: New file.
12270         * README: Change the maintained by header.
12271         * TODO: Add a note about checking the TODO.
12272
12273 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12274
12275         * Merge in accepted changes from
12276         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12277         * include/basetyps.h: add comment for GUID_DEFINED
12278         * include/lm.h: add includes for lmerr.h and lmserver.h
12279         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12280         * include/lmerr.h:  add error codes
12281         * include/lmserver.h: replace LPTSTR with LPWSTR,
12282         LPTCSTR with LPWCSTR in structures and prototypes
12283         * include/lmshare.h: ditto
12284         * include/lmuse.h: ditto
12285         * include/lmstats.h: ditto
12286         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12287         * include/winbase.h: change first argument of CommConfigDialog to const
12288         * include/windowsx.h: add macros  defining FAR versions of
12289         mem and string functions for porting from Win16 code
12290         * include/winioctl.h:  added IOCTL_STORAGE defines
12291         * include/winnetwk.h:  added WNNC_NET flags
12292         * include/winnt.h: add include of <basetsd.h>;
12293         add structs; add pointer typedefs  for TOKEN structs
12294         * include/winsock.h: add guard around BSD-ish typedefs
12295         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12296         * include/basetsd.h: new file
12297         * include/raserror.h: ditto
12298         * include/rassapi.h: ditto
12299         * include/ras.h: ditto
12300         comment from Earnie: replaced original ras.h contribution with Danny's
12301         contribution as it is more complete.
12302         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12303
12304 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12305
12306         * Makefile.in: increment VERSION.  Change tar file name for dist and
12307         bindist targets to be more standard.
12308         * config.guess: Update with the currently published file.
12309         * config.sub: ditto.
12310         * configure.in: Use value of build_alias instead of testing for
12311         directory names to set BUILDENV.
12312         * configure: ditto.
12313         * lib/Makefile.in: Change the name of the targets install,
12314         install-headers and install-libraries to xinstall, xinstall-headers
12315         and xinstall-libraries for system target specified installation.
12316         Recreate targets install, install-headers and install-libraries for
12317         exec-prefix specified installation.  Ditto for the uninstall targets of
12318         the same name.
12319
12320 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12321
12322         * include/iprtrmib.h: Further layout changes according to standard.
12323         * include/iptypes.h: Ditto.
12324         * include/ntdef.h: Ditto.
12325         * include/ntsecapi.h: Ditto.
12326         * include/subauth.h: Ditto.
12327
12328 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12329
12330         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12331
12332 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12333
12334         * include/ntsecapi.h: New file.
12335         * include/subauth.h: Ditto.
12336         * include/ipexport.h: Fix global header define not to contain
12337         trailing underscore. Change layout according to standard.
12338         * include/iphlpapi.h: Ditto.
12339         * include/ipifcons.h: Ditto.
12340         * include/iprtrmib.h: Ditto.
12341         * include/iptypes.h: Ditto.
12342         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12343         of inclusion of ntsecapi.h and subauth.h.
12344         * lib/secur32.def: New stub for secur32.dll.
12345
12346 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12347
12348         * include/ras.h: New file.
12349         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12350         RasEnumDevicesW.
12351
12352 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12353
12354         * include/ntdef.h: Add define for NTAPI.
12355
12356 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12357
12358         * include/ipexport.h: Add missing `extern "C"' directives.
12359         * include/iphlpapi.h: Ditto.
12360         * include/iprtrmib.h: Ditto.
12361         * include/iptypes.h: Ditto.
12362
12363 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12364
12365         * include/ipifcons.h: New header file.
12366         * include/iprtrmib.h: Move operational states to ipifcons.h.
12367         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12368         declaration.
12369
12370 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12371
12372         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12373
12374 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12375
12376         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12377         * include/iptypes.h: New header file.
12378         * include/ipexport.h: Ditto.
12379         * include/iphlpapi.h: Ditto.
12380         * include/iprtrmib.h: Ditto.
12381
12382 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12383
12384         * include/ntdef.h: New file.
12385
12386 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12387
12388         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12389         to TOKEN_INFORMATION_CLASS type.
12390         Add QUOTA_LIMITS type.
12391
12392 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12393
12394         * include/userenv.h: New header file.
12395         * lib/userenv.def: New stub for userenv.dll.
12396
12397 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12398
12399         * include/winuser.h: Correct PCWPSTRUCT typo.
12400         (discovered by Axel Riese)
12401
12402 2000-07-27  DJ Delorie  <dj@redhat.com>
12403
12404         * include/windows.h: optimize non-inclusion of repeat headers
12405
12406 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12407
12408         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12409         LPTOKEN_SOURCE.
12410
12411 2000-07-11  DJ Delorie  <dj@cygnus.com>
12412
12413         * include/shlobj.h: add CSIDL_COMMON_*
12414
12415 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12416
12417         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12418         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12419         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12420         FILE_FLAG_OPEN_NO_RECALL.
12421         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12422         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12423         * winnt.h: Add typedef for GUID.
12424         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12425         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12426         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12427         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12428         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12429         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12430         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12431         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12432         * lib/psapi.def: New file.
12433
12434 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12435
12436         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12437         previously defined.
12438         * windef.h : Ditto.
12439
12440 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12441
12442         * include/winnt.h: Add some missing defines related to locale
12443         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12444
12445 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12446
12447         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12448
12449 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12450
12451         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12452
12453 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12454
12455         * include/wininet.h: Add another "INTERNET_OPTIONS".
12456
12457 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12458
12459         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12460
12461 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12462
12463         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12464         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12465         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12466         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12467
12468 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12469
12470         * include/winbase.h: Change first argument of ENUMRES* types to
12471         coincide with Microsoft usage.
12472
12473 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12474
12475         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12476
12477 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12478
12479         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12480         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12481         * include/winnt.h (SEC_*): Add macros.
12482         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12483         * include/ole.h: Workaround for C++ parser bug.
12484         * include/rpcdcep.h: Likewise.
12485         * include/winsock.h: Likewise.
12486
12487 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12488
12489         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12490
12491 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12492
12493         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12494         * include/wtypes.h (PBLOB, LPBLOB): Define.
12495         * include/winsock2.h: Much more complete version.
12496         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12497
12498         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12499         * include/winsock.h (FD_CLR): Add missing ')'.
12500         (timercmp): Fix macro to handle all 6 comparison operators.
12501         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12502         (AF_MAX): Update.
12503         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12504
12505         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12506         namespace pollution.
12507         * include/rpcndr.h: Likewise.
12508         * include/winnt.h: Likewise.
12509         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12510         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12511         * lib/ole32.def: Add missing exports.
12512         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12513         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12514         (NT_TIB): Define.
12515         * include/tlhelp32.h: New file.
12516
12517 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12518
12519         * include/rapi.h: New file.
12520         * lib/rapi.def: New file.
12521
12522 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12523
12524         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12525
12526 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12527
12528         * Snapshot 2000-02-03.
12529
12530 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12531
12532         * include/winnt.h: Add ARM support.
12533
12534 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12535
12536         From Greg Primes <gregory.l.priem@intel.com>:
12537         * include/oaidl.h (DESCKIND): Define macro.
12538         (ITypeComp): Define interface.
12539         (ITypeComp): Likewise.
12540         * rpcndr.h (DECLSPEC_UUID): Define macro.
12541         (MIDL_INTERFACE): Likewise.
12542
12543         * include/psapi.h: New file.
12544         * include/imagehlp.h: New file.
12545         * lib/imagehlp.def: New file.
12546
12547         * include/oaidl.h (tagVARIANT): Update fields.
12548
12549         From Craig Lanning <CraigL@DyCon.com>:
12550         * include/commctrl.h: Add some TCS_* macros.
12551         * include/winnls.h (IsValidLocale): Add prototype.
12552
12553 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12554
12555         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12556         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12557         * include/objbase.h: Likewise.
12558         * include/objidl.h: Likewise.
12559         * include/ocidl.h: New file.
12560         * include/oleauto.h: Likewise.
12561         * include/wtypes.h: Likewise.
12562         * lib/oleaut32.def: Likewise.
12563
12564         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12565         Thanks to "Jon Leichter" <jon@symas.com>.
12566         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12567         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12568         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12569         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12570         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12571         Dorsselaer" <frans@bia-bv.demon.nl>.
12572         * include/httpext.h: New file. Thanks to Jan Nijtmans
12573         <j.nijtmans@chello.nl>.
12574         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12575         redefinition of LPCWAVEFORMATEX in DirectX headers.
12576         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12577         <krzych00@priv7.onet.pl>.
12578         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12579         * include/windef.h (HRESULT): Guard definition to avoid
12580         redefinition in DirectX headers.
12581         * include/winnt.h: Add target macros from windows.h.
12582         * include/windows.h: Update synch comment for target macros.
12583         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12584         (_ANONYMOUS_UNION): Likewise.
12585         * include/wingdi.h (AbortPrinter): Move from here ...
12586         * include/winspool.h (AbortPrinter): to here and fix linkage.
12587         (MONITOR_INFO_2{A,W}): Define.
12588         * include/winsock.h (htons): Fix argument.
12589         (htonl): Likewise.
12590         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12591         (GROUP): Define.
12592         (GUID): Define conditionally.
12593         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12594         (WSASocket*): Declare.
12595         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12596
12597         * lib/dsetup.def: Remove leading underscore.
12598         * lib/dsound.def: Likewise.
12599         * lib/ws2_32.def: Likewise.
12600
12601 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12602
12603         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12604         handles.
12605
12606         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12607         * lib/dinput.c: Include windows.h for GCC.
12608         * lib/dxguid.c: Likewise.
12609         (INITGUID): Define macro.
12610
12611         * include/objidl.h (ISequentialStream): Define interface.
12612         (IStream): Derive from ISequentialStream.
12613
12614         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12615         Clone}): Mark as PURE.
12616         (IDataObject::EnumDAdvise): Likewise.
12617         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12618         (IViewObject::Unfreeze): Likewise.
12619         (IViewObject2::Unfreeze): Likewise.
12620
12621         * include/objidl.h: Add various IID_ declarations.
12622         * include/olectl.h: Likewise.
12623         * include/oleidl.h: Likewise.
12624
12625 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12626
12627         * Snapshot 1999-12-21.
12628
12629         * include/winbase.h (CancelIO): Rename to CancelIo.
12630         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12631         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12632
12633         * Merge with winsup-19991218.
12634         * include/winnt.h: Add defines for W2K ACL control flags.
12635
12636         * Merge with Anders Norlander's 19991130 snapshot.
12637
12638         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12639         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12640
12641         Patch from Harold Weissfield
12642         * include/shellapi.h: Added some ABN_* defines.
12643
12644         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12645         * lib/comctl32.def (_TrackMouseEvent): Import.
12646         * include/winuser.h: Misc. fixes from Sang Cho
12647         <sangcho@alpha94.chongju.ac.kr>.
12648         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12649         value of _WIN32_WINNT.
12650         * include/winuser.h: Reorganize SM_* defines in numerical order.
12651
12652 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12653
12654         * include/windef.h: Make RECTL a distinct type from RECT.
12655         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12656         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12657         (COMPAREITEMSTRUCT): Fix fields.
12658         (SERIALKEYSA): Likewise.
12659         (SERIALKEYSW): Likewise..
12660         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12661         (WIN32_FIND_DATAA): Likewise.
12662         (WIN32_FIND_DATAW): Likewise.
12663         * include/commdlg.h (SNDMSG): Define.
12664         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12665         (SO_CONNECT_TIME): Likewise.
12666         (AcceptEx): Declare.
12667         (GetAcceptExSockaddrs): Likewise.
12668         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12669         * include/winspool.h: Add RC_INVOKED guard.
12670         * lib/wsock32.def (AcceptEx@32): Export.
12671         (GetAcceptExSockaddrs@32): Likewise.
12672
12673 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12674
12675         * Snapshot 1999-11-18.
12676
12677         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12678         Octopod C++ IDE (and MSVC compatibility).
12679         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12680         * include/shellapi.h (ShellAbout*): Fix typo.
12681         * wingdi.h (FW_ULTRABOLD): Likewise.
12682         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12683         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12684         Add packing directives for various structures. All structure
12685         sizes now conform to MSVC.
12686
12687 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12688
12689         Released 1999-11-07.
12690
12691 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12692
12693         * include/winsock2.h: New file. Mostly a stub for now.
12694         * include/winbase.h (DllMain): Delete prototype.
12695         * include/commctrl.h (Header_SetItem): Fix macro.
12696         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12697         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12698         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12699
12700         Merge in changes from wxWindows.
12701         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12702         * include/oaidl.h (DISPID_*): Add macros.
12703         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12704         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12705         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12706         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12707
12708         Merge in changes from Octopod C++ IDE group.
12709         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12710         (Header_InsertItem): Fix macro.
12711         * include/oaidl.h (IID_IDispatch): Declare.
12712         (IID_ISupportErrorInfo): Likewise.
12713         (IDispatch): Rename Invoked to Invoke.
12714         * include/objidl.h (IPersist): Fix GetClassID.
12715         * include/oleauto.h (VectorFromBstr): Declare.
12716         (BstrFromVector): Likewise.
12717         * include/olectl.h (OLEMISC_*): Update.
12718         * include/olectlid.h (IID_IDispatch): Declare.
12719         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12720         (IOleInPlaceFrame): Fix.
12721         (ISupportErrorInfo): Define.
12722         (IErrorInfo): Define.
12723         * include/winuser.h (SIF_TRACKPOS): Define.
12724
12725 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12726
12727         Fix Merge errors:
12728         * include/winnt.h (PSID): Uncomment definition.
12729         (PISID): Rename from PSID.
12730         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12731         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12732
12733         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12734         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12735         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12736         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12737         include/shellapi.h, include/winbase.h, include/wingdi.h,
12738         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12739
12740 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12741
12742         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12743         Marius Kjeldahl <kjeldahl@hotmail.com>.
12744
12745 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12746
12747         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12748         (ERROR_SEVERITY_*): Likewise.
12749
12750 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12751
12752         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12753         (DllMain): Fix prototype.
12754
12755 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12756
12757         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12758         (cderr.h): Don't include.
12759         * include/winuser.h: Fix macro definitions.
12760
12761 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12762
12763         Merge with winsup 1999-07-29:
12764         * include/wincon.h (MOUSE_WHEELED): Define.
12765         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12766         (SECURITY_DESCRIPTOR): Add struct type.
12767         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12768         is equal to PVOID in the Platform SDK! So don't depend on accessing
12769         members through ->.
12770
12771 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12772
12773         * lib/Makefile.in (install-headers): Don't @ commands.
12774         (install-libraries): Ditto.
12775
12776 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12777
12778         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12779
12780 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12781
12782         Patch from Mumit Khan:
12783         * include/windows.h: Fix typo in winsock.h include guard and add
12784         _UWIN to the list.
12785         * include/winnt.h (__int64): Undefine first.
12786         (struct _SID): Declare.
12787
12788 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12789
12790         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12791
12792 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12793
12794         Patch from Mumit Khan:
12795         * Makefile.in: Do the right thing when cross-compiling.
12796         * include/windef.h: Don't define _export and __export if already
12797         defined.
12798
12799 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12800
12801         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12802         (DECLARE_INTERFACE_): Ditto.
12803
12804 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12805
12806         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12807
12808         Reported by Brad Porter
12809         * include/wingdi.h (FW_ULTRALIGHT): Add.
12810         (FW_DEMIBOLD): Add.
12811         (FW_ULTRABOLD): Add.
12812         (FW_BLACK): Add.
12813         (JOHAB_CHARSET): Add.
12814         (VIETNAMESE_CHARSET): Add.
12815
12816
12817 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12818
12819         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12820         * lib/Makefile.in (Makefile): Regenerate.
12821         * include/pshpack[1248].h: New files, if a program would use any of
12822         them.
12823         * include/poppack.h: Ditto.
12824         * include/windef.h (_WIN32_WINNT): Define
12825         * include/windows.h: Remove DUMMYUNIONNAME[45].
12826         * include/windows.h: Correctly define _M_IX86 to reflect the target
12827         processor.
12828         * include/windows.h: Add preliminary support for other architectures.
12829         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12830         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12831         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12832         issue with LARGE_INTEGER.
12833         (ANSI_NULL): Define.
12834         (PSZ): Define.
12835         (ACL_REVISION[1234]): Define.
12836         (MIN/MAX_ACL_REVISION): Define.
12837         (PTCHAR): Define.
12838         (LANG_USER_DEFAULT): Define.
12839         (LANG_SYSTEM_DEFAULT): Define.
12840         (LOCALE_NEUTRAL): Define.
12841         (SORTVERSIONFROMLCID): Define.
12842         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12843         (UNREFERENCED_LOCAL_VARIABLE): Define.
12844         (DBG_UNREFERENCED_PARAMETER): Define.
12845         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12846         * lib/mswsock.def: New file. Imports for mswsock.dll.
12847         * include/custcntl.h: New file. Necessary to compile some SDK
12848         samples.
12849         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12850         (WM_MOUSEWHEEL): Define.
12851         (WHEEL_DELTA): Define.
12852         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12853         (WM_NEXTMENU): Define.
12854         (CharNextA): Fix prototype.
12855         (CharNextW): Ditto.
12856
12857 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12858
12859         * include/winsock.h: Enclose in extern "C" if C++, huh?
12860         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12861
12862 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12863
12864         * include/windef.h (NULL): Define only ifndef
12865         (TRUE): Ditto, was previously only defined ifndef FALSE
12866         (PASCAL): Define as _pascal
12867         (__pascal): Define
12868         (WINAPIV): Define
12869         (min,max): Define only ifndef NOMINMAX
12870
12871 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12872
12873         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12874         You must define _WIN32_IE if you want support for it.
12875         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12876
12877 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12878
12879         * include/wincon.h: Add some ButtonState flags and EventFlags.
12880
12881 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12882
12883         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12884         interface define causes mayhem.
12885         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12886         defined.
12887         * include/windows.h: Undefine BOOL if __OBJC__ defined
12888
12889 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12890
12891         * include/winnls.h: Define additional code pages.
12892
12893 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12894
12895         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12896         order, corrected.
12897         (RtlZeroMemory): Use RtlFillMemory
12898
12899 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12900
12901         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12902         to get the correct size when used in some structs.
12903         (ULARGE_INTEGER): Ditto.
12904         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12905         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12906
12907 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12908
12909         * include/wininet.h: Enclose in extern "C" if c++
12910         (INTERNET_BUFFERSA/W): Define struct
12911         * include/wininet.h: Add some HSR_* defines
12912
12913 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12914
12915         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12916         * include/winnt.h (UNALIGNED): Define
12917         * include/windef.h (DECLSPEC_NORETURN): Define
12918
12919         * include/wininet.h (INTERNET_MAX_NAME): Remove
12920         (INTERNET_MAX_SCHEME_LENGTH): Define
12921         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12922         * include/wininet.def: Completely redone, it was losing badly.
12923
12924 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12925
12926         * lib/dplayx.def: Remove '_' prefixes
12927         * lib/shell32.def: Remove imports for IID_ContextMenu
12928
12929 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12930
12931         * Makefile.in (dist): Support dist target
12932         * lib/Makefile.in (dist): Likewise
12933         * lib/Makefile.in (uninstall-headers): Fix command
12934         * Makefile.in (bindist): Target to build a prebuilt dist
12935
12936         * lib/ws2_32.def: Winsock2 implib
12937
12938         * include/largeint.h: New header
12939         * include/largeint.c: Large integer support library
12940         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12941         (EXTRA_OBJS): Add largeint.o
12942
12943         * include/Makefile: Remove
12944         * lib/Makefile: Remove
12945         * Makefile: Remove
12946         * configure.in: New autoconf script
12947         * configure: generated configure script
12948         * Makefile.in: autoconf makefile template
12949         * lib/Makefile.in: Ditto
12950         * include/test.c: mv to lib/test.c
12951         * include/res.rc: mv to lib/res.rc
12952         * include/TODO: mv to .
12953         * include/Notes: mv to ./NOTES
12954
12955 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12956
12957         * include/zmouse.h (WHEEL_DELTA): Define
12958
12959 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12960
12961         * include/ddeml.h (HSZPAIR): Declare.
12962         * include/zmouse.h: New file.
12963
12964 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12965
12966         * lib/d3dim.def: New implib
12967         * lib/d3drm.def: Ditto
12968         * lib/d3dxof.def: Ditto
12969         * lib/ddraw.def: Ditto
12970         * lib/dinput.def: Ditto
12971         * lib/dplayx.def: Ditto
12972         * lib/dsetup.def: Ditto
12973         * lib/dsound.def: Ditto
12974         * lib/dinput.c: Guid library for DirectInput
12975         * lib/dxguid.c: Guid library for DirectX
12976
12977 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12978
12979         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12980         by Ron Aaron).
12981         * include/windowsx.h (GET_Y_LPARAM): Also missing
12982         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12983         by Mumit Khan).
12984
12985 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12986
12987         * include/scrnsave.h: New header file for screen saver library
12988         * lib/scrnsave.c: New file: screen saver library
12989
12990 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12991
12992         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12993         works well in when UNICODE is defined
12994
12995 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12996
12997         * include/winuser.h(STYLESTRUCT): New struct
12998         * include/wingdi.h:(GOBJENUMPROC): This function type should
12999         return void.
13000
13001 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13002
13003         * include/basetyps.h (LPGUID): New typedef
13004         * lib/glut.def: Import library defintions for glut.dll
13005         * lib/glu32.def: Ditto for glut32.dll
13006         * include/winnt.h: Fixed handling of wchar_t typedef
13007         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
13008         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
13009
13010 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
13011
13012         * include/winbase.h(AbnormalTermination): Define as FALSE
13013         * include/commctrl.h: Support for new progress bar messages/styles
13014
13015 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
13016
13017         * include/commdlg.h(PageSetupDlg): New define
13018         * include/richedit.h: Missing SCF_* defines
13019         * include/winnt.h: Lots o' defines
13020         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
13021
13022 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
13023
13024         * include/commdlg.h: Removed pack pragma
13025         * lib/comctl32.def(InitCommonControlsEx@4): Added import
13026
13027 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
13028
13029         * Makefile: Set version to 0.1.5
13030         * lib/Makefile (clean): Fix typo
13031
13032         * include/commctrl.h: Removed pack pragma
13033         * include/cpl.h: Likewise
13034         * include/dbt.h: Likewise
13035         * include/dde.h: Likewise
13036         * include/nddeapi.h: Likewise
13037         * include/shellapi.h: Likewise
13038         * include/wincrypt.h: Likewise
13039         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
13040
13041         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
13042         (servent): Likewise
13043         (protoent): Likewise
13044
13045         * include/windows.h: Prevent inclusion of winsock.h if we are
13046         using or compiling cygwin. Define Win32_Winsock to force inclusion.
13047
13048 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
13049
13050         * include/winbase.h (CREATE_FORCEDOS): New define
13051
13052 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
13053
13054         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
13055         (COORD): Likewise
13056         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
13057         * include/windows.h: Added DUMMYUNIONNAME4 and 5
13058         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
13059         (PLUID_AND_ATTRIBUTES_ARRAY): New type
13060
13061         * include/ddeml.h: Removed unnecessary `#pragma pack'
13062         * include/imm.h: Likewise
13063         * include/nddeapi.h: Likewise
13064         * include/nspapi.h: Likewise
13065         * include/regstr.h: Likewise
13066         * include/wincon.h: Likewise
13067         * include/windef.h: Likewise
13068         * include/winioctl.h: Likewise
13069         * include/winnls.h: Likewise
13070         * include/winsvc.h: Likewise
13071         * include/winuser.h: Likewise
13072         * include/winver.h: Likewise
13073         * include/wtypes.h: Likewise
13074
13075 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
13076
13077         * Makefile (VERSION): Set to 0.1.4
13078         * include/basetyps.h: Check for NOCOMOBJECT
13079         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
13080         on comobject attribute.
13081         * lib/kernel32.def: Added a few functions
13082         * include/windef.h (DWORD): Changed back to unsigned long
13083
13084         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
13085         winresrc.h in turn includes the necessary headers. This makes things
13086         much simpler, no need to protect blocks of code in headers that
13087         should not be seen by the resource compiler.
13088
13089 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
13090
13091         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
13092         * include/wincon.h: Added console event type flags
13093         * include/winnt.h (FILE_SHARE_DELETE): Added
13094           (SECURITY_DESCRIPTOR): typedef as DWORD
13095
13096         * include/winuser.h (WM_PENWINFIRST): Fixed typo
13097         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
13098         define u_* types only if _SYS_TYPES_H is not defined.
13099
13100 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
13101
13102         * COPYING.LIB: Deleted
13103         * README: Updated to reflect license changes
13104         * include/shlobj.h: Remove extra comma on some enums
13105         * include/windef.h: Changed DWORD typedef from unsigned long to
13106         unsigned int in order to avoid warnings on bit fields that
13107         use DWORD.
13108         * include/Makefile (test): Compile with all warnings
13109         * include/unknwn.h: Include objfwd.h
13110         * include/winsock.h: Added missing copyright notices.
13111
13112 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
13113
13114         * lib/winmm.def: Corrected LIBRARY statement
13115         * include/mmsystem.h: Define mmioSeek codes if not already defined
13116         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
13117         (CreateStatusWindowW): Likewise
13118
13119         * include/winresrc.h: Include only files necessary instead of windows.h
13120         * include/dde.h: Allow inclusion in resource scripts.
13121         * include/winnt.h: Likewise
13122         * include/commctrl.h: Likewise
13123         * include/prsht.h: Likewise
13124         * README: Updated
13125
13126 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
13127
13128         * include/sqltypes.h (SQLHANDLE): Added this type
13129         (SQLHDESC): Likewise
13130         * include/sql.h (SQLFreeHandle): Added this prototype
13131         (SQLAllocHandle): Likewise
13132
13133 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
13134
13135         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
13136         conflicts with cygwin headers.
13137
13138 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
13139
13140         * Makefile: Changed VERSION to 0.1.3
13141         * Makefile (dist-lib): New target to make import library only
13142         distribution
13143         * Makefile (dist-hdr): New target to make headers only distribution
13144         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
13145         building one single distribution file.
13146         * dist.mak: Deleted
13147
13148         * include/lm.h: New file
13149         * include/lmcons.h: New file
13150         * include/lmalert.h: New file
13151         * include/lmaudit.h: New file
13152         * include/lmconfig.h: New file
13153         * include/lmapibuf.h: New file
13154         * include/lmaccess.h: New file
13155         * include/lmchdev.h: New file
13156         * include/lmremutl.h: New file
13157         * include/lmrepl.h: New file
13158         * include/lmerrlog.h: New file
13159         * include/lmat.h: New file
13160         * include/lmuse.h: New file
13161         * include/lmuseflg.h: New file
13162         * include/lmserver.h: New file
13163         * include/lmerr.h: New file
13164         * include/lmsname.h: New file
13165         * include/lmstats.h: New file
13166         * include/lmsvc.h: New file
13167         * include/lmwksta.h: New file
13168         * include/lmbrowsr.h: New file
13169
13170 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
13171
13172         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
13173         * include/unknwn.h: Added extern declaration for IID_IClassFactory
13174
13175         * include/initguid.h: New file
13176
13177         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13178         int not supported
13179
13180         * include/winnt.h: Added USN
13181         * include/winnt.h: Changed handling of 64 bit int support
13182
13183         * include/windows.h: Added support for BC,LCC and MSVC
13184
13185         * include/windows.h: Changed handling machine architecture defines
13186
13187         * include/olectl.h: New file
13188
13189 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13190
13191         * include/oleidl.h: Added IViewObject and IViewObject2
13192
13193         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13194         IStorage::MoveElement
13195
13196         * include/oledlg.h: New file
13197
13198         * include/winresrc.h: New file
13199
13200         * include/wingdi.h: Added LPDOCINFO
13201
13202         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13203         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13204         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13205         TabCtrl_SetImageList and TabCtrl_GetItemCount
13206         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13207
13208         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13209
13210         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13211         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13212
13213         * include/commdlg.h: Added LPDEVNAMES
13214
13215         * include/windows.h: Include excpt.h
13216
13217         * include/excpt.h: New file. This file just contains some
13218         stubs for SEH that do nothing.
13219
13220         * include/commctrl.h: Added general WM_NOTIFY codes
13221
13222         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13223         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13224         not be in the headers.
13225         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13226         * include/winuser.h: Added old WM_SIZE parameter names so
13227         wxWindows compiles.
13228         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13229         * include/winuser.h: Added LPDLGITEMTEMPLATE
13230         * include/winuser.h: HTCAPTION was missing value
13231         * include/winuser.h: Added WM_ACTIVE flags
13232
13233         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13234         _fxx defines for memmove, memset and memcmp
13235
13236         * include/windef.h: Changed _export and __export to empty defines
13237
13238         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13239         String parameters were not const and ExtractAssociatedIcon takes
13240         a WORD pointer not DWORD pointer as last parameter.
13241
13242         * Makefile: Changed VERSION to 0.1.2
13243
13244         * include/ole2ver.h: New file
13245
13246         * Makefile: Removed all dependencies on GLUT
13247
13248         * include/GL/glut.h: Removed file because of decision to remove
13249         files that are not part of the library.
13250         * lib/glut.def: Likewise
13251         * lib/glut32.def: Likewise
13252
13253         * include/windows.h: Include winperf.h
13254
13255         * include/winperf.h: New file
13256
13257         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13258
13259         * include/winnls.h: Added calendar types
13260         * include/winnls.h: Added country codes
13261
13262 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13263
13264         * include/windef.h: Added PROC and NEARPROC
13265
13266         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13267         * include/wingdi.h: Added OpenGL types and prototypes
13268         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13269         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13270         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13271         * include/wingdi.h: Added truetype character outline types
13272         * include/wingdi.h: Added DEVMODE initialization flags
13273         * include/wingdi.h: Added panose codes
13274         * include/wingdi.h: Added missing character sets
13275         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13276         NONANTIALIASED_QUALITY
13277         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13278         * include/wingdi.h: Added pointer types for EXTLOGPEN
13279         * include/wingdi.h: Added PATTERN type
13280         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13281         * include/wingdi.h: Added new text metric flags
13282         * include/wingdi.h: Added pitch and family flags
13283         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13284         * include/wingdi.h: Added METAHEADER
13285         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13286         * include/wingdi.h: Added TA_MASK
13287         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13288         * include/wingdi.h: Added error codes
13289
13290         * include/winuser.h: Added missing winhelp structures
13291         * include/winuser.h: Added dialog flags/styles/messages
13292         * include/winuser.h: Added EM_SETMARGIN codes
13293         * include/winuser.h: Made it possiblie to use IDI_XX values
13294         in resource files.
13295         * include/winuser.h: Added missing LoadImage load flags
13296         * include/winuser.h: Added missing message box flags
13297         * include/winuser.h: Added ScrollWindow codes
13298         * include/winuser.h: Added DT_WORD_ELLIPSIS
13299         * include/winuser.h: Added drag and drop support
13300         * include/winuser.h: Added WM_MENUCHAR return codes
13301         * include/winuser.h: Added DLGWINDOWEXTRA
13302         * include/winuser.h: Added missing SetWindowPos flags.
13303         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13304         * include/winuser.h: Added IDHOT_xx defines
13305         * include/winuser.h: Added MOD_WIN
13306         * include/winuser.h: Added missing defines and structs for owner draw
13307         controls.
13308         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13309         WPF_SETMINPOSITION
13310         * include/winuser.h: Added DrawAnimatedRects flags
13311         * include/winuser.h: Added WM_PRINT codes
13312         * include/winuser.h: Added CS_IME class style
13313         * include/winuser.h: Added WM_SIZE codes
13314         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13315         * include/winuser.h: Added WM_NCHITTEST return codes
13316         * include/winuser.h: Added WM_SIZING parameters
13317         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13318         * include/winuser.h: Added menu loop codes.
13319         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13320         NF_REQUERY
13321         * include/winuser.h: Added WM_POWER flags
13322         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13323         * include/winuser.h: Added missing message filter codes
13324         * include/winuser.h: Added WM_KEYXX message flags
13325         * include/winuser.h: Added WM_SHOWMESSAGE flags
13326         * include/winuser.h: Added old ShowWindow commands
13327         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13328         structures.
13329
13330         * include/mciavi.h: New file for the MCI AVI driver that for some
13331         reason is not in mmsystem.h.
13332
13333         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13334         * include/winbase.h: Added SECURITY_xx for CreateFile
13335         * include/winbase.h: Added RTS and DTS control values
13336         * include/winbase.h: Fixed SYSTEM_INFO structure
13337         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13338         * include/winbase.h: Added FILE_TYPE_REMOTE
13339         * include/winbase.h: Added modem status flags
13340         * include/winbase.h: Added HINSTANCE_ERROR
13341         * include/winbase.h: Added DefineDosDevice defines
13342         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13343         * include/winbase.h: Added STARTF_XX flags
13344         * include/winbase.h: Fixed typo on _lcreat prototype.
13345         * include/winbase.h: Moved DBG_XX to winnt.h
13346         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13347         winnt.h
13348
13349         * include/unknwn.h: Added extern declaration of IID_IUnknown
13350
13351         * include/windowsx.h: Added hmemcpy.
13352
13353         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13354         * include/winnt.h: Added PACCESS_TOKEN
13355         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13356         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13357         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13358         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13359         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13360         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13361
13362         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13363         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13364         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13365
13366         * include/winsvc.h: Removed conflicting defines which were supposed
13367         to be in winnt.h
13368
13369         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13370         and SERVICE_ERROR_TYPE.
13371
13372         * include/winnt.h: Added SERVICE_XX defines.
13373         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13374         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13375
13376         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13377         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13378         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13379         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13380
13381 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13382
13383         * include/winbase.h: Corrected prototype for CreateProcessA
13384
13385         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13386         driver extensions.
13387
13388         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13389         be LPSHELLFOLDER* not LPSHELLFOLDER.
13390
13391         * include/windows.h: Include commdlg.h
13392
13393         * include/winuser.h: Added MDICREATESTRUCT
13394
13395         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13396         CB_ERRSPACE, and CB_OKAY
13397
13398         * include/wingdi.h: Added LPBITMAPINFOHEADER
13399
13400         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13401         are meaningless.
13402         * include/rpcdce2.h: Likewise.
13403
13404         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13405
13406         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13407         * include/olectlid.h: Likewise
13408         * include/shlguid.h: Likewise
13409
13410         * include/coguid.h: Delete file since it was for 16 bit windows only.
13411
13412         * lib/*.def: Appended .dll to library name where needed.
13413
13414         * include/windef.h: Define _stdcall and __stdcall only if not
13415         previously defined instead of undefining first.
13416
13417         * include/dlgs.h: Put RC_INVOKED around structure defs
13418
13419         * include/intshcut.h: New file
13420         * include/isguids.h: New file
13421
13422         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13423
13424 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13425
13426         * include/winnt.h: Added check if _T is defined before defining it
13427
13428         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13429
13430         * include/dlgs.h: New file
13431
13432         * include/winbase.h: Removed DllEntryPoint define
13433
13434         * include/winbase.h: Added SetupComm prototype
13435
13436         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13437         supported anyway.
13438
13439         * include/basetyps.h: Removed use of COMOBJECT define, instead
13440         DECLARE_INTERFACE directly uses comobject attribute when GCC
13441         is used.
13442
13443         * include/wtypes.h: STGC enum was missing typedef
13444
13445         * include/objidl.h: ADVC enum was missing typedef
13446
13447         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13448         they are nested within the VOID definition.
13449
13450         * include/winbase.h: Added stream ids and attributes
13451
13452         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13453         to an ANYSIZE_ARRAY array.
13454
13455 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13456
13457         * include/windef.h: defined _declspec as __declspec since
13458         some programs (like VWCL) use _declspec instead of __declspec
13459
13460         * include/winnt.h: added COMPRESS_FORMAT defines
13461
13462         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13463
13464         * include/winnt.h: added HEAP_XXXX defines
13465
13466         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13467
13468         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13469         specification.
13470
13471         * include/winnt.h: added NTAPI define
13472
13473 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13474
13475         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13476         instead of CHAR or WCHAR.
13477
13478         * include/winnt.h: added _T define
13479
13480         * include/winnt.h: added test for _TCHAR_DEFINED
13481
13482         * include/winnt.h: included string.h for memory macros
13483
13484         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13485
13486         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13487
13488         * include/prsht.h: added PropSheet_XXX macros
13489
13490
13491 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13492
13493         * include/winspool.h: Changed DeletePrinterProcessor and
13494         DeletePrinterProvidor to DeletePrintXX.
13495
13496         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13497         LOGCOLORSPACEW.
13498
13499         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13500         variants
13501
13502         * include/wingdi.h: Likewise for GetLogColorSpace
13503
13504         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13505
13506         * include/richedit.h: Added missing defines and structures
13507
13508         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13509
13510         * include/winuser.h: Added HWND_DESKTOP
13511
13512 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13513
13514         * Makefile: Include ChangeLog when building source
13515         distribution (srcdist)
13516
13517         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13518         are always defined as STDAPI and STDAPI_
13519
13520         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13521         are always defined as STDAPI and STDAPI_
13522
13523         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13524
13525         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13526
13527         * ChangeLog started