OSDN Git Service

a51ea0ee56efb77ff9a0aa21f239a8dfd5ea1a10
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2019-01-22  Keith Marshall  <keith@users.osdn.me>
2
3         Prepare and publish MinGW.org WSL-5.2.1 release.
4
5         * All files (wsl-5.2.1-release): Tag assigned.
6
7 2019-01-22  Keith Marshall  <keith@users.osdn.me>
8
9         Incorporate user-customized <features.h> configuration.
10
11         * tests/Makefile.in (install-mingwrt-headers): Create <features.h>
12         stub; this is an empty file, yielding the default configuration.
13
14 2018-12-23  Keith Marshall  <keith@users.osdn.me>
15
16         Prepare and publish MinGW.org WSL-5.2 release.
17
18         * All files (wsl-5.2-release): Tag assigned.
19
20 2018-12-18  Keith Marshall  <keith@users.osdn.me>
21
22         Make <winver.h> header effectively self-contained.
23
24         * include/winver.h: Include <windef.h>
25
26 2018-11-23  Keith Marshall  <keith@users.osdn.me>
27
28         Fix MinGW-Bug #2248 (SF ticket).
29
30         * include/commctrl.h (NMPGSCROLL): Set packing to 1-byte alignment.
31         (NMPGSCROLL.fwKeys): Change type from BOOL to WORD.
32
33 2018-11-23  Keith Marshall  <keith@users.osdn.me>
34
35         Apply some more cosmetic layout adjustments.
36
37         * include/commctrl.h: Keep 'typedef' and 'struct' on a single line,
38         for each untagged aggregate type definition.
39
40 2018-11-18  Jelle Geerts  <heisenbug@users.osdn.me>
41
42         Fix MinGW-Bug #38736 (OSDN ticket).
43
44         * include/commctrl.h (DTM_SETFORMATW): Correct definition; was 0x1050,
45         but should be equivalent to 0x1000 + 50, which is actually 0x1032.
46
47 2018-11-18  Keith Marshall  <keith@users.osdn.me>
48
49         Make <commctrl.h> header effectively self-contained.
50
51         * include/commctrl.h: Tidy layout; assert copyright.
52         Include <winbase.h> and <prsht.h>; both are required to resolve
53         inter-header dependencies, so achieving effective self-containment.
54         Correctly parenthesize argument references in macro definitions.
55         (pragma GCC system_header): Remove redundant GCC version guard.
56         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
57         (SNDMSG): Remove definition; it is inherited from <prsht.h> anyway.
58         (__AW_ALIAS__, __AW_SUFFIXED__, __AW_STRING_A__, __AW_STRING_W__):
59         Use them; they facilitate maintenance of robust definitions for...
60         [UNICODE vs. ! UNICODE]: ...generic symbols and strings.
61         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
62
63 2018-11-16  Keith Marshall  <keith@users.osdn.me>
64
65         Make <prsht.h> header effectively self-contained.
66
67         * include/prsht.h: Tidy layout; assert copyright.
68         Include <winuser.h> to resolve inter-header dependencies.
69         Correctly parenthesize argument references in macro definitions.
70         (pragma GCC system_header): Remove redundant GCC version guard.
71         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
72         (SNDMSG, POSTMSG) [ifndef]: Remove guard condition; it prevents GCC
73         from checking consistency of alternative definition sources.
74         (__AW_SUFFIXED__): Use it; it improves robustness of...
75         [UNICODE vs. ! UNICODE]: ...generic definitions.
76         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
77
78 2018-10-29  Keith Marshall  <keith@users.osdn.me>
79
80         Clean up <wincon.h>; consolidate its version dependencies.
81
82         * include/wincon.h: Tidy layout; assert copyright.
83         [_WIN32_WINNT]: Always compare it symbolically, with respect to...
84         [_WIN32_WINNT_WIN2K, _WIN32_WINNT_WINXP, _WIN32_WINNT_VISTA]: ...each
85         of these; group and consolidate respective version dependencies.
86         (FOREGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_RED)
87         (FOREGROUND_INTENSITY, BACKGROUND_BLUE, BACKGROUND_GREEN)
88         (BACKGROUND_RED, BACKGROUND_INTENSITY, COMMON_LVB_LEADING_BYTE)
89         (COMMON_LVB_TRAILING_BYTE, COMMON_LVB_GRID_HORIZONTAL)
90         (COMMON_LVB_GRID_LVERTICAL, COMMON_LVB_GRID_RVERTICAL)
91         (COMMON_LVB_REVERSE_VIDEO, COMMON_LVB_UNDERSCORE, CTRL_C_EVENT)
92         (CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT)
93         (CTRL_SHUTDOWN_EVENT, ENABLE_LINE_INPUT, ENABLE_ECHO_INPUT)
94         (ENABLE_PROCESSED_INPUT, ENABLE_WINDOW_INPUT, ENABLE_MOUSE_INPUT)
95         (ENABLE_INSERT_MODE, ENABLE_QUICK_EDIT_MODE, ENABLE_EXTENDED_FLAGS)
96         (ENABLE_AUTO_POSITION, ENABLE_VIRTUAL_TERMINAL_INPUT)
97         (ENABLE_PROCESSED_OUTPUT, ENABLE_WRAP_AT_EOL_OUTPUT)
98         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
99         (ENABLE_LVB_GRID_WORLDWIDE, KEY_EVENT, MOUSE_EVENT)
100         (WINDOW_BUFFER_SIZE_EVENT, MENU_EVENT, FOCUS_EVENT, CAPSLOCK_ON)
101         (ENHANCED_KEY, RIGHT_ALT_PRESSED, LEFT_ALT_PRESSED)
102         (RIGHT_CTRL_PRESSED, LEFT_CTRL_PRESSED, SHIFT_PRESSED, NUMLOCK_ON)
103         (SCROLLLOCK_ON, FROM_LEFT_1ST_BUTTON_PRESSED)
104         (FROM_LEFT_2ND_BUTTON_PRESSED, FROM_LEFT_3RD_BUTTON_PRESSED)
105         (FROM_LEFT_4TH_BUTTON_PRESSED, RIGHTMOST_BUTTON_PRESSED, MOUSE_MOVED)
106         (DOUBLE_CLICK, MOUSE_WHEELED, MOUSE_HWHEELED, CONSOLE_FULLSCREEN)
107         (CONSOLE_FULLSCREEN_HARDWARE, CONSOLE_FULLSCREEN_MODE)
108         (CONSOLE_WINDOWED_MODE, CONSOLE_NO_SELECTION)
109         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_SELECTION_NOT_EMPTY)
110         (CONSOLE_MOUSE_SELECTION, CONSOLE_MOUSE_DOWN, HISTORY_NO_DUP_FLAG):
111         Redefine, expressing all values in hexadecimal rather than decimal;
112         this is consistent with Microsoft documentation, and it is also more
113         logical, since all represent bit-flags, bit-fields, or bit-masks.
114
115 2018-10-24  Keith Marshall  <keith@users.osdn.me>
116
117         Make <wincon.h> header effectively self-contained.
118
119         * include/wincon.h [_WIN32_WINNT < 0x0600]: Include <windef.h>...
120         [_WIN32_WINNT >= 0x0600]: ...but, Vista and later need <wingdi.h>
121         [__GNUC__ >= 3]: Remove condition; used only in association with...
122         (#pragma GCC system_header): ...this, it is redundant in this context.
123         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them as appropriate.
124
125 2018-10-24  David Gressett  <texasgaidheal@users.osdn.me>
126
127         Improve WinXP/Vista console I/O support.
128
129         * include/wincon.h (AddConsoleAlias, GetConsoleAlias)
130         (GetConsoleAliases, GetConsoleAliasExes, GetConsoleAliasesLength)
131         (GetConsoleAliasExesLength, GetConsoleOriginalTitle): New function
132         name aliases; define them, mapping them conditionally to represent...
133         [UNICODE]: ...their corresponding UTF-16LE function names, else...
134         [!UNICODE]: ...their corresponding ASCII/DBCS function names.
135         (COMMON_LVB_LEADING_BYTE, COMMON_LVB_TRAILING_BYTE
136         (COMMON_LVB_GRID_HORIZONTAL, COMMON_LVB_GRID_LVERTICAL)
137         (COMMON_LVB_GRID_RVERTICAL, COMMON_LVB_REVERSE_VIDEO)
138         (COMMON_LVB_UNDERSCORE, ENABLE_VIRTUAL_TERMINAL_INPUT)
139         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
140         (ENABLE_LVB_GRID_WORLDWIDE,(MOUSE_HWHEELED): Define them.
141         (GetConsoleAliasA, GetConsoleAliasW, HandlerRoutine): Declare.
142         (CONSOLE_FULLSCREEN, CONSOLE_FULLSCREEN_HARDWARE): Define when...
143         [_WIN32_WINNT >= 0x0500]: ...this prevails; additionally...
144         (GetConsoleFontSize): ...declare function.
145         (CONSOLE_NO_SELECTION, CONSOLE_SELECTION_NOT_EMPTY)
146         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_MOUSE_SELECTION)
147         (CONSOLE_MOUSE_DOWN): Define them; make them visible only when...
148         [_WIN32_WINNT >= 0x0501]: ...this prevails.
149         (struct _CONSOLE_FONT_INFO): Make it visible, only when...
150         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
151         (CONSOLE_FONT_INFO, PCONSOLE_FONT_INFO): ...these typedefs.
152         (struct _CONSOLE_SELECTION_INFO): Declare it; visible only when...
153         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
154         (CONSOLE_SELECTION_INFO, PCONSOLE_SELECTION_INFO): ...these typedefs.
155         [_WIN32_WINNT >= 0x0501] (AddConsoleAliasA, AddConsoleAliasW)
156         (GetConsoleAliasesA, GetConsoleAliasesW, GetConsoleAliasExesA)
157         (GetConsoleAliasExesW, GetConsoleAliasesLengthA)
158         (GetConsoleAliasesLengthW, GetConsoleAliasExesLengthA)
159         (GetConsoleAliasExesLengthW, GetConsoleSelectionInfo)
160         (GetCurrentConsoleFont): Declare functions.
161         [_WIN32_WINNT >= 0x0600] (HISTORY_NO_DUP_FLAG): Define it.
162         (struct _CONSOLE_FONT_INFOEX): New structure; declare it only when...
163         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
164         (CONSOLE_FONT_INFOEX, PCONSOLE_FONT_INFOEX): ...these typedefs.
165         (CONSOLE_HISTORY_INFO, PCONSOLE_HISTORY_INFO): New typedefs; they
166         map to an anonymous structure, and are visible only when...
167         [_WIN32_WINNT >= 0x0600]: ...this prevails.
168         (struct _CONSOLE_READCONSOLE_CONTROL): New structure; declare when...
169         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
170         (CONSOLE_READCONSOLE_CONTROL, PCONSOLE_READCONSOLE_CONTROL): ...these.
171         (struct _CONSOLE_SCREEN_BUFFER_INFOEX): New structure; declare when...
172         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
173         (CONSOLE_SCREEN_BUFFER_INFOEX, PCONSOLE_SCREEN_BUFFER_INFOEX):
174         ...these typedefs.
175         [_WIN32_WINNT >= 0x0600] (GetConsoleHistoryInfo)
176         (GetConsoleOriginalTitleA, GetConsoleOriginalTitleW)
177         (GetConsoleScreenBufferInfoEx, GetCurrentConsoleFontEx)
178         (SetConsoleHistoryInfo, SetConsoleScreenBufferInfoEx)
179         (SetCurrentConsoleFontEx): Declare functions.
180
181 2018-09-03  Keith Marshall  <keith@users.osdn.me>
182
183         Prepare and publish MinGW.org WSL-5.1.1 release.
184
185         * All files (wsl-5.1.1-release): Tag assigned.
186
187 2018-07-29  Keith Marshall  <keith@users.osdn.me>
188
189         Don't restrict <winerror.h> exposure when including <winsock.h>
190
191         * include/winerror.h [__WINSOCK_H_SOURCED__]: Remove filters.
192         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): Do not define; delete
193         all dependent filter references.
194
195 2018-07-11  Keith Marshall  <keith@users.osdn.me>
196
197         Make <wincrypt.h> header effectively self-contained.
198
199         * include/wincrypt.h: Include <winbase.h>
200
201 2018-07-11  Keith Marshall  <keith@users.osdn.me>
202
203         Correct <wincrypt.h> typographic errors; fix issue [#38391]
204
205         * include/wincrypt.h (CALG_TLS1PRF): Delete symbolic reference to...
206         (ALG_CLASS_DHASH): ...this; there is no such symbol; replace it with...
207         (ALG_CLASS_HASH): ...this, which represents the correct reference.
208         (struct _CRYPTOAPI_BLOB): Delete extraneous "typedef" keyword; this
209         struct definition is not directly associated with any type name.
210         (struct _SSL_EXTRA_CERT_CHAIN_POLICY_PARA): Likewise.
211
212 2018-02-26  Keith Marshall  <keith@users.osdn.me>
213
214         Prepare and publish MinGW.org WSL-5.1 release.
215
216         * All files (wsl-5.1-release): Tag assigned.
217
218 2018-02-24  Keith Marshall  <keith@users.osdn.me>
219
220         Make <iptypes.h> header effectively self-contained.
221
222         * include/iptypes.h: Assert copyright; tidy layout.
223         Include <windef.h>; it is required for self-containment.
224         (__need_time_t): Define for selective inclusion of <sys/types.h>
225         (_BEGIN_C_DECLS, _END_C_DECLS): Use them as appropriate.
226         (_WIN32_WINNT): Always compare it symbolically.
227         (__dhcp_time_t): New temporary data type macro; define it...
228         [_WIN64]: ...as equivalent to __time64_t, otherwise...
229         [!_WIN64]: ...equivalent to __time32_t, and then...
230         (struct _IP_ADAPTER_INFO): ...use it as the data type for...
231         (LeaseObtained, LeaseExpires): ...these fields.
232
233 2017-12-20  Keith Marshall  <keith@users.osdn.me>
234
235         Make <winreg.h> header effectively self-contained.
236
237         * include/winreg.h: Include <winbase.h>, thus achieving effective
238         self-containment; since this also indirectly includes <_mingw.h>,
239         there is no longer any need to include it directly.
240
241 2017-12-20  Keith Marshall  <keith@users.osdn.me>
242
243         Clean up, following issue [#2262] patch application.
244
245         * include/winreg.h: Tidy layout; correct copyright assertion.
246         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
247         [UNICODE] (__AW): Do not use deleted macro; replace it with...
248         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
249         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
250         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
251         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
252         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
253         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
254         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
255         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
256         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
257         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
258         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
259         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
260         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
261         all "4.x" branches specified these incorrectly, dependent on...
262         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
263         "legacy" branch, whence the "5.x" branches are propagated, correctly
264         required an alternative condition which is the equivalent of...
265         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
266
267 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
268
269         Update registry management API, per issue [#2262].
270
271         * include/winreg.h: Merge changes from 4.1-dev branch.
272         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
273         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
274         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
275         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
276         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
277         (RRF_ZEROONFAILURE): New manifest constants; define them.
278         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
279         (RegOverridePredefKey): Add previously omitted function prototypes.
280         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
281         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
282         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
283         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
284         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
285         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
286         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
287         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
288         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
289         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
290         (RegDeleteKeyValueA, RegDeleteKeyValueW)
291         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
292         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
293         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
294         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
295         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
296         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
297         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
298         (RegSetKeyValue): Define, mapping each to its respective function...
299         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
300         [defined UNICODE] (__AW): ...for the UTF-16LE case.
301
302         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
303         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
304         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
305         (RegSaveKeyExW@16): Remove them; relocate them to...
306         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
307         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
308         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
309         (RegSaveKeyExW@16): ...their correct location, here.
310         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
311         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
312         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
313         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
314         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
315         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
316         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
317
318 2017-12-16  Keith Marshall  <keith@users.osdn.me>
319
320         Provide default definition for _WIN32_IE feature test macro.
321
322         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
323         (_WIN32_IE_IE50): ...this default value.
324
325         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
326         a conflicting proposal for the default value.
327
328 2017-12-06  Keith Marshall  <keith@users.osdn.me>
329
330         Prepare and publish MinGW.org WSL-5.0.2 release.
331
332         * All files (wsl-5.0.2-release): Tag assigned.
333
334 2017-11-28  Keith Marshall  <keith@users.osdn.me>
335
336         Make <wsnetbs.h> header effectively self-contained.
337
338         * include/wsnetbs.h: Assert copyright; tidy layout; include
339         "_winsock.h", so making this header effectively self-contained, and
340         thus relieving the user of a responsibility for ensuring that some
341         other appropriate WinSock header has been included first.
342
343 2017-11-28  Keith Marshall  <keith@users.osdn.me>
344
345         Factor <winsock.h> duplicate content out of <winsock2.h>
346
347         * include/winsock2.h: Remove all declarations and definitions which
348         are identically specified in <winsock.h>, but keep them in scope by...
349         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
350         declarations and definitions therefrom, which introduce conflicts.
351         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
352         definitions and declarations.
353
354         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
355         WinSock v1.1 and WinSock v2, the latter of which will override when
356         correctly included by <winsock2.h>
357
358 2017-11-24  Keith Marshall  <keith@users.osdn.me>
359
360         Make <winsock.h> and <winsock2.h> duplicate code congruent.
361
362         * include/winsock.h (SOMAXCONN): Move definition into...
363         [!__INSIDE_MSYS__]: ...this guarded scope.
364
365         * include/winsock2.h: Rearrange as necessary.
366         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
367         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
368         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
369         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
370         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
371         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
372         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
373         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
374         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
375         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
376         [!defined __INSIDE_MSYS__]: ...as this, throughout.
377         (gethostname): Update function prototype, adding...
378         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
379
380         * include/ws2spi.h: Tidy layout; assert copyright.
381         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
382         (LPFD_SET): Delete all type references; use...
383         (fd_set *): ...this instead.
384
385 2017-11-14  Keith Marshall  <keith@users.osdn.me>
386
387         Establish default selection for WinSock API declaration.
388
389         * include/windows.h include/nspapi.h: Include...
390         * include/_winsock.h: ...this new system private header; it selects...
391         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
392         provided by conditional inclusion of <winsock2.h>, otherwise...
393         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
394         as provided by inclusion of <winsock.h>
395
396         * tests/headers.at <_winsock.h>: Add reference.
397
398 2017-11-14  Keith Marshall  <keith@users.osdn.me>
399
400         Update gethostname() declaration; drop Cygwin specificity.
401
402         * include/winsock.h (gethostname): Declare unconditionally; add...
403         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
404         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
405         [!defined __INSIDE_MSYS__]: ...as this, throughout.
406
407 2017-11-09  Keith Marshall  <keith@users.osdn.me>
408
409         Normalize fd_set event macros for <winsock2.h> compatibility.
410
411         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
412         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
413         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
414         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
415         count to a bit flag with value of 1, in each case respectively.
416         [_WINSOCK2_H]: Extend shift count enumeration, to include...
417         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
418         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
419         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
420         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
421         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
422         of 1 greater than the offset of the last defined flag; hence...
423         (FD_ALL_EVENTS): ...derive this mask for all event flags.
424
425 2017-11-09  Keith Marshall  <keith@users.osdn.me>
426
427         Filter potential WinSock v2 conflicts out of <winsock.h>
428
429         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
430         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
431         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
432         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
433         not define any of these; they are not compatible with WinSock v2.
434         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
435         appropiately in <winsock2.h>
436
437 2017-11-09  Keith Marshall  <keith@users.osdn.me>
438
439         Filter out <winsock.h> typedef anomalies.
440
441         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
442         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
443         them as type definitions, but warn of potential conflict with...
444         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
445         function; declare its prototype.
446
447 2017-11-08  Keith Marshall  <keith@users.osdn.me>
448
449         Overhaul WinSock fd_set content management macros.
450
451         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
452         original implementations of each of these macros, redirecting to...
453         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
454         inline functions, respectively; these are more robust, and correct a
455         defect in the original FD_SET macro implementation, whereby duplicate
456         descriptors could be added to an fd_set array, but would not then be
457         removed by the corresponding FD_CLR macro.
458
459         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
460         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
461         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
462         function, which is implemented in each of these libraries.
463
464 2017-11-07  Keith Marshall  <keith@users.osdn.me>
465
466         Identify features which have been deprecated in WinSock v2.
467
468         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
469         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
470         (__MINGW_ATTRIB_DEPRECATED): ...to this.
471
472         * include/winsock.h include/winsock2.h: Qualify...
473         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
474         (WSACancelBlockingCall): ...each of these function prototypes, with...
475         (__WINSOCK2_DEPRECATED): ...this attribute.
476
477 2017-11-07  Keith Marshall  <keith@users.osdn.me>
478
479         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
480
481         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
482         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
483         with preferred convention for system feature test macros.
484
485 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
486
487         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
488
489         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
490         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
491         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
492         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
493         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
494         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
495         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
496         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
497         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
498         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
499         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
500
501         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
502         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
503
504 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
505
506         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
507
508         * include/wtypes.h: Tidy layout; assert copyright.
509         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
510         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
511         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
512         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
513         (__BLOB_T_DEFINED): ...this; do not define...
514         (_WTYPES_H): ...this external guard.
515
516         * include/nspapi.h: Tidy layout; assert copyright.
517         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
518         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
519         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
520         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
521         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
522         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
523         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
524         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
525         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
526         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
527         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
528         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
529         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
530         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
531         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
532         (__AW_ALIAS__): ...this, for definition of each of...
533         (SERVICE_INFO, LPSERVICE_INFO): ...these.
534
535         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
536         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
537         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
538         include nspapi.h selectively, to acquire them.
539
540 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
541
542         Factor <winerror.h> duplicate content out of winsock headers.
543
544         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
545         conditional block, and all of its content; selectively include...
546         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
547         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
548         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
549         define them, to segregate WSA error messages applicable to WinSock v2
550         only, from those applicable to both WinSock v1.1 and WinSock v2.
551         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
552         codes, except WSABASEERR, relative to WSABASEERR itself.
553
554 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
555
556         Factor <sys/time.h> duplicate content out of winsock headers.
557
558         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
559         conditional block, and all its content; include <sys/time.h> instead.
560         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
561         processing this header, such that only selected content from other
562         internally referenced headers is exposed.
563
564 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
565
566         Source BSD non-standard type definitions from mingwrt header.
567
568         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
569         conditional block, and its entire type definition content; include...
570         * include/sys/bsdtypes.h: ...this common file instead; it defines...
571         (u_char, u_int, u_long, u_short): ...these non-standard data types.
572
573 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
574
575         Correct misuse of __INSIDE_MSYS__ feature test.
576
577         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
578         omits "defined" operator; it should be expressed consistently as...
579         [! defined __INSIDE_MSYS__]: ...this; correct it.
580
581 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
582
583         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
584
585         * include/winsock.h: Tidy layout; assert copyright.
586         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
587
588         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
589         sections, which are common with <winsock.h>, are laid out congruently.
590         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
591         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
592         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
593         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
594         [UNICODE]: ...alternative typedefs, and function name aliases...
595         [!UNICODE]: ...versus this case.
596
597 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
598
599         Resolve secondary issue arising from MinGW-Bug [#2350]
600
601         * include/winuser.h (GetTitleBarInfo)
602         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
603         it conflicted with current MSDN documentation, so now falls within...
604         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
605
606 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
607
608         Resolve MinGW-Bug [#2350]
609
610         * include/winuser.h (GetTitleBarInfo): Move prototype after...
611         (PTITLEBARINFO): ...this type definition; it is used as a function
612         argument type, so must be defined beforehand.
613
614 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
615
616         Extend testsuite to cover winsock fd_set macro operations.
617
618         * tests/winsock.at: New file; it implements appropriate tests, and
619         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
620         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
621
622         * tests/testsuite.at.in (winsock.at): Integrate it.
623         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
624         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
625         default list of libraries, or resets the list to this initial default.
626         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
627         library specifications, to be used until subsequently reset.
628
629 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
630
631         Prepare and tag for release of MinGW.org WSL-5.0.1
632
633         * All files (wsl-5.0.1-release): Tag assigned.
634
635 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
636
637         Automate testsuite dependency generation.
638
639         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
640         enumerate all such wildcard matches as prerequisites, instead of...
641         (headers.at): ...this sole explicit dependency.
642
643 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
644
645         Make <winnt.h> header effectively self-contained.
646
647         * include/winnt.h (_WINNT_H): Defer definition unless included via...
648         (windef.h): ...this; include it, to enforce inclusion order, then...
649         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
650
651 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
652
653         Consolidate <winuser.h> version specific conditionals.
654
655         * include/winuser.h: Reorganize file content; group manifest constant
656         definitions into one nested collection of conditional blocks, with one
657         block per Windows version evolution; do likewise for type definitions
658         and function prototypes which are always exposed, and separately...
659         [! defined NOGDI]: ...for those which may be suppressed, when GDI
660         support is not required.
661
662 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
663
664         Make <winuser.h> header effectively self-contained.
665
666         * include/winuser.h (stdarg.h): Include it, in addition to...
667         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
668         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
669
670 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
671
672         Consolidate <wingdi.h> version specific conditionals.
673
674         * include/wingdi.h: Reorganize file content; group manifest constant
675         definitions into a single nested collection of conditional blocks, for
676         those definitions which are common to both Win9x and WinNT, with one
677         block per Windows version evolution, sorting alphabetically within
678         each block; do likewise for additional manifest constant definitions
679         which are specific to WinNT, and also for data type definitions and
680         function prototypes.
681
682 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
683
684         Tidy, and make <wingdi.h> header effectively self-contained.
685
686         * include/wingdi.h: Tidy layout; assert copyright.
687         (windef.h): Include it; this achieves self-containment.
688         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
689         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
690         (__AW_ALIAS__): ...this, when defining each of...
691         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
692         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
693         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
694         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
695         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
696         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
697         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
698         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
699         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
700         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
701         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
702         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
703         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
704         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
705         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
706         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
707         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
708         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
709         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
710         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
711         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
712         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
713         (wglUseFontOutlines, GetGlyphIndices): ...these.
714
715 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
716
717         Declare CONDITION_VARIABLE API, per feature request [#2314]
718
719         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
720         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
721         (InitializeConditionVariable, SleepConditionVariableCS)
722         (SleepConditionVariableSRW, WakeAllConditionVariable)
723         (WakeConditionVariable): ...declare prototypes.
724
725 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
726
727         Declare SRWLOCK API, to support feature request [#2314]
728
729         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
730         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
731         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
732         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
733         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
734         (TryAcquireSRWLockShared): Declare additional prototypes.
735
736 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
737
738         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
739
740         * include/winerror.h: Tidy layout; assert copyright.
741
742         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
743         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
744         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
745         both locations; it permitted inconsistency between the two.
746
747 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
748
749         Consolidate <winbase.h> version specific conditionals.
750
751         * include/winbase.h: Reorganize file content; group manifest constant
752         definitions into one nested collection of conditional blocks, with one
753         block per Windows version evolution, sorting alphabetically within each
754         block; do likewise for data type definitions and function prototypes.
755
756 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
757
758         Tidy, and make <winbase.h> header effectively self-contained.
759
760         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
761         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
762         (__AW_EXTENDED__): ...this; subsequently reimplement...
763         (__AW_ALIAS__): ...this, with original name, now encapsulating...
764         (__AW_SUFFIXED__): ...this.
765
766         * include/dbt.h (__AW_ALIAS__): Replace all references with...
767         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
768         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
769         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
770
771         * include/winbase.h: Tidy layout; assert copyright.
772         (stdarg.h, windef.h): Include them, to achieve self-containment.
773         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
774         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
775         [__AW_ALIAS__]: ...this, to correctly specify each of...
776         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
777         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
778         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
779         [__AW_SUFFIXED__]: ...this, to correctly map each of...
780         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
781         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
782         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
783         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
784         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
785         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
786         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
787         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
788         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
789         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
790         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
791         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
792         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
793         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
794         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
795         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
796         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
797         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
798         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
799         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
800         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
801         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
802         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
803         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
804         (GetPrivateProfileInt, GetPrivateProfileSection)
805         (GetPrivateProfileSectionNames, GetPrivateProfileString)
806         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
807         (GetProfileString, GetShortPathName, GetStartupInfo)
808         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
809         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
810         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
811         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
812         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
813         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
814         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
815         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
816         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
817         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
818         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
819         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
820         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
821         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
822         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
823         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
824         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
825         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
826         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
827         (WritePrivateProfileString, WritePrivateProfileStruct)
828         (WriteProfileSection, WriteProfileString): ...these, and add...
829         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
830         (GetFirmwareEnvironmentVariable): ...these previously missing generic
831         function name aliases.
832
833 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
834
835         Refactor mingwrt and w32api common makefile content.
836
837         * Makefile.in (w32api-srcdist-config-files): Rename it...
838         (w32api-srcdist-common-files): ...as this phoney build rule.
839         (shared_include_file): New macro; define it, and include named file.
840         (configure, config.status, Makefile, config.status.missing, _mingw.h)
841         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
842         out; relocate them to new file in common parent directory...
843         * ../Makefile.comm: ...here.
844
845 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
846
847         Correct a copyright notice update omission.
848
849         * configure.ac: Extend copyright date range to include 2017.  Also
850         clean up superfluous trailing whitespace.
851
852 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
853
854         Fix generated header file dependencies.
855
856         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
857         [VERSION.m4]: ...this; package version changes are no longer made...
858         [configure.ac]: ...here; delete associated prerequisite reference.
859         (distclean-local): Delete them.
860
861 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
862
863         Prepare and tag for release of w32api-5.0 package set.
864
865         * All files (wsl-5.0-release): Tag assigned.
866
867 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
868
869         Implement basic test suite infrastructure.
870
871         * tests: New subdirectory; it hosts...
872         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
873         * tests/headers.at: ...these new files; they implement the basic test
874         suite infrastructure, initially comprising header integrity checks.
875
876         * configure.ac (AC_PROG_CXX): Check it.
877         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
878         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
879         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
880         tests/Makefile.
881
882         * Makefile.in (check test tests): New rules; all are synonymous.
883         (check-recursive): New rule; invoked by each of the preceding three.
884         (w32api-srcdist-testsuite-files): New rule; implement and use it...
885         (w32api-srcdist-files): ...here.
886
887 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
888
889         Add missing constant definition, per issue [#2249].
890
891         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
892
893 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
894
895         Avoid unnecessary duplication of configuration files.
896
897         * Makefile.in (vpath install-sh): Define it; it matches...
898         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
899         rule for creating duplicate file reference links in $top_srcdir.
900         (configure): Add '-I ..' option, when running autoconf.
901         (w32api-srcdist-files): Rename it as...
902         (w32api-srcdist-package-files): ...this; remove dependencies on...
903         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
904         (w32api-srcdist-config-files): ...this new distributable files
905         enumeration goal; add it as one new prerequisite of...
906         (w32api-srcdist-files): ...this repurposed goal; also depends on...
907         (w32api-srcdist-package-files): ...this; populate it using...
908         (SRCDIST_ADD): ...this macro; redefine it accordingly.
909
910 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
911
912         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
913
914         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
915         it was previously transcribed incorrectly, as being equivalent to...
916         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
917         (FILE_DEVICE_DISK): ...this.
918
919 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
920
921         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
922
923         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
924         alternative generic symbol mapping definitions, and typedefs, with...
925         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
926         their respective ANSI and UNICODE specific references.
927
928 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
929
930         Deprecate obsolete <winable.h> and <pbt.h> headers.
931
932         * Makefile.in (%.h.in): Generalize vpath definition.
933         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
934         (w32api_generated_headers, replace_headers, macro_name): New macros.
935         (install-w32api-headers): Add dependency on w32api_dist_headers.
936         (%.h): New static pattern rule; it generates generic dependants of...
937         * include/obsolete.h.in: ...this new template for obsolete headers.
938
939         * include/winable.h include/pbt.h: Delete them; they are obsolete;
940         replace them by install-time generated generic stubs.
941
942 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
943
944         Update <winuser.h> and <dbt.h>; fix issue [#2317].
945
946         * include/winuser.h: Tidy layout; add copyright notice.
947         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
948         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
949         selective inclusion of content from other headers; delete when done.
950         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
951         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
952         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
953         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
954         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
955         them selectively from <dbt.h>, where they are properly defined.
956         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
957         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
958         formerly UINT, which doesn't match 64-bit size required for Win64.
959         (SetTimer): Likewise; also declare similar return type.
960         (WINEVENTPROC): Add missing CALLBACK attribute.
961         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
962
963         * include/w32api.h (__AW_ALIAS__): New macro; define it.
964         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
965
966         * include/dbt.h: Tidy layout; add copyright notice.
967         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
968         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
969         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
970         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
971         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
972         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
973         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
974         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
975         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
976         structure typedef names, and their respectively corresponding...
977         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
978         type names.
979
980 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
981
982         Fix a minor ISO-C++11 conformity issue.
983
984         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
985         by ISO-C++11, between concatenated string literal elements.
986         (GetFiberData, NtCurrentTeb): Likewise.
987
988 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
989
990         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
991
992         * include/ddk/winddk.h: Update per issue [#2307] resolution.
993         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
994
995 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
996
997         Prepare and tag all files for release of w32api-3.18.1
998
999         * configure.ac (AC_INIT): Increment patch level to 3.18.1
1000
1001 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1002
1003         Resolve improper macro expansion issue [#2307].
1004
1005         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
1006         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
1007         dependent macro WITHIN the expansion of each of these; hence...
1008
1009         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
1010         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
1011         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
1012         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1013         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1014         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
1015         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
1016         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
1017         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1018         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1019         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
1020         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1021         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
1022         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
1023         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
1024         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
1025         ...adjust these dependent macro definitions accordingly.
1026
1027         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
1028         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
1029         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
1030         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1031         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1032         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
1033         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
1034         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1035         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
1036         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
1037
1038 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
1039
1040         Update install-sh to match mingw.org/build-aux package.
1041
1042         * install-sh: Delete it; use version in parent directory instead,
1043         recreating local copy, (as symlink, if supported), on demand.
1044
1045 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1046
1047         Eliminate redundant configuration files.
1048
1049         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
1050         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
1051
1052         * configure.ac (AC_PROG_LN_S): Add configuration check.
1053
1054 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1055
1056         Discard redundant config.guess and config.sub files.
1057
1058         * config.guess config.sub: Delete them; they are no longer required.
1059         * Makefile.in (SRCDIST_ADD): Remove related references.
1060
1061 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1062
1063         Merge recent legacy branch updates to 5.0-active branch.
1064
1065         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
1066         * include/sdkddkver.h include/setupapi.h include/windows.h
1067         * include/winnt.h include/winuser.h include/winver.h
1068         * include/wtsapi32.h lib/wtsapi32.def: Updated.
1069
1070 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1071
1072         Prepare and tag all files for release of w32api-3.18.
1073
1074 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1075
1076         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
1077
1078         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
1079         references from $(MAKE) command lines; make passes them implicitly.
1080
1081 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1082
1083         Backport MemoryBarrier() implementation from 4.0-dev branch.
1084
1085         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
1086         Earnie's original inline implementation, but declared 'static' to fix
1087         issue [#1661]; it is further modified, to avoid the broken pre-Vista
1088         fallback identified by issue [#2131], and to remove references to...
1089         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
1090         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
1091         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
1092         back to inline assembly code when necessary.
1093
1094         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
1095         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
1096         code, for hosts which do not support the SSE2 'mfence' instruction.
1097
1098 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1099
1100         Merge further W32API updates from Cygwin CVS.
1101         Incorporated selected changes from 2012-08-01 to 2012-08-04.
1102
1103         * include/setupapi.h include/winuser.h include/winver.h
1104         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
1105
1106 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1107
1108         Update mapping of GCC to MSVC host identification macros.
1109
1110         * include/windows.h: Assert copyright; tidy layout.
1111         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
1112         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
1113         [!_WINSVC_H]: Do not explicitly test these here; they are properly
1114         managed implicitly, by GCC, when including the associated headers.
1115
1116         * include/winnt.h: Assert copyright; tidy layout.
1117         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1118         (__aligned__, __always_inline__, __selectany__): Prefer these...
1119         (aligned, always_inline, selectany): ...to these attribute forms.
1120         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
1121         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
1122         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
1123         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
1124         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
1125         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
1126         (_M_IX86): ...also removing this, but relocate it to...
1127         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
1128         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
1129         appropriate.
1130
1131         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
1132         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
1133
1134 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1135
1136         Merge W32API updates, from Cygwin CVS, into legacy branch.
1137         Incorporate changes since release of w32api-3.17, until 2012-07-06.
1138
1139         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
1140         2012-04-28 commit to Cygwin CVS.
1141
1142         * include/gdiplus/gdiplustypes.h include/imagehlp.h
1143         * include/routprot.h include/shlwapi.h include/userenv.h
1144         * include/winbase.h include/wincon.h include/windef.h
1145         * include/winerror.h include/wingdi.h include/winnt.h
1146         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
1147         match Cygwin CVS state, as of 2012-07-06.
1148
1149         * include/wincrypt.h: Updated to remove duplicate manifest constant
1150         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
1151         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
1152         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
1153         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
1154         copies of these further duplicated definitions, identified during
1155         the merging operation.
1156
1157 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1158
1159         Synchronize package version management with MinGW Runtime.
1160
1161         * VERSION.m4: New file; link it to keep in sync with identically named
1162         file in top level composite package source directory; it defines...
1163         (__VERSION__): ...this new composite package version macro.
1164
1165         * aclocal.m4: Link it, to keep in sync with identically named files in
1166         top level composite source and sibling mingwrt sub-package directories.
1167         (__VERSION__): New macro; include VERSION.m4 to define it.
1168         (__BUG_REPORT_URL__): New macro; define it.
1169
1170         * configure.ac (AC_INIT): Assign package version and bug report URL...
1171         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
1172         automatic inclusion of aclocal.m4
1173
1174         * Makefile.in (configure): Add dependency on VERSION.m4
1175
1176 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1177
1178         Eliminate redundant <parts/winioctl.h> header.
1179
1180         * include/parts/winioctl.h: Delete it; distribute its content...
1181         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
1182         ...among these, separating it into discrete sections based on...
1183         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
1184         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
1185         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
1186         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
1187
1188         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
1189         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
1190
1191 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1192
1193         Enforce consistent specification of package version.
1194
1195         * include/w32api.h: Rename as...
1196         * include/w32api.h.in: ...this build-time template file.
1197         (__W32API_VERSION): Redefine it, in terms of...
1198         (%PACKAGE_VERSION_LONG%): ...this substitution template.
1199         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
1200         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
1201         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
1202         (%PACKAGE_VERSION_PATCH%): ...these.
1203
1204         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
1205         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
1206         mingwrt/include/_mingw.h.in file.
1207
1208         * Makefile.in (all-w32api-libs): Add dependency on...
1209         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
1210         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
1211         they apply appropriate substitutions to the renamed template files.
1212         (install-w32api-headers): Explicitly add w32api.h
1213
1214 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1215
1216         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
1217
1218         * include/parts/winioctl.h: New file; it provides infrastructure for
1219         sharing of common code between DDK headers and primary <winioctl.h>
1220         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
1221         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
1222         macros; they facilitate more consise expression of factored out IOCTL
1223         and FSCTL macros; define them.
1224
1225         * include/ddk/ntddk.h: Assert copyright; tidy layout.
1226         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
1227         (_DDK_NTDDK_H): ...this; it provides better indication of location.
1228         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1229
1230         * include/ddk/winddk.h: Assert copyright; tidy layout.
1231         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
1232         (_DDK_WINDDK_H): ...this; it provides better indication of location.
1233         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
1234         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1235         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
1236         (METHOD_NEITHER): Redefine as enumeration; factor it out.
1237         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
1238         (FILE_WRITE_ACCESS): Likewise.
1239         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1240         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1241         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1242         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1243         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1244         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1245         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1246         (PPARTITION_INFORMATION_MBR): Likewise.
1247         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1248         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1249         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1250         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1251         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1252         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1253         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1254         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1255         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1256         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1257         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1258         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1259         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1260         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1261         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1262         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1263         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1264         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1265         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1266         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1267         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1268         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1269         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1270         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1271         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1272         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1273         was defined only when including this enumeration from winioctl.h
1274         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1275         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1276         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1277         include parts/winioctl.h
1278
1279         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1280         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1281         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1282         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1283         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1284         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1285         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1286         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1287         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1288         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1289         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1290         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1291         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1292         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1293         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1294
1295         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1296         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1297         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1298         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1299         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1300         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1301         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1302         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1303         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1304         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1305         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1306         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1307         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1308         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1309         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1310         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1311         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1312         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1313         these macros are now defined in parts/winioctl.h; include it.
1314         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1315         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1316         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1317         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1318         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1319         (VALID_NTFT): Redefine as enumeration; factor it out.
1320         (IsRecognizedPartition, IsContainerPartition): Factor out.
1321         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1322         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1323         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1324         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1325         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1326         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1327         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1328         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1329         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1330         (struct _PARTITION_INFORMATION): Change field data types for...
1331         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1332         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1333         with Windows DDK convention, then factor out struct, together with...
1334         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1335         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1336         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1337         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1338         (struct _GET_LENGTH_INFORMATION)
1339         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1340         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1341         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1342         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1343         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1344         (PFORMAT_EX_PARAMETERS): Factor out.
1345         (struct _REASSIGN_BLOCKS): Change field data types for...
1346         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1347         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1348         convention, then factor out the struct definition, together with...
1349         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1350         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1351         (PSET_PARTITION_INFORMATION): Factor out.
1352         (struct _VERIFY_INFORMATION): Change field data type for...
1353         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1354         factor out the entire struct definition, together with...
1355         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1356         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1357         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1358         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1359         (PDISK_GROW_PARTITION): Factor out.
1360
1361         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1362         definitions from Windows DDK headers, by including parts/winioctl.h;
1363         delete duplicate definitions already identified as having been factored
1364         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1365         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1366         UCHAR, resulting in no significant changes, except that...
1367         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1368         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1369         (StorageManagerName): ...these previously missing fields, originally
1370         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1371         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1372
1373 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1374
1375         Windows application module version information API updates.
1376
1377         * include/winver.h: Assert copyright; tidy layout.
1378         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1379         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1380         having both ANSI and UTF-16LE specific alternative implementations.
1381         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1382         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1383         note that both are generic, with ANSI and UTF-16LE implementations,
1384         but the ANSI implementations are missing from MSVCRT.DLL when...
1385         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1386
1387         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1388         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1389
1390 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1391
1392         Revert a failed experimental macro construct.
1393
1394         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1395         code, and doesn't work in the C preprocessor conditional context where
1396         its associated constant definitions are most likely to be required.
1397         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1398         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1399         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1400         now in terms of their preferred equivalents from <sdkddkver.h>
1401
1402 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1403
1404         Code clean-up; fix MinGW-Bug [#2263].
1405
1406         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1407         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1408         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1409
1410         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1411         style comments, using ISO-C conforming style; remove all redundant
1412         parameter names from function prototype declarations, throughout.
1413         (pragma GCC system_header): Remove pointless conditional guard.
1414         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1415         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1416         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1417         alternatives, respectively; they offer improved self-documentation.
1418         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1419         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1420         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1421         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1422         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1423         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1424         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1425         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1426         from their __AW_STRING_A__ equivalent string constant definitions.
1427         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1428         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1429         a hexadecimal expression of the mask value over the former decimal.
1430         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1431         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1432         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1433         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1434         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1435         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1436         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1437         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1438         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1439         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1440         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1441         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1442         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1443         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1444         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1445         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1446         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1447         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1448         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1449         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1450         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1451         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1452         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1453         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1454         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1455         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1456         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1457         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1458         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1459         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1460         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1461         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1462         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1463         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1464         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1465         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1466         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1467         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1468         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1469         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1470         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1471         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1472         express them in hexadecimal, in preference to original decimal form.
1473         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1474         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1475         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1476         a string literal, but was missing delimiting quotes; insert them.
1477         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1478         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1479         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1480         aliases for each of the UNICODE/non-UNICODE cases respectively.
1481         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1482         was declared as type LPTSTR, but should be type LPSTR.
1483         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1484         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1485         type LPSTR, but should be type LPWSTR.
1486         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1487         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1488         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1489
1490 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1491
1492         Correct defect in build system compilation rule.
1493
1494         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1495         source file; it expands to also include prerequisite header files,
1496         which should not appear on the compilation command line.  Rewrite
1497         rule in static pattern format, and use $< instead.
1498
1499 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1500
1501         Build system corrections for GCC build time support.
1502
1503         * configure.ac (AC_PROG_CC): Don't use this; we need...
1504         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1505         building with only a stage 1 partially built GCC installation.
1506
1507         * Makefile.in (install-headers): New make objective; map it to...
1508         (install-w32api-headers): ...this, for which it is a logical alias.
1509
1510 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1511
1512         Overhaul and streamline build system configuration.
1513
1514         * configure.in: Delete obsolete file; replace with...
1515         * configure.ac: New file; rewritten per current autoconf conventions.
1516
1517         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1518         it now processes the entire build without using separate sub-makes.
1519
1520         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1521         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1522
1523 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1524
1525         Remove unused aclocal.m4 configuration file.
1526
1527         * aclocal.m4: Delete it; it provides no content used by this package.
1528
1529 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1530
1531         Adapt platform feature checks to NTDDI_VERSION conventions.
1532
1533         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1534         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1535         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1536         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1537         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1538
1539         * include/w32api.h: Assert copyright; include sdkddkver.h.
1540         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1541         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1542         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1543         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1544         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1545         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1546         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1547         macro definitions by long integer constants, and mark as deprecated.
1548         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1549         mingwrt/include/_mingw.h, whence we similarly relocate...
1550         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1551
1552         * include/windef.h: Assert copyright; include w32api.h, whence we
1553         infer default assignments, per included sdkddkver.h, for each of...
1554         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1555         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1556
1557 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1558
1559         Remove generated configure script from revision control.
1560
1561         * configure: Delete from SCM; maintainer must regenerate it, when
1562         required, as SCM will now ignore it.
1563
1564 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1565
1566         Cosmetic adjustment to match MSDN documentation.
1567
1568         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1569         of parameter #1 to be LPCVOID, in preference to formerly specified,
1570         and functionally equivalent, 'const LPVOID'.
1571
1572 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1573
1574         Correct typos, as identified by issue [#1534].
1575
1576         * include/setupapi.h (SetupCancelTemporary): Should be...
1577         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1578         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1579         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1580         (SetupQueryA, SetupQueryW): ...these respectively to...
1581         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1582         (SetupDiGetWizardage): Misspelled; correct it to...
1583         (SetupDiGetWizardPage): ...this.
1584
1585 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1586
1587         Declare WTSVirtualChannel API functions per issue [#1342].
1588
1589         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1590         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1591         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1592         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1593         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1594
1595         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1596
1597 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1598
1599         Correct MENUITEMINFO structure definition per issue [#1659].
1600
1601         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1602         field was defined as type DWORD; correct it to type ULONG_PTR.
1603
1604 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1605
1606         Extend visibility of winsock definitions when building Cygwin.
1607
1608         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1609         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1610         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1611         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1612         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1613         [__INSIDE_MSYS__]: ...keep them hidden.
1614
1615         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1616         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1617         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1618         [__INSIDE_MSYS__]: ...also keep them hidden.
1619
1620 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1621
1622         Correct version guard for WinXP minimum requirement.
1623
1624         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1625         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1626         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1627         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1628
1629 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1630
1631         Add missing <shobjidl.h> and associated UUID implementation.
1632
1633         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1634         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1635
1636 2012-03-19  Ben Greear  <greear@users.sf.net>
1637
1638         Adjust header file definition order, to fix issue [#1570].
1639
1640         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1641         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1642
1643 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1644
1645         Add missing return value, flagged by 'make test'.
1646
1647         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1648         Return NO_ERROR in virtual definition.
1649
1650 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1651
1652         Remove duplicate definitions, identified by 'make test'.
1653
1654         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1655         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1656         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1657         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1658         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1659         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1660
1661         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1662         correctly defined (per MSDN) in <wincrypt.h>
1663
1664 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1665
1666         Correct misuse of #ifdef, identified by 'make test'.
1667
1668         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1669         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1670
1671 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1672
1673         Replace more incorrectly named manifest constants.
1674
1675         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1676         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1677         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1678         definitions respectively; retain for backward compatibility only.
1679
1680 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1681
1682         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1683
1684         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1685
1686 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1687
1688         Add missing MAPVK manifest constant definitions.
1689
1690         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1691         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1692
1693 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1694
1695         Correct some misspelled manifest constant names.
1696
1697         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1698         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1699         alias to original misspelling, to maintain backward compatibility.
1700         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1701         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1702         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1703         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1704
1705 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1706
1707         Add a missing Win2K sockets IOCTL feature.
1708
1709         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1710
1711 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1712
1713         Fix an incorrectly typed structure member.
1714
1715         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1716         should be LPSTR; correct it.
1717
1718 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1719
1720         Add another missing manifest constant definition.
1721
1722         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1723
1724 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1725
1726         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1727
1728         * include/windef.h (PACKED): Delete macro definition; its name is not
1729         reserved, and may thus conflict with a user defined name; replace it...
1730         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1731         use __attribute__((packed)) directly instead.
1732
1733 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1734
1735         Fix bad typedef, per MinGW-Bug [#1529].
1736
1737         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1738         conform with MSDN reference, as identified by Safety0ff.
1739
1740 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1741
1742         Add a missing manifest constant definition.
1743
1744         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1745
1746 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1747
1748         Win2K and Vista userenv updates.
1749
1750         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1751         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1752         (ExpandEnvironmentStringsForUser): Define function aliases.
1753         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1754         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1755         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1756         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1757         (GetProfileType): Declare function prototypes.
1758         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1759         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1760         New manifest constants; define them.
1761
1762 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1763
1764         * Makefile.in: Increment CYGRELEASE to 2.
1765
1766 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1767
1768         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1769
1770 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1771
1772         * include/w32api.h: Increment version to 3.17.
1773         * Makefile.in: Ditto.
1774
1775 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1776
1777         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1778         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1779         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1780         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1781
1782 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1783
1784         * include/w32api.h: Increment version to 3.16.
1785         * Makefile.in: Ditto.
1786
1787 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1788
1789         * include/commctrl.h (NMTCKEYDOWN): Define.
1790
1791 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1792
1793         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1794         Define.
1795
1796 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1797
1798         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1799         PSAPI_WORKING_SET_INFORMATION): Define.
1800
1801 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1802
1803         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1804
1805 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1806
1807         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1808
1809 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1810
1811         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1812         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1813         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1814
1815 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1816
1817         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1818         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1819         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1820
1821 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1822
1823         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1824         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1825
1826 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1827
1828         * include/winbase.h (__MINGW_EXTENSION): Define.
1829         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1830         struct to correct issue with -std=c99.
1831
1832 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1833
1834         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1835         (TIMER_BASIC_INFORMATION): Define.
1836         (NtQueryTimer): Define.
1837         (ZwQueryTimer): Define.
1838
1839 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1840
1841         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1842
1843 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1844
1845         * include/winbase.h (GetComputerNameEx): Define.
1846
1847 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1848
1849         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1850
1851 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1852
1853         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1854         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1855         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1856         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1857         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1858         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1859         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1860         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1861         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1862
1863 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1864
1865         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1866         Add defines for backward compatibility.
1867
1868 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1869
1870         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1871         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1872         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1873         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1874         EnumResourceTypesW): Ditto.
1875         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1876
1877 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1878
1879         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1880
1881 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1882
1883         * include/bdatypes.h: Add missing semicolons.
1884
1885 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1886
1887         * include/w32api.h: Increment version to 3.15.
1888         * Makefile.in: Ditto.
1889
1890 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1891
1892         * Makefile.in: Update naming convention and compression format (lzma),
1893         leaving existing naming convention and compression format as is for Cygwin.
1894
1895 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1896
1897         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1898         STATE_SYSTEM_PROTECTED): Define.
1899
1900         Thank you to Marcus von Appen for reporting the issue.
1901
1902 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1903
1904         * include/winuser.h (CF_DIBV5): Define.
1905         (CF_MAX): Adjust accordingly.
1906
1907         Thank you to Lenard Lindstrom for reporting the issue.
1908
1909 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1910
1911         * include/sspi.h (QuerySecurityContextToken): Define.
1912         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1913
1914         Thank you to Magnus Hagander for reporting the issue.
1915
1916 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1917
1918         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1919
1920 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1921
1922         * include/shlwapi (ASSOCDATA): Update definition.
1923
1924         Thank you to Frederic Deschamps for reporting the issue.
1925
1926 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1927
1928         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1929         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1930         COPY_FILE_NO_BUFFERING): Define.
1931
1932         Thank you to Roland Schwingel for reporting the issue.
1933
1934 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1935
1936         * include/winuser.h (HHOOK): Move definition from here...
1937         * include/windef.h: ...to here, as per MSDN.
1938
1939         Thank you to Samuel Thibault for reporting the issue.
1940
1941 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1942
1943         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1944         MSDN, change return type to LPCH.
1945         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1946
1947         Thank you to Emmanuel Stapf for reporting the issue.
1948
1949 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1950
1951         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1952         * include/windowsx.h (SNDMSG): Ditto.
1953
1954 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1955
1956         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1957
1958         Thank you to Ozkan Sezer for reporting the issue.
1959
1960 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1961
1962         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1963
1964         Thank you to Chris Oldwood for reporting the issue.
1965
1966 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1967
1968         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1969
1970         Thank you to Rick Walsh for reporting the issue.
1971
1972 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1973
1974         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1975
1976 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1977
1978         * include/winbase.h (OVERLAPPED): Correct definition.
1979
1980 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1981
1982         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1983         definition.
1984
1985         Thank you to Pasi Ruokola for reporting the issue.
1986
1987 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1988
1989         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1990
1991         Thank you to cheznonnon for reporting the issue.
1992
1993 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1994
1995         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1996
1997 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1998
1999         * winnt.h: Fix several SUBLANG ID errors (ref:
2000         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
2001         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
2002         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
2003         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
2004         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
2005         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
2006         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
2007         (SUBLANG_LAO_LAO): ... this.
2008         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
2009         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
2010         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
2011         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
2012         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
2013         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
2014         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
2015         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
2016         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
2017         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
2018         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
2019
2020 2010-08-24  LRN  <lrn1986@gmail.com>
2021
2022         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
2023         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
2024         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
2025         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
2026         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
2027         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
2028         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
2029         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
2030         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
2031         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
2032         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
2033         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
2034         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
2035         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
2036         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
2037         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
2038         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
2039         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
2040         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
2041         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
2042         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
2043         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
2044         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
2045         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
2046         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
2047         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
2048         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
2049         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
2050         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
2051         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
2052         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
2053         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
2054         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
2055         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
2056         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
2057         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
2058         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
2059         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
2060         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
2061         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
2062         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
2063         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
2064         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
2065         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
2066         WAVE_FORMAT_DTS2): Define.
2067         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
2068         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
2069         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
2070         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
2071         Define.
2072
2073 2010-08-23  LRN  <lrn1986@gmail.com>
2074
2075         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
2076         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
2077         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
2078         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
2079         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
2080         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
2081         GetFinalPathNameByHandleW): Define.
2082
2083 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2084
2085         * lib/CheckConflicts.sh: New file.
2086
2087 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2088
2089         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
2090         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
2091         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
2092         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
2093         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
2094         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
2095         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
2096         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
2097         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
2098         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
2099         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
2100         conflicting definition.
2101         * lib/th32.def: Remove.
2102         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
2103         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
2104         definition.
2105
2106 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2107
2108         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
2109
2110 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2111
2112         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
2113
2114 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
2115
2116         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
2117         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
2118         * include/ddk/winddk.h: Ditto.
2119
2120 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
2121
2122         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
2123         CreateSymbolicLinkA, CreateSymbolicLink): Define
2124
2125 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2126
2127         * lib/kernel32.def(FatalExit): Correct definiton.
2128
2129 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2130
2131         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
2132         from 2010-07-17 since it breaks several applications.
2133
2134 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2135
2136         * lib/kernel32.def: Regenerate using gendef.
2137
2138 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
2139
2140         * include/commctrl.h (LVIF_GROUPID): Fix definition.
2141
2142 2010-07-20  Michael James  <james.me@gmail.com>
2143
2144         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
2145
2146 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2147
2148         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
2149         definition.
2150         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
2151         NdrMarshSCtxtHdl): Ditto.
2152         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
2153         definition in favour of typedef definition.
2154
2155         Thank you to Yuta Tomino for reporting the issues.
2156
2157 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
2158
2159         * include/gdiplus.h: New file.
2160         * include/gdiplus/gdiplus.h: New file.
2161         * include/gdiplus/gdiplusbase.h: New file.
2162         * include/gdiplus/gdiplusbrush.h: New file.
2163         * include/gdiplus/gdipluscolor.h: New file.
2164         * include/gdiplus/gdipluscolormatrix.h: New file.
2165         * include/gdiplus/gdipluseffects.h: New file.
2166         * include/gdiplus/gdiplusenums.h: New file.
2167         * include/gdiplus/gdiplusflat.h: New file.
2168         * include/gdiplus/gdiplusgpstubs.h: New file.
2169         * include/gdiplus/gdiplusgraphics.h: New file.
2170         * include/gdiplus/gdiplusheaders.h: New file.
2171         * include/gdiplus/gdiplusimageattributes.h: New file.
2172         * include/gdiplus/gdiplusimagecodec.h: New file.
2173         * include/gdiplus/gdiplusimaging.h: New file.
2174         * include/gdiplus/gdiplusimpl.h: New file.
2175         * include/gdiplus/gdiplusinit.h: New file.
2176         * include/gdiplus/gdipluslinecaps.h: New file.
2177         * include/gdiplus/gdiplusmatrix.h: New file.
2178         * include/gdiplus/gdiplusmem.h: New file.
2179         * include/gdiplus/gdiplusmetafile.h: New file.
2180         * include/gdiplus/gdiplusmetaheader.h: New file.
2181         * include/gdiplus/gdipluspath.h: New file.
2182         * include/gdiplus/gdipluspen.h: New file.
2183         * include/gdiplus/gdipluspixelformats.h: New file.
2184         * include/gdiplus/gdiplusstringformat.h: New file.
2185         * include/gdiplus/gdiplustypes.h: New file.
2186         * lib/gdiplus.c: New file containing GDI+ variable definitions
2187         and GUIDs.
2188         * lib/gdiplus.def: New file.
2189         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
2190         add gdiplus.c to SOURCES.
2191         * lib/test.c: Include gdiplus.h.
2192
2193 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
2194
2195         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
2196         GetPerformanceInfo): Define.
2197         * lib/psapi.def (GetPerformanceInfo): Define.
2198         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
2199         CryptEnumProviders): Define.
2200
2201 2010-02-17  LRN  <lrn1986@gmail.com>
2202
2203         * include/shlguid.h (IID_IFolderView): Define.
2204         * include/shlobj.h (IFolderView interface): Define.
2205         * lib/shell32.c (IID_IFolderView): Export.
2206
2207 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2208
2209         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
2210         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2211
2212 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2213
2214         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
2215
2216 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2217
2218         * include/shlobj.h (SHParseDisplayName): Fix definition.
2219
2220 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2221
2222         * include/w32api.h: Increment version to 3.14.
2223         * Makefile.in: Ditto.
2224
2225 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2226
2227         * include/shlobj.h (SHParseDisplayName): Define.
2228
2229         Thanks to James Roberts-Thomson for the report.
2230
2231 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2232
2233         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
2234
2235         Thanks to Alexander Vassilev for the report.
2236
2237 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2238
2239         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2240
2241         Thanks to Thomas Denk for the report.
2242
2243 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2244
2245         * include/winbase.h (UnmapViewOfFile): Correct definition.
2246
2247         Thanks to Dimitry Sibiryakov for the report.
2248
2249 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2250
2251         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2252
2253 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2254
2255         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2256         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2257
2258 2009-20-10  Michael James  <james.me@gmail.com>
2259
2260         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2261         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2262         >= 0x0501.
2263         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2264         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2265         RemoveWindowSubclass@12): Add exports.
2266         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2267
2268 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2269
2270         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2271         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2272         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2273         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2274         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2275         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2276         RegisterTouchWindow, UnregisterTouchWindow): Define.
2277         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2278         RegisterTouchWindow, UnregisterTouchWindow): Define.
2279
2280 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2281
2282         * include/winver.h (VerQueryValue[AW]): Correct definition.
2283
2284 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2285
2286         * include/shlobj.h (SHARD): Add enum.
2287         (SHARD_PATH): Define based on UNICODE.
2288
2289         Thanks to Jacek Caban for the report.
2290
2291 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2292
2293         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2294
2295         Thanks to Bruno Martinez for the report.
2296
2297 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2298
2299         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2300         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2301         SHGetIconOverlayIndex): Define.
2302
2303         Thanks to Tim Kosse for the report.
2304
2305 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2306
2307         * include/wincon.h (AttachConsole): Correct guard.
2308
2309         Thanks to Alexander Shaduri for the report.
2310
2311 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2312
2313         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2314         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2315
2316 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2317
2318         * include/winerror.h: Fix typos in macro names.
2319
2320 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2321
2322         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2323         definition.
2324
2325 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2326
2327         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2328
2329 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2330
2331         Honor DESTDIR for winsup/mingw and winsup/w32api.
2332         Detect and report error if installation paths are win32
2333         format, but DESTDIR is non-empty.
2334
2335         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2336         when invoking make in subdirs.
2337         * lib/Makefile.in (DESTDIR): Honor per convention.
2338         (need-DESTDIR-compatibility): New macro; define it and a
2339         corresponding rule.
2340         (fail-DESTDIR-compatibility): New dependency goal.
2341         (install-libraries, install-headers, uninstall-libraries,
2342         uninstall-headers): Require need-DESTDIR-compatibility.
2343         * lib/ddk/Makefile.in: Ditto.
2344         * lib/directx/Makefile.in: Ditto.
2345
2346 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2347
2348         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2349         _WIN32_WINNT >= 0x0500.
2350         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2351         WRITE_RESTRICTED): Define.
2352         (IsTokenRestricted): Declare for >= Win 2000.
2353
2354 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2355
2356         * include/wtsapi32.h (WTSQuerySessionInformationA,
2357         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2358         Moved to (_WIN32_WINNT >= 0x0500) guard.
2359         (thanks to Pierre Ossman)
2360
2361 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2362
2363         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2364         IS_SURROGATE_PAIR): Define.
2365
2366 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2367
2368         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2369         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2370         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2371         * include/ddk/ntifs.h: Ditto.
2372         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2373
2374 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2375
2376         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2377         from here...
2378         * lib/gdo32.dll: ...to here.
2379
2380 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2381
2382         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2383         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2384         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2385         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2386         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2387         entry points.
2388
2389 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2390
2391         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2392         WTSEnumerateSessionsA): Add function prototypes.
2393         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2394         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2395         defines dependent on UNICODE setting.
2396
2397 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2398
2399         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2400         and vice versa.
2401         * include/ddk/ntifs.h: Ditto.
2402         * include/ddk/winddk.h: Ditto.
2403         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2404         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2405         in header, but missing in lib.  Omit NT4-only entry points.
2406
2407 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2408
2409         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2410         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2411         * lib/shell32.def (SHGetImageList): Define.
2412
2413 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2414
2415         * winnt.h: Add Vista token security extensions.
2416         (SID_HASH_SIZE): Define.
2417         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2418         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2419         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2420         (SID_HASH_ENTRY): Define.
2421         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2422         (struct _TOKEN_LINKED_TOKEN): Define.
2423         (struct _TOKEN_MANDATORY_LABEL): Define.
2424         (struct _TOKEN_MANDATORY_POLICY): Define.
2425         (struct _TOKEN_ELEVATION): Define.
2426         (struct _TOKEN_ACCESS_INFORMATION): Define.
2427         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2428         information enumeration values.
2429
2430 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2431
2432         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2433         from ddk/ntifs.h.
2434
2435 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2436
2437         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2438
2439 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2440
2441         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2442
2443 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2444
2445         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2446         NtSetEaFile.
2447
2448 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2449
2450         * include/winbase.h (SCS_64BIT_BINARY): Define.
2451
2452 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2453
2454         * include/w32api.h: Increment version to 3.13.
2455         * Makefile.in: Ditto.
2456
2457 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2458
2459         * lib/glut.def: remove.
2460         * lib/glut32.def: ditto.
2461
2462 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2463
2464         * include/winbase.h (PROCESS_DEP_ENABLE,
2465         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2466         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2467         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2468
2469 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2470
2471         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2472
2473 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2474
2475         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2476
2477 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2478
2479         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2480
2481 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2482
2483         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2484         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2485         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2486         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2487         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2488         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2489         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2490         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2491         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2492         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2493         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2494         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2495         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2496         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2497         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2498         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2499         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2500         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2501         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2502         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2503         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2504         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2505         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2506         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2507         (capSendMessage): Don't undef.
2508
2509 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2510
2511         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2512         undefined.
2513
2514 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2515
2516         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2517         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2518         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2519         SUBLANG_ROMANIAN_MOLDOVA): Define.
2520
2521 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2522
2523         * include/shlwapi.h (ASSOCSTR): Update enum.
2524
2525 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2526
2527         * include/w32api.h: Increment version to 3.12.
2528         * Makefile.in: Ditto.
2529
2530 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2531
2532         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2533
2534 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2535
2536         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2537
2538 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2539
2540         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2541         Thanks to Richard Hughes for report.
2542
2543 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2544
2545         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2546         naming standard for Cygwin.
2547
2548 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2549
2550         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2551
2552 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2553
2554         * include/ddk/scsi.h: Define READ_TOC formats.
2555         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2556
2557 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2558
2559         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2560         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2561         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2562         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2563         NdisMCancelTimer): Define.
2564         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2565         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2566         eliminate warnings.
2567         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2568         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2569         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2570         Export.
2571
2572 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2573
2574         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2575         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2576
2577 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2578
2579         * include/ddk/winddk.h (KeRaiseIrql): Define.
2580         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2581
2582 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2583
2584         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2585         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2586         (InterlockedIncrement, InterlockedDecrement): fix warning.
2587         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2588         (KeNumberProcessors): Export.
2589
2590 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2591
2592         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2593         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2594         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2595         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2596         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2597
2598 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2599
2600         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2601
2602         Thanks to Tim Kosse <botg at users dot sf dot net>.
2603
2604 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2605
2606         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2607         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2608         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2609         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2610         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2611         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2612         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2613
2614 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2615
2616         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2617         WTSQuerySessionInformation, WTSFreeMemory): Define.
2618
2619 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2620
2621         * lib/gdi32.def (SetLayout): Export.
2622
2623 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2624
2625         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2626         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2627         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2628         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2629         CertSetCertificateContextProperty, CertCompareCertificateName,
2630         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2631         CryptGetDefaultProviderW and many corresponding macroes): Define.
2632         * lib/crypt32.def (Export the above 11 functions): Export.
2633         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2634         macroes): Define.
2635
2636
2637 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2638
2639         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2640         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2641
2642 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2643
2644         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2645
2646 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2647
2648         * include/lmaccess.h (struct _USER_INFO_4): Define.
2649         (struct _USER_INFO_23): Define.
2650         (struct _GROUP_INFO_3): Define.
2651
2652 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2653
2654         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2655         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2656         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2657         MIB_TCP6TABLE_OWNER_PID): Define.
2658         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2659
2660 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2661
2662         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2663         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2664         of 0x0502.
2665         Bug reported by Thomas Denk.
2666
2667 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2668
2669         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2670         InterlockedCompareExchange, InterlockedExchange,
2671         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2672         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2673         Bug reported by Erik Blake.
2674
2675 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2676
2677         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2678         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2679         Bug reported by Brian Hawley.
2680
2681 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2682
2683         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2684         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2685         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2686         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2687         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2688         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2689         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2690         (DsGetDcNameW, DsGetDcNameA): Declare.
2691         (DsGetDcName): Define.
2692         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2693
2694 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2695
2696         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2697
2698         Thanks to Tim Kosse <botg at users dot sf dot net>.
2699
2700 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2701
2702         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2703
2704         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2705
2706 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2707
2708         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2709         (FILE_SUPPORTS_TRANSACTIONS): Define.
2710
2711 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2712
2713         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2714         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2715
2716 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2717
2718         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2719         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2720         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2721         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2722         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2723         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2724         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2725         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2726         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2727         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2728         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2729         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2730         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2731         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2732         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2733         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2734         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2735         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2736         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2737         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2738         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2739         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2740         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2741         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2742         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2743         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2744         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2745         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2746         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2747         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2748         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2749         capDriverConnect, capDriverDisconnect, capDriverGetName,
2750         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2751         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2752         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2753         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2754         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2755         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2756         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2757         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2758         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2759         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2760         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2761         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2762         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2763         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2764         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2765
2766 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2767
2768         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2769         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2770         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2771         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2772         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2773         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2774         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2775         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2776         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2777         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2778         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2779         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2780         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2781         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2782         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2783         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2784         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2785         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2786         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2787         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2788         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2789         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2790         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2791         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2792         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2793         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2794         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2795         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2796         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2797         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2798         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2799         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2800         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2801         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2802         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2803         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2804         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2805         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2806         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2807         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2808         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2809         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2810         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2811         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2812         *SpUserModeInitializeFn): Define.
2813         * include/sspi.h (SECURITY_STRING): Define.
2814
2815 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2816
2817         * include/specstrings.h: Add more dummy defines.
2818
2819 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2820
2821         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2822         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2823         (SECURITY_MANDATORY_LOW_RID): Define.
2824         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2825         (SECURITY_MANDATORY_HIGH_RID): Define.
2826         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2827         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2828         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2829         (SE_GROUP_INTEGRITY): Define.
2830         (SE_GROUP_INTEGRITY_ENABLED): Define.
2831
2832 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2833
2834         * include/sddl.h (ConvertStringSidToSidA): Declare.
2835         (ConvertStringSidToSidW): Declare.
2836         (ConvertStringSidToSid): Define.
2837
2838 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2839
2840         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2841         and MPR_INTERFACE_3 structure since they are available only in Windows
2842         Server 2008
2843
2844         Thanks to crackedmind  <crackedmind at sf dot net>.
2845
2846 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2847
2848         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2849         definitions.
2850         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2851
2852 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2853
2854         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2855
2856 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2857
2858         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2859         * include/windef.h (IN, OUT, OPTIONAL): Define.
2860
2861 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2862
2863         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2864         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2865         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2866         __out_bcount_opt): Move to specstrings.h.
2867
2868 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2869
2870         * lib/bthprops.def: new file, bluetooth imports.
2871
2872 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2873
2874         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2875         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2876         __out_bcount_opt): Defined additional pseudo-modifiers.
2877
2878 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2879         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2880         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2881         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2882         dwRedialPause.
2883
2884 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2885
2886         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2887         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2888         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2889         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2890         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2891         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2892         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2893         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2894         * include/winuser.h (RegisterPowerSettingNotification,
2895         UnregisterPowerSettingNotification): Add prototypes.
2896         * lib/user32.def: Added imports for the above prototypes.
2897         * lib/Makefile.in: Added build support for power-uuid.c.
2898         * lib/power-uuid.c: New file containing power GUID definitions.
2899
2900 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2901
2902         * include/ras.h (RAS_MaxDnsSuffix): define.
2903
2904 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2905
2906         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2907         Add prototypes.
2908         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2909         Add exports.
2910
2911 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2912
2913         * include/w32api.h: Increment version to 3.11.
2914         * Makefile.in: Ditto.
2915
2916 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2917
2918         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2919         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2920
2921 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2922
2923         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2924
2925 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2926
2927         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2928         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2929
2930 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2931
2932         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2933
2934 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2935
2936         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2937         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2938         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2939         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2940         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2941         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2942         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2943         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2944         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2945         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2946         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2947         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2948         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2949         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2950         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2951         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2952         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2953         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2954         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2955         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2956         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2957         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2958         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2959         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2960         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2961         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2962         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2963         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2964         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2965         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2966         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2967         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2968         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2969         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2970         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2971         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2972         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2973         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2974         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2975         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2976         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2977         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2978         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2979         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2980         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2981         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2982         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2983         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2984         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2985         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2986         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2987         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2988         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2989         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2990         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2991         CryptEncodeObjectEx): define.
2992
2993 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2994
2995         * include/winbase.h (CheckTokenMembership): define.
2996
2997 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2998
2999         * include/rpcndr.h: Missing NdrClientCall2 entry.
3000         * lib/rpcrt4.def: Ditto.
3001
3002 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
3003         * lib/scnsave.c: Multi-monitor support.
3004
3005 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3006
3007         * include/w32api.h: Increment version to 3.10.
3008         * Makefile.in: Ditto.
3009
3010 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
3011
3012         * include/winbase.h (ReOpenFile): Add prototype.
3013         * lib/kernel32.def (ReOpenFile@16): Add export.
3014
3015 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3016
3017         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
3018
3019 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
3020
3021         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
3022         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
3023
3024 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3025
3026         * include/wtypes.h (LPDECIMAL): Define.
3027         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
3028
3029 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
3030
3031         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
3032
3033 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
3034
3035         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
3036         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
3037
3038 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3039
3040         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
3041         Define.
3042
3043 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3044
3045         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
3046         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
3047         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
3048         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
3049         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
3050         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
3051         Sync with include/pbt.h.
3052
3053 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3054
3055         [mingw-Bugs-1751518]
3056         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
3057         get_URL.
3058
3059         [mingw-Bugs-1751565]
3060         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
3061
3062         [mingw-Bugs-1751595]
3063         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
3064         methods.
3065
3066         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3067
3068 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
3069
3070         [mingw-Bugs-1750898]
3071         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
3072         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3073
3074 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
3075
3076         [mingw-Bugs-1749305]
3077         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
3078
3079 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
3080
3081         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
3082
3083 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
3084
3085         * include/oaidl.h: Include windows.h and ole2.h,
3086         unless COM_NO_WINDOWS_H.
3087
3088         [mingw-Bugs-1742130]
3089         * include/oaidl.h (struct tagVARIANT): Add union members
3090         LONGLONG  * pllVal and ULONGLONG * pullVal.
3091
3092 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
3093
3094         * include/ws2tcpip.h (s6_addr32): Correct definition.
3095         Thanks to Alfred E. Heggestad <aeh at db dot org>
3096
3097 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3098
3099         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
3100
3101         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
3102         supplying the information.
3103
3104 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3105
3106         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
3107
3108 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3109
3110         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
3111         Vista.
3112
3113 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
3114
3115          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
3116         CRYPTPROTECT_LOCAL_MACHINE): Define.
3117
3118 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
3119
3120         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
3121         Define.
3122
3123 2007-03-30  Brian Dessent  <brian@dessent.net>
3124
3125         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
3126
3127 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3128
3129         * include/w32api.h: Increment version to 3.9.
3130         * Makefile.in: Ditto.
3131
3132 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
3133
3134         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
3135
3136 2007-03-23  Matthew Gregan  <kinetik@flim.org>
3137
3138         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
3139
3140 2007-03-06  Brandon Sneed  <brandon@oqo.com>
3141
3142         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
3143         Added SetupConfigureWmiFromInfSectionW
3144         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
3145
3146         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
3147
3148         * include/winuser.h: Added PBT_APMQUERYSUSPEND
3149         Added PBT_APMQUERYSTANDBY
3150         Added PBT_APMQUERYSUSPENDFAILED
3151         Added PBT_APMQUERYSTANDBYFAILED
3152         Added PBT_APMSUSPEND
3153         Added PBT_APMSTANDBY
3154         Added PBT_APMRESUMECRITICAL
3155         Added PBT_APMRESUMESUSPEND
3156         Added PBT_APMRESUMESTANDBY
3157         Added PBT_APMBATTERYLOW
3158         Added PBT_APMPOWERSTATUSCHANGE
3159         Added PBT_APMOEMEVENT
3160         Added PBT_APMRESUMEAUTOMATIC
3161
3162         * include/wtsapi32.h: New file
3163
3164         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
3165
3166 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
3167
3168         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
3169         argument to constant.
3170
3171 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
3172
3173         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
3174         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
3175         Add prototypes.
3176         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
3177
3178 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
3179
3180         * lib/user32.def (InternalGetWindowText): Add stub.
3181
3182 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
3183
3184         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
3185         LANG_BOSNIAN_NEUTRAL): Define.
3186
3187 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
3188
3189         * include/winuser.h: Add guards around TITLEBARINFO and
3190         GetTitleBarInfo().
3191
3192 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
3193
3194         * include/winbase.h (struct _OVERLAPPED): Change type of
3195         Internal, InternalHigh members to ULONG_PTR.
3196         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
3197         (CreateIoCompletionPort): Likewise.
3198         (PostQueuedCompletionStatus): Likewise.
3199         (QueueUserAPC): Likewise.
3200
3201 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
3202
3203         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
3204         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
3205         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
3206         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
3207         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
3208         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
3209         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
3210         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
3211         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
3212         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
3213
3214 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
3215
3216         * Makefile.in: Add aclocal.m4 to source release.
3217
3218 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3219
3220         * include/w32api.h: Increment version to 3.8.
3221         * Makefile.in: Ditto.
3222
3223 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
3224
3225         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
3226         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
3227
3228         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
3229
3230 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
3231
3232         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
3233
3234         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
3235         inline static.
3236         (GetFiberData): Likewise.
3237         * lib/kernel32.c: Remove.
3238         * lib/Makefile.in: Remove reference to kernel32.[co].
3239
3240 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3241
3242         * include/winnt.h (SE_RELABEL_NAME): Define.
3243         (SE_INCREASE_WORKING_SET_NAME): Define.
3244         (SE_TIME_ZONE_NAME): Define.
3245         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3246
3247 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3248
3249         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3250         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3251         SymbolicLinkReparseBuffer substructure.
3252
3253 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3254
3255         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3256
3257 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3258
3259         * lib/Makefile.in: Fix order for 'all' rule.
3260
3261 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3262
3263         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3264
3265 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3266
3267         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3268         mappings.
3269         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3270         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3271
3272 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3273
3274         * include/rpc.h: Add whitespace.
3275         * include/winnt.h (C_ASSERT): Define.
3276
3277 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3278
3279         [mingw-Bugs-1568067]
3280         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3281         * include/wingdi.h: (DM_POSITION): Define.
3282
3283 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3284
3285         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3286         * lib/user32.def: Likewise.
3287
3288 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3289
3290         * lib/Makefile.in: fix typo.
3291         * lib/ddk/Makefile.in: fix typo.
3292         * lib/directx/Makefile.in: fix typo.
3293
3294         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3295         for pointing it out.
3296
3297 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3298
3299         * Makefile.in: Remove files from lib directory with distclean target
3300
3301 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3302
3303         * include/winuser.h (CS_DROPSHADOW): Define.
3304
3305 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3306
3307         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3308         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3309         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3310         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3311
3312         Increase each constant by 1.
3313
3314 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3315
3316         [mingw-Bugs-1553275]
3317         * include/wingdi.h (SetLayout): Add prototype.
3318         (GetLayout): Likewise.
3319
3320 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3321
3322         [mingw-Bugs-1550139]
3323         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3324         Tanks to:  Samit Basu <samitbasu at sf dot net>
3325         (GetRecordInfoFromGuids): Add prototype.
3326
3327 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3328
3329         * include/winbase.h: Add comment about 'missing' SEM flag.
3330
3331 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3332
3333         * configure.in: Substitute with_cross_host in depending files.
3334         * configure: Regenerate.
3335         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3336         Set installation directories accordingly.
3337         * lib/ddk/Makefile.in: Ditto.
3338         * lib/directx/Makefile.in: Ditto.
3339
3340 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3341
3342         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3343         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3344         Bug reported by: <macleone at users dot sf dot net>
3345
3346 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3347
3348         Update some more IMAGE relocation type indicators
3349         to PECOFF v8 (May, 2006) specs.
3350
3351         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3352         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3353         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3354         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3355         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3356         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3357         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3358         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3359         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3360         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3361         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3362         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3363         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3364         IMAGE_REL_SHM_NOMODE): Add defines.
3365
3366         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3367         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3368         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3369         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3370         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3371         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3372         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3373         IMAGE_REL_M32R_TOKEN): Add defines.
3374
3375         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3376
3377 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3378
3379         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3380         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3381         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3382         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3383         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3384         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3385         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3386         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3387         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3388         Add defines.
3389
3390         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3391         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3392         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3393         Add defines.
3394
3395         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3396
3397         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3398         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3399         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3400         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3401         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3402         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3403
3404         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3405
3406         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3407         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3408         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3409         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3410         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3411         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3412         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3413         Add defines.
3414
3415         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3416         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3417         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3418         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3419         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3420         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3421         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3422         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3423         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3424         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3425         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3426         IMAGE_REL_IA64_ADDEND): Add defines.
3427
3428         (IMAGE_SCN_GPREL): Add define.
3429
3430 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3431
3432         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3433         * include/basetyps.h:  Likewise.
3434         (_COM_interface): New define.
3435         (interface): Define to _COM_interface, conditional on !__OBJC__.
3436         Replace 'interface' with '_COM_interface', throughout.
3437         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3438         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3439         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3440         * include/mshtml.h: Likewise.
3441         * include/oaidl.h: Likewise.
3442         * include/objfwd.h: Likewise.
3443         * include/objidl.h: Likewise.
3444         * include/ocidl.h: Likwise.
3445         * include/olectl.h: Likewise.
3446         * include/oleidl.h: Likewise.
3447         * include/shlobj.h: Likewise.
3448         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3449         * include/vfw.h: Likewise.
3450         * include/windows.h. Likewise. Add comment.
3451         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3452         throughout.
3453
3454         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3455         Add test for conflict with '@interface'
3456
3457 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3458
3459         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3460         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3461         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3462         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3463         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3464         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3465         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3466         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3467         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3468         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3469         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3470         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3471         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3472         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3473         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3474         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3475         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3476         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3477         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3478         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3479         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3480         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3481         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3482         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3483         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3484         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3485         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3486         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3487         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3488         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3489         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3490         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3491         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3492         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3493         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3494         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3495         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3496         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3497         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3498         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3499         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3500         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3501         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3502         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3503         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3504         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3505         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3506         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3507         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3508         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3509         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3510         CertDeleteCertificateFromStore): Define.
3511         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3512         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3513         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3514         CertAddCertificateContextToStore, CertCompareCertificate,
3515         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3516         Define.
3517
3518 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3519
3520         * lib/uuid.c: Remove.
3521
3522 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3523
3524         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3525         declarations. They were extracted from the registry with a script.
3526         * lib/devguid.c: Add new file with the implementation of the
3527         missing GUIDs.
3528         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3529
3530 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3531
3532         * include/winuser.h (WM_INPUT): Add missing Raw Input
3533         notification define.
3534         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3535         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3536
3537 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3538
3539         [mingw-Bugs-1525021]
3540         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3541         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3542         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3543         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3544         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3545         (IP_ADAPTER_ADDRESSES): Likewise.
3546
3547 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3548
3549         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3550         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3551         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3552         extras-uuid.c.
3553         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3554         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3555         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3556         * lib/hlguids-uuid.c: State source of CLSIDs.
3557
3558 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3559
3560         * lib/Makefile.in: Added extras-uuid as an object and source.
3561         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3562         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3563         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3564         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3565         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3566         * lib/extras-uuid.c: New file.
3567         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3568         net).
3569
3570 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3571
3572         [mingw-Bugs-1424461]
3573         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3574         throughout.
3575         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3576         _NO_W32_PSEUDO_MODIFIERS.
3577         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3578         throughout.
3579         *include/rpcnsip.h: Likewise.
3580         *include/windef.h: Don't define IN, OUT or OPTIONAL
3581         if _NO_W32_PSEUDO_MODIFIERS.
3582         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3583         throughout.
3584         *include/ddk/cfgmgr32.h: Likewise.
3585         *include/ddk/ddkmapi.h: Likewise.
3586         *include/ddk/hidclass.h: Likewise.
3587         *include/ddk/hidpi.h: Likewise.
3588         *include/ddk/kbdmou.h: Likewise.
3589         *include/ddk/mcd.h: Likewise.
3590         *include/ddk/miniport.h: Likewise.
3591         *include/ddk/minitape.h: Likewise.
3592         *include/ddk/ndis.h: Likewise.
3593         *include/ddk/ndistapi.h: Likewise.
3594         *include/ddk/ndiswan.h: Likewise.
3595         *include/ddk/ntapi.h: Likewise.
3596         *include/ddk/ntdd8042.h: Likewise.
3597         *include/ddk/ntddpcm.h: Likewise.
3598         *include/ddk/ntifs.h: Likewise.
3599         *include/ddk/ntpoapi.h: Likewise.
3600         *include/ddk/parallel.h: Likewise.
3601         *include/ddk/pfhook.h: Likewise.
3602         *include/ddk/scsiwmi.h: Likewise.
3603         *include/ddk/smbus.h: Likewise.
3604         *include/ddk/srb.h: Likewise.
3605         *include/ddk/storport.h: Likewise.
3606         *include/ddk/tdikrnl.h: Likewise.
3607         *include/ddk/upssvc.h: Likewise.
3608         *include/ddk/usbcamdi.h: Likewise.
3609         *include/ddk/usbscan.h: Likewise.
3610         *include/ddk/video.h: Likewise.
3611         *include/ddk/videoagp.h: Likewise.
3612         *include/ddk/win2k.h: Likewise.
3613         *include/ddk/winddi.h: Likewise.
3614         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3615         if _NO_W32_PSEUDO_MODIFIERS.
3616         Comment out IN, OUT and OPTIONAL, throughout.
3617         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3618         throughout.
3619         *include/ddk/ws2san.h: Likewise.
3620
3621 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3622
3623         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3624
3625 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3626
3627         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3628         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3629         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3630         * lib/hlguids-uuid.c: New file.
3631         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3632         net).
3633
3634 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3635
3636         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3637         objects.
3638         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3639         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3640         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3641         IID_IHlinkTarget): Remove.  Moved to new files.
3642         * lib/urlmon-uuid.c: New file.
3643         * lib/hlink-uuid.c: New file.
3644
3645 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3646
3647         * lib/Makefile.in: Added ativscp-uuid as source and object.
3648         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3649         IID_IActiveScriptParse, IID_IActiveScriptSite,
3650         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3651         * lib/ativscp-uuid.c: New file.
3652
3653 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3654
3655         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3656         Remove.  Moved to objidl-uuid.c
3657         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3658         IID_IServerSecurity): Defined.
3659
3660 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3661
3662         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3663         objects.
3664         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3665         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3666         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3667         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3668         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3669         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3670         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3671         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3672         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3673         files.
3674         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3675         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3676         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3677         * lib/cguid-uuid.c: New file.
3678         * lib/olectlid-uuid.c: New file.
3679
3680 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3681
3682         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3683         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3684         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3685         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3686         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3687         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3688         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3689         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3690         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3691         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3692         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3693         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3694         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3695         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3696         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3697         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3698         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3699         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3700         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3701         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3702         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3703         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3704         * lib/comcat-uuid.c: New file.
3705         * lib/docobj-uuid.c: New File.
3706         * lib/exdisp-uuid.c: New file.
3707         * lib/mlang-uuid.c: New file.
3708         * lib/oaidl-uuid.c: New file.
3709         * lib/objidl-uuid.c: New file.
3710         * lib/objsafe-uuid.c: New file.
3711
3712 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3713
3714         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3715         objects.
3716         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3717         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3718         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3719         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3720         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3721         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3722         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3723         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3724         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3725         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3726         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3727         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3728         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3729         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3730         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3731         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3732         * lib/oleidl-uuid.c: New file.
3733         * lib/oleacc-uuid.c: New file.
3734         * lib/ocidl-uuid.c: New file.
3735
3736 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3737
3738         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3739         objects.
3740         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3741         Remove.  Moved to unknwn-uuid and servprov-uuid.
3742         * lib/unknwn-uuid.c: New file.
3743         * lib/servprov-uuid.c: New file.
3744
3745 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3746
3747         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3748         enum.
3749
3750 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3751
3752         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3753
3754 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3755
3756         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3757         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3758         wingdi.h defines.
3759
3760 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3761
3762         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3763         duplicate defines.
3764
3765         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3766         removal.
3767         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3768
3769 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3770
3771         * configure.in: Update to newer autoconf.
3772         (thanks to Steve Ellcey)
3773         * configure: Regenerate.
3774         * aclocal.m4: New file.
3775
3776 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3777
3778         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3779
3780 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3781
3782         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3783         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3784         as macros.
3785         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3786
3787 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3788
3789         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3790         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3791         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3792         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3793         (MprAdminMIBSetTrapInfo): Declare functions.
3794         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3795         (MIB_SERVER_HANDLE): New typedef.
3796         (MprConfigTransportSetInfo): Declare function.
3797         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3798         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3799
3800 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3801
3802         * lib/rtutils.def: New file. Generated on Windows XP.
3803         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3804         * include/rtutils.h: New file.
3805         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3806         Commented out, they're missing from rtutils.def.
3807
3808 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3809
3810         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3811         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3812         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3813         (MprInfoRemoveAll): Declare functions.
3814
3815 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3816
3817         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3818         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3819         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3820         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3821         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3822         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3823         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3824         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3825         (MprConfigServerConnect,MprConfigServerDisconnect)
3826         (MprConfigServerGetInfo,MprConfigServerInstall)
3827         (MprConfigServerRestore,MprConfigTransportCreate)
3828         (MprConfigTransportDelete,MprConfigTransportEnum)
3829         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3830         (MprConfigTransportSetInfo): Declare functions.
3831
3832 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3833
3834         * include/mprapi.h (MprAdminBufferFree)
3835         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3836         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3837         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3838         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3839         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3840         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3841         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3842         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3843         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3844         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3845         (MprAdminInterfaceTransportSetInfo)
3846         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3847         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3848         (MprAdminServerConnect,MprAdminServerDisconnect)
3849         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3850         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3851         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3852
3853 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3854
3855         * include/ipxtfflt.h: New file.
3856
3857 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3858
3859         * include/mprapi.h: Fix header guard. Cleanup.
3860         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3861         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3862         (MprAdminConnectionHangupNotification)
3863         (MprAdminConnectionHangupNotification2)
3864         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3865         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3866         (MprAdminReleaseIpAddress): Declare functions.
3867         * lib/mprapi.def: Regenerate on Windows XP.
3868
3869 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3870
3871         * include/ipifcons.h: Cleanup.
3872         * include/ipxconst.h: Fix header guard.
3873         * include/ipxrtdef.h: include <ipxconst.h>.
3874
3875 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3876
3877         * include/ipxrtdef.h: Cleanup.
3878         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3879         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3880         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3881         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3882         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3883         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3884         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3885         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3886         * include/routprot.h: Cleanup.
3887         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3888         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3889         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3890         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3891         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3892         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3893         * include/fltdefs.h: New file.
3894         * include/ipinfoid.h: New file.
3895
3896 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3897
3898         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3899         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3900         (IAMCertifiedOutputProtection): Add interfaces.
3901         * include/adsprop.h: New file.
3902         * include/cmnquery.h: New file.
3903         * include/dsadmin.h: New file.
3904         * include/dsclient.h: New file.
3905         * include/dsgetdc.h: New file.
3906         * include/dsquery.h: New file.
3907         * include/dsrole.h: New file.
3908         * include/ntdsapi.h: New file.
3909         * include/ntdsbcli.h: New file.
3910         * include/objsel.h: New file.
3911
3912 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3913
3914         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3915         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3916         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3917         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3918         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3919         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3920         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3921         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3922
3923 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3924
3925         * include/qedit.h: New file.
3926         * include/errors.h: Cleanup.
3927
3928 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3929
3930         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3931         avoid dependency on <string.h>.
3932         There's no Win32 equivalent for memcmp:
3933         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3934
3935 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3936
3937         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3938         instead of memset to avoid dependency on <string.h>.
3939         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3940         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3941         (AM_WST_STYLE): Add enums.
3942         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3943         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3944         structures.
3945         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3946         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3947         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3948         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3949         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3950         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3951         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3952         (VFW_E_DVD_NO_RESUME_INFORMATION)
3953         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3954         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3955         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3956         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3957         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3958         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3959         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3960         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3961         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3962         * include/strmif.h: ... to here. New file.
3963         * include/aviriff.h: New file.
3964         * include/bdatypes.h: New file.
3965         * include/control.h: New file.
3966         * include/dvdmedia.h: New file.
3967         * include/il21dec.h: New file.
3968         * include/ks.h: New file.
3969         * include/ksmedia.h: New file.
3970         * include/mmreg.h: New file.
3971         * include/mpegtype.h: New file.
3972         * include/vidcap.h: New file.
3973         * include/vmr9.h: New file.
3974         * include/vptype.h: New file.
3975         * include/xprtdefs.h: New file.
3976
3977 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3978
3979         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3980         Documented as defined on Windows 2000 or later.
3981         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3982         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3983         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3984         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3985         but values unknown, Windows Vista or later.
3986         (CAL_UMALQURA): Cleanup.
3987         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3988         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3989         (CAL_SSHORTESTDAYNAME7): Cleanup.
3990         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3991         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3992
3993 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3994
3995         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3996         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3997         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3998         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3999         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
4000         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
4001         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
4002         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
4003         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
4004         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
4005         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
4006         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
4007         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
4008         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
4009         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
4010         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
4011         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
4012         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
4013         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
4014         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
4015         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
4016         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
4017         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
4018         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
4019         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
4020         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
4021         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
4022         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
4023         (DMDFO_CENTER): Define.
4024         (GetDCBrushColor,GetDCPenColor): Declare.
4025         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
4026
4027 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4028
4029         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
4030         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
4031         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
4032         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
4033         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
4034         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
4035         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
4036         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
4037         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
4038         (LANG_DARI,LANG_MALAGASY)
4039         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
4040         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
4041         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
4042         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
4043         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
4044         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
4045         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
4046         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4047         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
4048         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
4049         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
4050         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
4051         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
4052         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
4053         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
4054         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
4055         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
4056         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
4057         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
4058         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
4059         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
4060         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
4061         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
4062         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
4063         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
4064         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
4065         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
4066         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
4067         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
4068         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
4069         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
4070         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
4071         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
4072         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
4073         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
4074         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
4075         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
4076         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
4077         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
4078         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
4079         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
4080         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
4081         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
4082         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
4083         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
4084         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
4085         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4086         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
4087         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
4088         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
4089         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
4090         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
4091         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
4092         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
4093         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
4094         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
4095         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
4096         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
4097         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
4098         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
4099         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
4100         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
4101         (SUBLANG_MARATHI_INDIA): Defined twice by error.
4102
4103 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4104
4105         * lib/directx/Makefile.in: Remove reference to libquartz.a since
4106         it was moved.
4107
4108 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
4109
4110         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
4111         SPI_SETSCREENSAVERUNNING.
4112         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
4113
4114 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4115
4116         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
4117         It had been removed because it's no documented, but Cygwin needs it.
4118
4119 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4120
4121         * include/amvideo.h (IFullScreenVideo): Define.
4122         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
4123         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
4124
4125 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4126
4127         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
4128         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
4129         as available on Windows 98 and better.
4130         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4131         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4132         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
4133
4134 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4135
4136         * include/amvideo.h: New file.
4137         * include/dshow.h: Include <amvideo.h>.
4138
4139 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4140
4141         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
4142         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
4143         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
4144         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
4145         (HWND_BROADCAST): Cleanup.
4146         (HWND_MESSAGE): Windows 2000 only.
4147         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
4148         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
4149         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
4150         (SIF_ALL): Cleanup.
4151         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
4152         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
4153         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
4154         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
4155         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
4156         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
4157         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
4158         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
4159         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
4160         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
4161         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
4162         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4163         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4164         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4165         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4166         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4167         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4168         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
4169         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
4170         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
4171         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
4172         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
4173         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
4174         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
4175         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
4176         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
4177         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
4178         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
4179         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
4180         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
4181         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
4182         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
4183         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
4184         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
4185         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
4186         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
4187         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
4188         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
4189         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
4190         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
4191         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
4192         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
4193         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
4194         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
4195         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
4196         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
4197         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
4198         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
4199         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
4200         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
4201         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
4202         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
4203         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
4204         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
4205         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
4206         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
4207         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
4208         (SPI_SCREENSAVERRUNNING): Removed.
4209         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
4210         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
4211         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
4212         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
4213
4214 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4215
4216         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
4217         (MprAdminGetPDCServer): Add prototype.
4218         (MprAdminSendUserMessage): Add prototype.
4219         (MprAdminUserGetInfo): Add prototype.
4220         (MprAdminUserSetInfo): Add prototype.
4221         * lib/mprapi.def: Add stubs for above functions.
4222
4223 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4224
4225         * lib/directx/quartz.def: Move from here...
4226         * lib/quartz.def: ... to here.
4227
4228 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4229
4230         * include/amaudio.h: New file.
4231         * include/dshow.h: Include <amaudio.h>.
4232
4233 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4234
4235         * include/errors.h: New file.
4236         * include/dshow.h: Include <errors.h>.
4237
4238 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4239
4240         * include/dshow.h: New file.
4241         * include/evcode.h: New file.
4242         * include/audevcod.h: New file.
4243         * include/dvdevcod.h: New file.
4244
4245 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4246
4247         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4248         (MprAdminConnectionClearStats): Add prototype.
4249         (MprAdminConnectionEnum): Add  prototype.
4250         (MprAdminConnectionGetInfo): Add prototype.
4251         (MprAdminConnectionRemoveQuarantine): Add prototype.
4252         (MprAdminPortClearStats): Add prototype.
4253         (MprAdminPortDisconnect): Add prototype.
4254         (MprAdminPortEnum): Add prototype.
4255         (MprAdminPortGetInfo): Add prototype.
4256         (MprAdminPortReset): Add prototype.
4257         * lib/mprapi.def: New file.
4258
4259 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4260
4261         *  include/mprapi.h: #include <lmcons.h>
4262         (MAX_DEVICETYPE_NAME): Add define.
4263         (MAX_PHONE_NUMBER_LEN): Add define.
4264         (ATADDRESSLEN): Add define.
4265         (IPADDRESSLEN): Add define.
4266         (IPXADDRESSLEN): Add define.
4267         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4268         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4269         (RAS_FLAGS_PPP_CONNECTION): Add define.
4270         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4271         (RAS_FLAGS_RAS_CONNECTION): Add define.
4272         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4273         (RASCCPCA_STAC): Add define.
4274         (RASCCPCA_MPPC): Add define.
4275         (PPP_CCP_COMPRESSION): Add define.
4276         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4277         (PPP_CCP_ENCRYPTION40BIT): Add define.
4278         (PPP_CCP_ENCRYPTION128BIT): Add define.
4279         (PPP_CCP_ENCRYPTION56BIT): Add define.
4280         (PPP_CCP_HISTORYLESS): Add define.
4281         (RASPRIV_NoCallback): Add define.
4282         (RASPRIV_AdminSetCallback): Add define.
4283         (RASPRIV_CallerSetCallback): Add define.
4284         (RASPRIV_DialinPrivilege): Add define.
4285         (RASPRIV_CallbackType): Add define.
4286         (RASPRIV2_DialinPolicy): Add define.
4287         (PPP_LCP_PAP): Add define.
4288         (PPP_LCP_SPAP): Add define.
4289         (PPP_LCP_CHAP): Add define.
4290         (PPP_LCP_EAP): Add define.
4291         (PPP_LCP_CHAP_MD5): Add define.
4292         (PPP_LCP_CHAP_MS): Add define.
4293         (PPP_LCP_CHAP_MSV2): Add define.
4294         (PPP_LCP_MULTILINK_FRAMING): Add define.
4295         (enum _RAS_HARDWARE_CONDITION): Add.
4296         (enum _RAS_PORT_CONDITION): Add.
4297         (struct _PPP_ATCP_INFO): Add.
4298         (struct _PPP_ATCP_INFO): Add.
4299         (struct _PPP_IPCP_INFO): Add.
4300         (struct _PPP_IPCP_INFO2): Add.
4301         (struct _PPP_IPXCP_INFO): Add.
4302         (struct _PPP_LCP_INFO): Add.
4303         (struct _PPP_NBFCP_INFO): Add.
4304         (struct _PPP_INFO): Add.
4305         (struct _PPP_INFO_2): Add.
4306         (struct _RAS_CONNECTION_0): Add.
4307         (struct RAS_CONNECTION_1): Add.
4308         (struct _RAS_CONNECTION_2): Add.
4309         (struct RAS_PORT_0): Add.
4310         (struct _RAS_PORT_1): Add.
4311         (struct _RAS_USER_0): Add.
4312         (struct _RAS_USER_1): Add.
4313
4314 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4315
4316         * include/mprapi.h: New file.
4317         * include/routprot.h: New file.
4318         * include/ipxrtdef.h: New file.
4319         * include/ipxconst.h: New file.
4320         * include/stm.h: New file.
4321
4322 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4323
4324         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4325         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4326
4327 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4328
4329         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4330         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4331         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4332         versions.
4333         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4334
4335 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4336
4337         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4338         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4339
4340 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4341
4342         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4343
4344 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4345
4346         * include/basetyps.h (REFFMTID): Define properly.
4347
4348 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4349
4350         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4351         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4352
4353 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4354
4355         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4356         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4357         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4358         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4359         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4360         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4361         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4362         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4363         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4364         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4365         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4366         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4367         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4368         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4369         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4370         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4371         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4372         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4373         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4374         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4375         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4376         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4377         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4378         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4379         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4380         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4381         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4382         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4383         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4384         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4385         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4386         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4387         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4388         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4389         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4390         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4391         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4392         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4393         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4394         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4395         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4396         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4397         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4398         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4399         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4400         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4401         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4402         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4403         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4404         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4405         (IF_OPER_STATUS_OPERATIONAL): Define.
4406         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4407         Add function declaration.
4408         * include/mgm.h: New file.
4409         * lib/rtm.def: New file.
4410         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4411
4412 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4413
4414         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4415         This function cannot be made thread-safe, the API would have to be
4416         changed for that, just like strerror() -> strerror_r() and similar
4417         ISO C or POSIX functions...
4418
4419 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4420
4421         * include/edevdefs.h: New file.
4422
4423 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4424
4425         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4426         Use as guard for the WAVEFORMATEX structure instead of
4427         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4428         _WAVEFORMATEX_ for compatibility.
4429         Thanks to:    Andrew Jones <guln at sf dot net>
4430
4431 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4432
4433         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4434         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4435         Thanks to:    David Golub <david_golub at sf dot net>
4436
4437 2006-04-18  Eric House  <ehouse@eehouse.org>
4438
4439         PocketPC support.
4440         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4441         functions for using aygshell on PocketPC:
4442         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4443         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4444
4445         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4446         command bar API on PocketPC:
4447         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4448         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4449         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4450         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4451         CommandBar_InsertButton, CommandBar_Destroy.
4452
4453         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4454         fields not present on PocketPC.
4455         (GetCurrentThreadId): Conditionally declare as extern function
4456         without dllimport attribute on PocketPC.
4457         (ResetEvent): Likwise.
4458         (SetEvent): Likewise.
4459
4460         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4461         Conditionally declare as extern function without dllimport
4462          attribute on PocketPC.
4463         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4464         declare as extern function without dllimport attribute on PocketPC.
4465
4466 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4467
4468         * lib/test.c: Include icm.h.
4469
4470 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4471
4472         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4473         (CreateColorSpace): Add UNICODE mappings.
4474         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4475         * include/icm.h: New file.
4476         * lib/mscms.def: New file.
4477         * lib/icmui.def: New file.
4478
4479 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4480
4481         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4482         (IMAGE_FILE_MACHINE_AMD64): New define.
4483         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4484         New defines.
4485         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4486         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4487         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4488         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4489         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4490         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4491         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4492         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4493         New defines.
4494         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4495         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4496         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4497         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4498         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4499         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4500         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4501         definitions and typedefs.
4502         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4503         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4504         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4505         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4506         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4507         New structure definition and typedefs.
4508         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4509         Likewise.
4510         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4511
4512 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4513
4514         * lib/test.c: Fix typo in #inlcude.
4515         * include/aclui.h: INTERFACE should not remain
4516         defined at the end of the header.
4517         * include/servprov.h: Ditto.
4518
4519 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4520
4521         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4522
4523 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4524
4525         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4526
4527 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4528
4529         * include/wsahelp.h (system_header): Add pragma.
4530         * include/ws2spi.h (system_header): Add pragma.
4531         * include/rasdlg.h (system_header): Add pragma.
4532         * include/rasdlg.h (_RASDLG_H): Define.
4533         Define instead of _RASDLG_H_, this is the w32api standard.
4534         * include/mlang.h (_MLANG_H): Define.
4535         Define instead of _MLANG_H_, this is the w32api standard.
4536         * include/setupapi.h (_SETUPAPI_H): Define.
4537         Define instead of _SETUPAPI_H_, this is the w32api standard.
4538
4539 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4540
4541         * include/rpcndr.h (boolean): Add typedef.
4542         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4543         * include/rpcndr.h (_RPCNDR_H): Define.
4544         Define in addition to __RPCNDR_H__, this is the w32api standard.
4545
4546 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4547
4548         * include/w32api.h: Increment version to 3.7.
4549         * Makefile.in: Ditto.
4550
4551 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4552
4553         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4554         GET_MODULE_HANDLE_EX_FLAG_PIN,
4555         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4556         Thanks to:    Brandon Sneed <brandon at redf dot net>
4557
4558 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4559
4560         * include/secext.h: Enclose function declarations in extern "C"
4561         if __cplusplus.
4562
4563 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4564
4565         * include/comcat.h: INTERFACE should not remain defined
4566         at the end of the header.
4567         * include/docobj.h: Ditto.
4568         * include/exdisp.h: Ditto.
4569         * include/intshcut.h: Ditto.
4570         * include/mlang.h: Ditto.
4571         * include/mshtml.h: Ditto.
4572         * include/oaidl.h: Ditto.
4573         * include/objidl.h: Ditto.
4574         * include/objsafe.h: Ditto.
4575         * include/ocidl.h: Ditto.
4576         * include/oleacc.h: Ditto.
4577         * include/oledlg.h: Ditto.
4578         * include/oleidl.h: Ditto.
4579         * include/richole.h: Ditto.
4580         * include/shldisp.h: Ditto.
4581         * include/shlobj.h: Ditto.
4582         * include/unknwn.h: Ditto.
4583         * include/vfw.h: Ditto.
4584         Thanks to:    Brandon Sneed <brandon at redf dot net>
4585
4586 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4587
4588         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4589         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4590         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4591
4592 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4593
4594         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4595         here also.
4596
4597 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4598
4599         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4600         We should probably remove PROV_MS_MAIL but I'm keeping it for
4601         now for compatibility reasons.
4602         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4603
4604 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4605
4606         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4607         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4608         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4609
4610 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4611
4612         * include/wingdi.h [WINVER >= 0x0410]
4613         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4614         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4615
4616 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4617
4618         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4619         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4620         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4621         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4622         (L_MAX_URL_LENGTH): Define.
4623         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4624         Thanks to:    Brandon Sneed <brandon at redf dot net>
4625
4626 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4627
4628         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4629
4630 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4631
4632         * include/w32api.h (_W32API_H): Define.
4633         Define in addition to _W32API_H_, this is the w32api standard.
4634
4635 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4636
4637         * include/w32api.h (WindowsVista): Define.
4638
4639 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4640
4641         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4642         on SOCKET_ADDRESS only if winsock2.h has already been included.
4643
4644 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4645
4646         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4647
4648 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4649
4650         * include/iphlpapi.h (GAA_FLAG_*): Define.
4651         (GetAdaptersAddresses): Add function declaration.
4652         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4653         Thanks to:    ross <rossboulet at users dot sf dot net>
4654
4655 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4656
4657         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4658         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4659         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4660         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4661         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4662         SCOPE_LEVEL): Add enums.
4663         (IP_ADAPTER_*): Define.
4664
4665 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4666
4667         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4668         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4669
4670 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4671
4672         * include/objidl.h (PIDSI_*): Define.
4673         (PRSPEC_*): Define.
4674         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4675
4676 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4677
4678         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4679         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4680         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4681         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4682         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4683
4684 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4685
4686         * include/mq.h: New file.
4687         * lib/mqrt.def (MQ*): Define a few missing functions.
4688
4689 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4690
4691         * lib/mqrt.def: New file.
4692         Needs the mq.h file to work properly, working on it.
4693         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4694
4695 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4696
4697         * include/winerror.h (STG_E_*):  Define.
4698         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4699         * include/winerror.h (STG_S_*): Define.
4700         (CO_S_MACHINENAMENOTFOUND): Define.
4701         (RPC_E_*): Define.
4702         (NTE_*): Define.
4703
4704 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4705
4706         * include/commctrl.h (ListView_*):  Define and correct.
4707         (LVM_*): Define.
4708
4709 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4710
4711         * include/winuser.h (WM_IME_*): Define (DWORD type).
4712         (EM_*IMESTATUS): Define.
4713         (WM_*): Define.
4714         (XBUTTON*): Define.
4715         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4716
4717 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4718
4719         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4720         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4721
4722 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4723
4724         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4725         version conditional.
4726
4727 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4728
4729         * include/winspool.h (JOB_INFO_3): Add structure.
4730         (PROVIDOR_INFO_*{AW}): Add structure.
4731         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4732         (PRINTER_ENUM_VALUES{AW}): Add structure.
4733         (PRINTPROCESSOR_CAPS): Add structure.
4734
4735 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4736
4737         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4738         (PRINTER_INFO_7A): Correct definition.
4739
4740 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4741
4742         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4743         (DRIVER_INFO_*{AW}): Add structure.
4744         (PRINTER_INFO_*{AW}): Add structure.
4745         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4746
4747 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4748
4749         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4750         (DRIVER_*MODE): Define (DWORD type).
4751         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4752
4753 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4754
4755         * include/wincon.h (GetConsoleProcessList): Declare.
4756
4757 2006-03-27  Hansres Engel  <engel@node.ch>
4758
4759         * include/mlang.h: New file.
4760
4761 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4762
4763         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4764
4765 2006-03-26  Hansres Engel  <engel@node.ch>
4766
4767          Add Uniscribe API for typography and for complex scripts.
4768         * include/usp10.h: New file.
4769         * lib/usp10.def: New file.
4770
4771         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4772
4773         * include/imm.h (IMECHARPOSITION): Add structure.
4774         (RECONVERTSTRING): Likwise.
4775
4776         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4777
4778         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4779         (IMLangFontLink2): Likewise.
4780         (IMultiLanguage): Likewise.
4781
4782 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4783
4784         * include/wincon.h  (ENABLE_*): Add more defines.
4785
4786 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4787
4788         * include/winnt.h (INHERITED_ACE): Define.
4789         (VALID_INHERIT_FLAGS): Correct definition.
4790
4791 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4792
4793          * lib/wtsapi32.def: New file.
4794
4795 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4796
4797         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4798         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4799
4800 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4801
4802         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4803         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4804         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4805         (DSPRINT_*): Define (DWORD type).
4806         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4807
4808 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4809
4810         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4811         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4812
4813 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4814
4815         * include/shellapi.h [_WIN32_IE >= 0x0600]
4816         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4817         Windows XP SP1 and Windows XP respectively.
4818
4819 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4820
4821         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4822         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4823         * include/shellapi.h [_WIN32_IE >= 0x0500]
4824         (NIS_*): Introduced in Version 5.0.
4825
4826 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4827
4828         * include/wingdi.h (CS_*): Correct WINVER guard on
4829         Image Color Matching colour definitions.
4830
4831 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4832
4833         * include/shlobj.h (SFGAO_ISSLOW): Define.
4834         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4835         attribute constants.
4836
4837 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4838
4839         * include/wingdi.h [WINVER >= 0x0500]
4840         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4841         Thanks to: David A. Capello <dacap at users dot sf dot net>
4842
4843 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4844
4845         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4846         (INTERNET_STATE_*): Define flags.
4847         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4848
4849 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4850
4851         * include/sddl.h: New file.
4852
4853 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4854
4855         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4856         last change.
4857         Remove file level #pragma pack(push,4)/#pragma pop.
4858
4859 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4860
4861         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4862         value to force correct alignment.
4863
4864 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4865
4866         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4867         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4868         (PNM_CACHEHINT): Add backward compatibilty define.
4869         (LPNM_CACHEHINT): Likewise.
4870
4871 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4872
4873         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4874
4875 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4876
4877         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4878         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4879         * lib/shell32.def (PathResolve): Define.
4880
4881 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4882
4883         * include/shlobj.h (PathResolve): Fix typo.
4884
4885 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4886
4887         * include/shlobj.h (PathResolve): Define.
4888         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4889         PRF_DONTFINDLNK): Ditto.
4890         * lib/shell32.def (PathResolve): Define.
4891
4892 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4893
4894         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4895
4896 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4897
4898         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4899         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4900         (NotifyRouteChange@8): Define.
4901
4902 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4903
4904         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4905         prototypes.
4906
4907 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4908
4909         * include/winnt.h (FORCEINLINE): Define.
4910
4911 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4912
4913         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4914
4915 2006-01-26  Filip Navara  <xnavara@volny.cz>
4916
4917         * include/winnt.h (DECLSPEC_ALIGN): Define.
4918
4919 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4920
4921         * include/commctrl.h: Correct spelling of 'compatibility' in
4922         comments.
4923         * include/setupapi.h: Likewise.
4924         * include/ws2tcpip.h: Likewise.
4925
4926 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4927
4928         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4929
4930 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4931
4932         WATCOM compatibility changes.
4933         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4934         rather than __attribute__.
4935         (DECL_EXPORT): Likewise.
4936         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4937         (DDKFASTAPI): Likewise.
4938         (DDKCDECLAPI): Likwise.
4939         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4940
4941 2006-01-23  Brandon Sneed  <brandon@redf.net>
4942
4943         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4944         to exports.
4945
4946 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4947
4948         * include/w32api.h: Increment version to 3.6.
4949         * Makefile.in: Ditto.
4950
4951 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4952
4953         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4954         advapi32.dll functions.
4955
4956 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4957
4958         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4959         names for padding size constants.
4960
4961 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4962
4963         * include/aclapi.h (WINADVAPI): Add to prototypes.
4964         * include/winreg.h (WINADVAPI): Likewise.
4965         * include/winsvc.h (WINADVAPI): Likewise.
4966
4967 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4968
4969         * include/winbase.h (WINADVAPI): Define.
4970
4971 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4972
4973         * include/winuser.h (CreateWindowStation): Correctly identify first
4974         argument as constant.
4975         (CreateWindowStation@): Ditto.
4976
4977 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4978
4979         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4980         (TMT_*, BT_*): Add constants.
4981
4982 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4983
4984         * include/winsock2.h: Don't define struct sockaddr_storage when
4985         building Cygwin.
4986
4987 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4988
4989         * lib/ws2_32.c: New file, defining IPv6 constants.
4990         * lib/Makefile.in (SOURCES): Add ws2_32.c
4991         (EXTRA_OBJS): Add ws2_32.o.
4992
4993 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4994
4995         * lib/user32.def (PrivateExtractIconsA@32,
4996         PrivateExtractIconsW@32): Define.
4997         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4998
4999 2005-12-12  Christopher Faylor  <cgf@timesys.com>
5000
5001         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
5002
5003 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
5004
5005         * lib/kernel32.def (CreateFiberEx): Correct suffix.
5006
5007 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
5008             Danny Smith <dannysmith@users.sourceforge.net>
5009
5010         * lib/msxml-uuid.c: New file to generate UUIDs for
5011         MSXML interfaces.
5012         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
5013
5014 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5015
5016         * include/winbase.h (GetDevicePowerState): Add prototype.
5017         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
5018
5019 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
5020
5021         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
5022         Define as macro if !_WIN64.
5023         (SetClassLongPtr{AW}): Likewise.
5024         (GCLP_*): Add GetClassLongPtr defines.
5025         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
5026         (SetClassLongPtr{AW}): Likewise.
5027
5028 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
5029
5030         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
5031         (SetClassLongPtr{AW}): Likewise.
5032         (GCLP_*): Add GetClassLongPtr defines.
5033         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
5034         (SetClassLongPtr{AW}): Likewise.
5035
5036 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5037
5038         * include/commdlg.h (OPENFILENAMEW): Add members for
5039         _WIN32_WINNT >= 0x0500.
5040         Thanks to Ricardo Dalcorsso Fodra.
5041         (OPENFILENAMEA): Modify whitespace. Ansify comment.
5042
5043 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5044
5045         * include/wingdi.h (GetICMProfileA): Correct prototype.
5046         (GetICMProfileW): Likewise.
5047         Thanks to: Paul J Lucas
5048
5049 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
5050
5051         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
5052
5053 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
5054
5055         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
5056         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
5057         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
5058         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
5059
5060 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5061
5062         * include/objbase.h: Fix typo.
5063         * include/w32api.h: Increment version to 3.5.
5064         * Makefile.in: Ditto.
5065
5066 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5067
5068         * include/w32api.h: Increment version to 3.4.
5069         * Makefile.in: Ditto.
5070
5071 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
5072
5073         * include/winbase.h (GetProcessId): Remove duplicate declaration.
5074         Use _WIN32_WINNT >= 0x0501 guard.
5075
5076 2005-10-11  Christopher Faylor  <cgf@timesys.com>
5077
5078         * include/winbase.h (GetProcessId): Declare.
5079
5080 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5081
5082         * lib/ddk/newdev.def: Added.
5083         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
5084
5085 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5086
5087         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
5088         component.
5089         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
5090
5091 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5092
5093         * lib/shell32.def (SHILCreateFromPath): Add stub.
5094         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
5095
5096 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5097
5098         * include/winbase.h (RegisterWaitForSingleObject,
5099         RegisterWaitForSingleObjectEx): Define.
5100         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
5101         (RegisterWaitForSingleObject@16): Changed to
5102         RegisterWaitForSingleObject@24.
5103         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
5104
5105 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
5106
5107         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
5108         Thanks to: Gisle Vanem  <giva at bgnett dot no>
5109
5110 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5111
5112         * include/reason.h [_WIN32_WINNT >= 0x0501]
5113         (SHTDN_REASON_*): New file.
5114         * include/objbase.h: Avoid double header guard.
5115
5116 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
5117
5118         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
5119         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
5120         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
5121
5122 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5123
5124         * include/shlobj.h (IContextMenu3): Define.
5125         * include/shlguid.h (IID_IContextMenu3): Declare.
5126         * lib/shell32.c (IID_IContextMenu3): Define.
5127
5128 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5129
5130         * include/shlobj.h (SHFormatDrive): Declaration of function
5131         and associated constants.
5132
5133 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5134
5135         * include/ddk/hidsdi.h:  New file.
5136         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
5137         functions declared in hidsdi.h.
5138         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
5139
5140 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5141
5142         * lib/imm32.def (ImmDisableIME): Add stub.
5143         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
5144
5145 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5146
5147         * include/w32api.h: Increment version to 3.3.
5148         * Makefile.in: Ditto.
5149
5150 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
5151
5152         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
5153         Correct their values.
5154         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
5155
5156 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5157
5158         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
5159
5160 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5161
5162         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
5163         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
5164
5165 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5166
5167         * include/richedit.h (SETTEXTEX): Define structure and
5168         associated constants.
5169         (GT_SELECTION): Define GETTEXTEX flag constant.
5170
5171 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5172
5173         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
5174
5175 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5176
5177         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
5178         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
5179         prototypes.
5180
5181 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5182
5183         * include/commctrl.h (RBBS_USECHEVRON): Define.
5184         (RBBS_*): Use hex notation, group together.
5185
5186 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5187
5188         * lib/kernel32.def (GetUserGeoID): Correct suffix.
5189         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
5190
5191 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5192
5193         * include/commctrl.h (TreeView_SetItemState): Initilise
5194         _tvi.hItem.
5195         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
5196
5197 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
5198
5199         * include/commctrl.h (NMLVFINDITEM): Add structure.
5200
5201 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5202
5203         * include/wininet.h (WININET_API_FLAG_*): Add defines.
5204
5205 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
5206
5207         * include/winnt.h (VER_SET_CONDITION): Define.
5208
5209 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5210
5211         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
5212         (ATTACH_PARENT_PROCESS): Define.
5213         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
5214         documentation.
5215
5216 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5217
5218         * include/winbase.h (QueueUserWorkItem): Add prototype.
5219
5220 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5221
5222         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
5223         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
5224         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
5225         CM_CMYK_COLOR): Define.
5226
5227 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
5228
5229         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
5230         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
5231         Thanks to: Christian  <chhd at users dot sf dot net>
5232
5233 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5234
5235         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
5236         field.
5237         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
5238
5239 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5240
5241         * include/winbase.h (GlobalDiscard): Define as macro.
5242         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5243
5244 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5245
5246         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5247         (WNetGetResourceParentW): Ditto.
5248         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5249         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5250
5251 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5252
5253         * include/wininet.h (FtpGetFileSize): Add prototype.
5254         (FtpCommand[AW]): Correct prototypes.
5255         Reported by: <siger at users dot sf dot net>
5256
5257 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5258
5259         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5260         (capGetDriverDescription[AW]): Likewise.
5261
5262 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5263
5264         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5265         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5266         (SE_IMPERSONATE_NAME TEXT): Ditto.
5267         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5268         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5269
5270 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5271
5272         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5273         change.
5274
5275 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5276
5277         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5278         Thanks to:
5279         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5280
5281 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5282
5283         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5284         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5285         (gai_strerror[AW]): Put into #if 0 block.
5286
5287 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5288
5289         * include/basetyps.h (__int16): Correct define.
5290
5291 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5292             Danny Smith  <dannysmith@users.sourceforge.net>
5293
5294         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5295         define for Open Watcom portability.
5296         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5297         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5298         of local c_rgodfDI* objects. Replace .rdata section attribute
5299         with 'const' keyword in definition of global c_dfDI* objects.
5300
5301 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5302
5303         * include/winioctl.h (IOCTL_VOLUME_BASE,
5304         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5305         Copy defines from include/ddk/ntdddvol.h.
5306         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5307
5308 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5309
5310         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5311
5312 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5313
5314         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5315         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5316
5317 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5318
5319         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5320
5321 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5322
5323         * lib/user32.def (MonitorFromPoint): Correct suffix.
5324
5325 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5326
5327         * include/wininet.h (InternetCheckConnectionA,
5328         InternetCheckConnectionW) Add prototypes.
5329         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5330         INTERNET_CONNECTION_CONFIGURED): Add defines.
5331
5332 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5333
5334         * include/commctrl.h (ComboBox_SetMinVisible,
5335         ComboBox_GetMinVisible): Added Macros.
5336         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5337         Added definitions.
5338
5339 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5340
5341         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5342         assembly code conditional on _X86_.
5343
5344 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5345
5346         * include/w32api.h: Increment version to 3.2.
5347         * Makefile.in: Ditto.
5348         * include/afxres.h: Remove the \r from the line ending.
5349         * include/errorrep.h: Ditto.
5350         * include/shldisp.h: Ditto.
5351         * include/tschema.h: Ditto.
5352         * lib/dhcpcsvc.def: Ditto.
5353         * lib/uxtheme.def: Ditto.
5354         * lib/wldap32.def: Ditto.
5355
5356 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5357
5358         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5359         Correct typo.
5360         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5361
5362 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5363
5364         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5365         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5366         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5367         SPI_GETFOREGROUNDLOCKTIMEOUT,
5368         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5369         *include/imm.h (WM_IME_REQUEST): Added definition.
5370         *include/shlobj.h (SLGP_RAWPATH,
5371         SLGP_UNCPRIORITY): Added definition.
5372
5373 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5374
5375         *include/winuser.h (HSHELL_FLASH): Added definition.
5376
5377 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5378
5379         * include/shldisp.h (IAutoComplete): Added interface definiton.
5380         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5381         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5382         * include/shlobj.h (IObjMgr): Added interface definiton.
5383         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5384         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5385         CLSID_ACListISF, IID_IACList): Added GUIDs.
5386         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5387         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5388         CLSID_ACListISF, IID_IACList): Added GUIDs.
5389
5390 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5391
5392         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5393         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5394         (CDRF_*): Use hex notation for constants.
5395
5396 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5397
5398         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5399         Reported by Eric Sharkey <sharkey at netrics dot com>
5400
5401 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5402
5403         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5404         TokenGroupsAndPrivileges, TokenSessionReference,
5405         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5406         Reformat.
5407         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5408         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5409
5410 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5411
5412         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5413         ImageList_Duplicate): Add stubs.
5414
5415 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5416
5417         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5418         Thanks to "Pete" <pross@xvid.org>
5419
5420 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5421
5422         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5423         AC_DST_NO_ALPHA, ...): Add defines.
5424         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5425         ULW_OPAQUE): Add defines.
5426
5427 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5428
5429         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5430         guard.
5431         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5432         suffix.
5433         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5434
5435 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5436
5437         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5438         (CreateProcessWithLogonW): Declare.
5439         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5440         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5441
5442 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5443
5444         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5445         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5446
5447 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5448
5449         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5450         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5451
5452 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5453
5454         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5455
5456 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5457
5458         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5459         Add defines.
5460         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5461
5462 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5463
5464         * include/shellapi.h (NIF_GUID): Add another define.
5465
5466 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5467
5468         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5469         Changed it twice due to inconsistent MSDN documentation.
5470         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5471
5472 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5473
5474         * include/shlobj.h (SHGFP_TYPE): Add enum.
5475
5476 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5477
5478         * include/winuser.h (WM_THEMECHANGED): Add define.
5479
5480 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5481
5482         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5483         ExFreeToPagedLookasideList): Guard inline versions with
5484         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5485         external functions for earlier _WIN32_WINNT.
5486
5487 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5488
5489         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5490
5491 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5492
5493         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5494         if  undefined and __W32API_USE_DLLIMPORT__.
5495         Add WINBASEAPI token to prototypes, throughout.
5496
5497 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5498
5499         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5500         (GetFiberData): Likewise.
5501         (NtCurrentTeb): Likewise.
5502
5503 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5504
5505         * include/shellapi.h (NIF_INFO): Add define.
5506         (NIIF_*) Add defines..
5507         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5508         (NIF_*): Convert constants to hex.
5509
5510 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5511
5512         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5513         GetGlyphIndicesW): Declare.
5514         (GGI_MARK_NONEXISTING_GLYPHS): Define
5515         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5516         GetGlyphIndicesW): Add stubs.
5517
5518 2004-10-24  Dan Aloni  <da-x@colinux.org>
5519
5520         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5521         ZwQueryFullAttributesFile): Declare.
5522         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5523         Declare.
5524         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5525         ZwQueryVolumeInformationFile): Add stubs.
5526
5527 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5528
5529         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5530         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5531
5532 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5533             Danny Smith  <dannysmith@users.sourceforge.net>
5534
5535         * include/winbase.h (InitializeSListHead, Interlocked*):
5536         Guard with !__USE_NTOSKRNL__.
5537
5538         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5539         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5540         Guard with  __USE_NTOSKRNL__.
5541         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5542         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5543         && _WIN32_WINNT >= 0x0501
5544         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5545         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5546         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5547         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5548
5549         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5550         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5551         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5552         ExWindowStationObjectType, IoAdapterObjectType,
5553         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5554         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5555         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5556         Uncomment stubs.
5557
5558 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5559
5560         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5561         definition
5562         (IoReleaseRemoveLock): Add definition.
5563
5564 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5565
5566         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5567         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5568         Add prototypes.
5569         * include/winddk.h (ExInterlockedAddUlong,
5570         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5571         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5572         ExInterlockedPushEntryList): Change calling convention to
5573         DDKAPI.
5574         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5575         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5576         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5577         Add prototypes for DDKFASTAPI versions.
5578         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5579         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5580         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5581         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5582         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5583         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5584         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5585         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5586         Add fastcall stubs.
5587         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5588         Exi386InterlockedIncrementLong); Add stdcall stubs.
5589
5590 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5591
5592         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5593          if __W32API_USE_DLLIMPORT__ is defined.
5594         * include/winuser.h (WINUSERAPI): Likewise.
5595
5596 2004-09-29  Filip Navara  <xnavara@volny.cz>
5597
5598         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5599         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5600         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5601         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5602         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5603         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5604         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5605         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5606         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5607         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5608         winnt4.h, ws2san.h): Fixed packing.
5609         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5610         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5611         HID_INTERFACE_NOTIFY_PNP): Likewise.
5612         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5613         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5614         <ayerkes@speakeasy.net>.
5615         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5616         declaration.
5617         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5618         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5619         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5620         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5621         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5622         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5623         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5624         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5625         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5626         (SYNCH_LEVEL): Added definition.
5627         (KPCR, KPCR_TIB): Fixed declaration.
5628         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5629         included and _WIN32_WINNT >= 0x0501.
5630         (RtlEqualLuid): Fixed macro definition.
5631         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5632         KeRaiseIrql on i386 architectures.
5633
5634 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5635
5636         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5637         declaration.
5638         (IHTMLSelectionObject): Correct get_type declaration.
5639         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5640         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5641         IHTMLBodyElement2): Add interfaces.
5642         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5643         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5644         typedefs.
5645         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5646         Add IIDs.
5647
5648 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5649
5650         * include/w32api.h: Increment version to 3.1.
5651         * Makefile.in: Ditto.
5652
5653 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5654
5655         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5656         MonitorFromWindow): Add prototypes.
5657         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5658         MonitorFromWindowMonitorFromWindow): Add stubs.
5659         * include/shellapi.h (DuplicateIcon): Add prototype.
5660
5661 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5662
5663         * include/winuser.h (WINUSERAPI): New define.
5664         Use it to mark user32.dll imports, throughout.
5665
5666 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5667
5668         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5669         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5670         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5671         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5672         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5673         HidD_GetPreparsedData, HidD_GetProductString,
5674         HidD_GetSerialNumberString, HidD_SetConfiguration,
5675         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5676         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5677
5678 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5679
5680         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5681         Add XP defines.
5682         (PCOORD): Add typedef.
5683         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5684
5685 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5686
5687         * include/winldap.h: Don't check value of UNICODE.
5688         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5689
5690 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5691
5692         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5693
5694 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5695
5696         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5697         guard.
5698
5699 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5700
5701         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5702
5703 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5704
5705         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5706
5707 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5708
5709         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5710
5711 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5712
5713         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5714
5715 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5716
5717         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5718         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5719         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5720         Add defines.
5721         (CALG_SHA1): Add define.
5722         (HP_HMAC_INFO): Add define.
5723         (HMAC_INFO): Add struct.
5724         (BLOBHEADER): Add typedef.
5725
5726 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5727
5728         * include/commctrl.h (TreeView_SetItemState): Define macro.
5729
5730 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5731
5732         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5733         macros together.
5734
5735 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5736
5737         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5738         (FILEGROUPDESCRIPTOR): LIkewise.
5739
5740 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5741
5742         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5743
5744 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5745
5746         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5747         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5748         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5749         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5750         (IMAGE_ORDINAL): Map to ...
5751         (IMAGE_ORDINAL{32,64}: New defines.
5752         (IMAGE_THUNK_DATA):  Map to ...
5753         (IMAGE_THUNK_DATA{32,64}: New structures.
5754         (IMAGE_THUNK_DATA): Map to ...
5755         (IMAGE_THUNK_DATA{32,64}: New structures.
5756         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5757         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5758         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5759         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5760
5761 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5762
5763         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5764         _WIN32_WINNT >= 0x0500.
5765
5766 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5767
5768         * include/winbase.h (GetWriteWatch): Correct prototype.
5769         (WRITE_WATCH_FLAG_RESET): Define.
5770         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5771
5772 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5773
5774         * include/commctrl.h (Animate_OpenEx): Define.
5775         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5776         (ListView_GetNumberOfWorkAreas): Correct macro.
5777         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5778         ListView_SetItemCountEx, ListView_GetISearchString,
5779         TreeView_GetLastVisible, Header_CreateDragImage,
5780         Header_SetImageList, Header_GetImageList): Define.
5781         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5782         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5783         TBSTATE_ELLIPSES): Define.
5784         (MonthCal_SetRange): Correct macro.
5785         (ImageList_Duplicate): Declare.
5786
5787 2004-05-29  Filip Navara  <xnavara@volny.cz>
5788
5789         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5790
5791 2004-05-25  Al Slater  <al.slater@scluk.com>
5792
5793         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5794         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5795
5796 2004-05-15  Filip Navara  <xnavara@volny.cz>
5797
5798         * include/ddk/kbdmou.h: New file.
5799         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5800         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5801         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5802         _vsnwprintf, sprintf, swprintf): Export.
5803
5804 2004-05-15  Filip Navara  <xnavara@volny.cz>
5805
5806         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5807         headers.
5808
5809 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5810
5811         * include/wingdi.h: Correct non-unicode typedefs of
5812         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5813
5814 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5815
5816         * include/winsock.h (IN_CLASSA): Fix macro.
5817         * include/winsock2.h (IN_CLASSA): Fix macro.
5818
5819 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5820
5821         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5822         * include/aclui.h: Remove '\r', throughout.
5823         * include/msacm.h: Likewise.
5824         * lib/aclui.def: Likewise.
5825
5826 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5827
5828         * lib/comctl32.def (SetWindowSubclass): Add stub.
5829         Thanks to Eugene <egladysh@users.sourceforge.net>.
5830
5831 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5832
5833         * include/winbase.h (EXECUTION_STATE): Add typedef.
5834         (SetThreadExecutionState): Declare.
5835         * include/wingdi.h (_WINGDI_): Define.
5836         * include/objbase.h (_OBJBASE_H_): Define.
5837
5838 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5839
5840         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5841         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5842         (SM_CMETRICS): Adjust value.
5843         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5844         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5845         Add defines.
5846         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5847
5848 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5849
5850         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5851         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5852         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5853         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5854         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5855         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5856
5857 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5858
5859         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5860         DNSREC_ADDITIONAL): Add defines.
5861
5862 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5863
5864         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5865
5866 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5867
5868         * include/aclui.h: New file.
5869         * lib/aclui.def: New file.
5870         * lib/test.c: Add aclui.h to includes.
5871
5872 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5873
5874         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5875         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5876         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5877
5878 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5879
5880         * include/wingdi.h: Protect non-unicode case of below.
5881
5882 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5883
5884         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5885         LPENUMLOGFONTEXDV with appropriate version check.
5886
5887 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5888
5889         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5890         DSPROPSETID_DirectSoundDevice): Add defines.
5891
5892 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5893
5894         * include/msacm.h: New file.
5895
5896 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5897
5898         * include/objbase.h (STGFMT): Declare enum.
5899         (STGOPTIONS): Declare structure.
5900         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5901         (STGOPTIONS_VERSION): Define.
5902         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5903
5904 2004-04-13  Filip Navara  <xnavara@volny.cz>
5905
5906         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5907         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5908         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5909         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5910         HELP_SETWINPOS): Define.
5911         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5912         (SPI_*): Add new definitions for WINVER >= 0x500.
5913         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5914         (InternalGetWindowText, SetWindowsHookW): Declare.
5915         * include/winbase.h (InitializeSListHead): Avoid conflicting
5916         definition with DDK headers.
5917
5918 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5919
5920         * include/winuser.h (GetLastError): Move from here...
5921         * include/winbase.h: ... to here.
5922
5923 2004-04-13  Filip Navara  <xnavara@volny.cz>
5924
5925         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5926
5927 2004-04-13  Filip Navara  <xnavara@volny.cz>
5928
5929         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5930         WINVER >= 0x400.
5931         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5932         (ENUMLOGFONTEXW): Fix definition.
5933         (ENUMLOGFONTEXDV[AW]): Declare.
5934
5935 2004-04-13  Filip Navara  <xnavara@volny.cz>
5936
5937         * include/wingdi.h: Declare the DirectDraw structures only if
5938         the DirectDraw kernel mode headers aren't included.
5939         (EMFINFO): Declare.
5940         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5941         STROBJ_bEnumPositionsOnly): Correct prototypes.
5942
5943 2004-04-13  Filip Navara  <xnavara@volny.cz>
5944
5945         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5946         * include/rpc.h (RPCRTAPI): Define.
5947         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5948         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5949         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5950         (I_RpcBindingSetAsync): Correct prototype.
5951         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5952         to w2kReserved.
5953         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5954         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5955         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5956         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5957         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5958         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5959         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5960         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5961         NdrUserMarshalFree): Declare.
5962         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5963         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5964
5965 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5966
5967         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5968         LPC_MESSAGE_BASE_SIZE): Define.
5969         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5970
5971 2004-04-13  Filip Navara  <xnavara@volny.cz>
5972
5973         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5974         Declare.
5975
5976 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5977
5978         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5979         MONITORINFO when compiling as C++.
5980
5981 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5982
5983         * README.w32api: List separate copyright conditions for some headers.
5984         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5985
5986 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5987
5988         * include/wingdi.h (RGB): Correct macro.
5989
5990 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5991
5992         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5993
5994 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5995
5996         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5997
5998 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5999
6000         * lib/Makefile.in: Add directx to .PHONY target.
6001         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
6002         Don't include stdio.h or tchar.h.
6003         Replace _T() macro with TEXT() macro, throughout.
6004         Replace _stprintf with wsprintf, throughout.
6005
6006 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
6007
6008         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
6009         Add define.
6010         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
6011         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
6012         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
6013
6014 2004-03-27  Filip Navara  <xnavara@volny.cz>
6015
6016         * include/directx: New subdir.
6017         * lib/directx: Ditto.
6018         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
6019         dxerr9.h): New files.
6020         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
6021         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
6022         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
6023         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
6024         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
6025         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
6026         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
6027         strmiids.c, test.c): Ditto.
6028         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
6029         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
6030
6031 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6032
6033         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
6034         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
6035         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
6036
6037 2004-03-24  Filip Navara  <xnavara@volny.cz>
6038
6039         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
6040         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
6041
6042 2004-03-24  Filip Navara  <xnavara@volny.cz>
6043
6044         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
6045         TaggedQueueing to TaggedQueuing.
6046         (_HW_INITIALIZATION_DATA): Likewise.
6047
6048 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6049
6050         * include/docobj.h (IOleDocumentView::GetDocument): Correct
6051         prototype.
6052         Thanks to Buster Copley  <consequent@users.sourceforge.net>
6053
6054 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6055
6056         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
6057         (MmMapIoSpace): Likewise.
6058         Thanks to Dan Aloni  <da-x@colinux.org>
6059
6060 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
6061
6062         * include/shellapi.h (NIM_* NIS_*): Define constants for
6063         notification icons with _WIN32_IE >= 0x0500.
6064         (NOTIFYICONDATA): Add new structure members for notification
6065         icons with _WIN32_IE >= 0x0500.
6066
6067 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
6068
6069         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
6070         Add defines.
6071         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
6072         (GROUPID) Add typedef.
6073         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
6074         (CreateUrlCacheGroup): Add prototype.
6075         (DeleteUrlCacheGroup): Add prototype.
6076         (FindFirstUrlCacheGroup): Add prototype.
6077         (FindNextUrlCacheGroup): Add prototype.
6078         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
6079         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
6080
6081 2004-03-10  Al Slater  <al.slater@scluk.com>
6082
6083         * include/winsock2.h: Add missing LPFN_ typdefs for
6084         function pointers.
6085         Clean up whitespace.
6086
6087 2004-03-05  Filip Navara  <xnavara@volny.cz>
6088
6089         * include/ddk/scsi.h: Replace assert with ASSERT.
6090         * include/ddk/video.h: Ditto.
6091         * include/ddk/winddk.h: Ditto. Remove the assert macro.
6092         * include/ddk/tdi.h: Correct packing.
6093
6094 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
6095
6096         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
6097         NONAMELESSUNION case.
6098
6099 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
6100
6101         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
6102         __VARIANT_NAME_ constants.
6103
6104 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6105
6106         * include/uxtheme.h: Include <commctrl.h>
6107
6108 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6109
6110         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
6111
6112 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
6113
6114         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
6115         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
6116         together.
6117         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
6118         (V_I8, V_I8REF): Correct macros.
6119         (V_DECIMAL): Correct macro definitions.
6120         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
6121         constants.
6122         (VTBIT_*): Define constants.
6123         (UDATE): Add structure definition.
6124         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
6125         functions.
6126         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
6127         (SafeArrayCreateVectorEx): Declare function.
6128         (Var*): declare VARIANT manipulation functions.
6129         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
6130         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
6131         macros.
6132
6133 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
6134
6135         * include/oaidl.h (FADF_*): Define missing constants.
6136         (IDispatch_*): Define COBJ macros.
6137         (VARIANT): Add missing union members llVal and ullVal.
6138         (wireVARIANT): Likewise.
6139         (ITypeinfo_*): Define COBJ macros.
6140         * include/oleauto.h (Var*FromDisp): Correct parameter type from
6141         LPDISPATCH* to LPDISPATCH.
6142         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
6143         VAR_CALENDAR_*): Add missing constants.
6144         (SafeArray[Get/Set]*): Add prototypes.
6145         (Var*From*):  Add missing prototypes.
6146         (NUMPRS_*): Add defines.
6147         (NUMPARSE): Define structure.
6148         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
6149         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
6150         * include/winuser.h (COLOR_*): Define missing constants.
6151         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
6152         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
6153
6154 2004-02-23  Filip Navara  <xnavara@volny.cz>
6155
6156         * include/ddk/video.h: Corrected packing.
6157
6158 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6159
6160         * include/GL/glu.h (GLU_ERROR): Define.
6161         Thanks to Philip Lamb  <phil at rave dot co dot nz>
6162
6163 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6164
6165         * include/GL/glu.h: Include <stddef.h>.
6166         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
6167
6168 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
6169
6170         * include/w32api.h: Increment version to 3.0.
6171         * Makefile.in: Ditto.
6172         * README.win32api: Modify license to Public Domain per agreement as
6173         found in the mingw-dvlpr list archive.
6174
6175 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
6176
6177         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
6178         (DIRECTORY_TRAVERSE): Ditto.
6179         (DIRECTORY_CREATE_OBJECT): Ditto.
6180         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
6181         (DIRECTORY_ALL_ACCESS): Ditto.
6182         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
6183
6184 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
6185
6186         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
6187
6188         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
6189         Thanks to Mike Nordell <tamlin at algonet dot se>.
6190
6191 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6192
6193         * lib/dnsapi.def: New file.
6194         * lib/test.c: Include windns.h.
6195
6196 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
6197
6198         * include/windns.h: New file.
6199
6200 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6201
6202         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
6203         defines.
6204         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
6205         (SQLSetDescFieldW): Correct prototype.
6206         (SQLSetDescFieldA): Add prototype.
6207         (SQLGetDescFieldW): Add prototype.
6208
6209 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
6210
6211         * include/winuser.h (DFC_POPUPMENU): Add define.
6212
6213 2004-02-07  Dan Aloni  <da-x@gmx.net>
6214
6215         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
6216         suffix.
6217
6218 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6219
6220         * include/oleacc.h (LIBID_Accessibility): Declare.
6221         * lib/uuid.c (LIBID_Accessibility): Define.
6222
6223 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6224
6225         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
6226         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
6227
6228 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6229
6230         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
6231         defines.
6232
6233 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
6234
6235         * include/winuser.h (RT_MANIFEST): Make conditional on
6236         RC_INVOKED.
6237         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
6238         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
6239         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6240         defines.
6241
6242 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6243
6244         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6245
6246 2004-01-15  Filip Navara  <xnavara@volny.cz>
6247
6248         * include/ddk/mcd.h: Don't care about value of DBG define.
6249         * include/ddk/srb.h: Ditto.
6250         * include/ddk/storport.h: Ditto.
6251         * include/ddk/video.h: Ditto.
6252         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6253         GetAddressByNameW): Correct protoype.
6254         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6255
6256 2004-01-05  Filip Navara  <xnavara@volny.cz>
6257
6258         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6259         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6260         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6261         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6262         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6263         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6264         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6265         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6266         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6267         SSF_*): Add defines.
6268         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6269         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6270         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6271         Correct.
6272         (IEnumIDList): Add COBJMACROS.
6273         * include/winuser.h (MIM_*): Add define.
6274
6275 2004-01-04  Filip Navara  <xnavara@volny.cz>
6276
6277         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6278         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6279         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6280         PERSIST_FOLDER_TARGET_INFO): Define structures.
6281         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6282         IPersistFolder2, IPersistFolder3): Add COM interface
6283         definitions.
6284         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6285         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6286         Add COBJMACROS.
6287         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6288         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6289         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6290
6291 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6292
6293         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6294         declarations.
6295         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6296
6297 2004-01-03  Filip Navara  <xnavara@volny.cz>
6298
6299         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6300         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6301         declare IID's.
6302         (IErrorInfo): Add COBJMACROS.
6303         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6304         (CoGetPSClsid): Add protototype,
6305         (CoRegisterPSClsid): Likewise.
6306         * include/objidl.h (IMarshal): Correct methods.
6307         (IMallocSpy): Likewise,
6308         (LPPSFACTORYBUFFER): Add typedef.
6309         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6310         IID.
6311         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6312         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6313         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6314         structures.
6315         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6316         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6317         IQuickActivate): Define interfaces. Declare IID's.
6318         (IPersistPropertyBag2): Add COBJMACROS.
6319         (LPOLEUNDOMANAGER): Add typedef.
6320         (LPPROPERTYBAG2): Likewise.
6321         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6322         (BINDSPEED): Add definition.
6323         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6324         IDropTarget): Add COBJMACROS.
6325         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6326         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6327         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6328         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6329         Add IID definitions.
6330
6331 2004-01-02  Filip Navara  <xnavara@volny.cz>
6332
6333         * include/ddk/winddk.h: Don't care about value of
6334         DBG define.
6335
6336 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6337             Filip Navara  <xnavara@volny.cz>
6338
6339         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6340         _DDK_DUMMYUNION_N_MEMBER): New macros.
6341         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6342         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6343         Use them.
6344
6345 2004-01-01  Filip Navara  <xnavara@volny.cz>
6346
6347         * include/objbase.h: Don't care about value of DBG define.
6348         * include/objidl.h: Add some COBJMACROS.
6349         * include/ocidl.h: Ditto.
6350         * include/oleidl.h: Ditto.
6351         * include/servprov.h: Ditto.
6352         * include/shlobj.h: Ditto.
6353         * include/shlobj.h (IContextMenu2): Correct parent in
6354         DECLARE_INTERFACE.
6355         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6356         Define interfaces.
6357         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6358         Add new constants for _SETUPAPI_VER >= 0x501.
6359
6360 2004-01-01  Filip Navara  <xnavara@volny.cz>
6361
6362         * include/winnt.h (NtCurrentTeb): Add inline definition.
6363
6364 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6365
6366         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6367         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6368
6369 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6370
6371         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6372         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6373         * include/ddk/cfg.h (DN_*): Add defines.
6374
6375 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6376
6377         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6378
6379 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6380
6381         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6382         (NMTVGETINFOTIP): Add structure.
6383
6384 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6385
6386         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6387         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6388         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6389
6390 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6391
6392         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6393         Add macros.
6394         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6395         constants.
6396         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6397         (SHCOLUMNDAT): Likwise.
6398         (SHCOLUMNID): Likewise.
6399         (SHCOLUMNINFO): Likewise.
6400         (SHCOLSTATE): Add enum.
6401         (IColumnProvider): Add COM interface.
6402         (IQueryInfo): Likewise.
6403         (IShellIconOverlayIdentifier): Likewise.
6404         * include/shlguid.h (IID_IColumnProvider) Declare.
6405         (IID_IQueryInfo): Likweise.
6406         (IID_IShellIconOverlayIdentifier): Likwise.
6407         * lib/shell32.c (IID_IColumnProvider) Define.
6408         (IID_IQueryInfo): Likweise.
6409         (IID_IShellIconOverlayIdentifier): Likwise.
6410
6411 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6412
6413         * include/winuser.h (RT_MANIFEST): Add define.
6414
6415 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6416
6417         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6418
6419 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6420
6421         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6422         (GetFiberData): Likewise.
6423         (GetCurrentFiber): Change volatile to __volatile__.
6424         (GetFiberData): Likewise.
6425
6426 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6427
6428         * lib/Makefile.in: Use make function to locate .mri file to allow
6429         building in directory other than source directory.
6430
6431 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6432
6433         * lib/vfw32.def: Remove, replacing with ...
6434         * lib/msvfw32.def: New file.
6435         * lib/avicap32.def: New file.
6436         * lib/avifil32.def: New file.
6437         * lib/vfw32.mri: New file.
6438         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6439         import libs with multiple dll's.
6440         (LIBS): Add MIMPLIBS.
6441         (DISTFILES): Add MRI_FILES.
6442         (libvfw32.a): Build using mri script.
6443
6444 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6445
6446         * include/winnt.h (PAGE_*): Group defines together. Change
6447         constants to hex notation.
6448
6449 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6450
6451         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6452
6453 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6454
6455         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6456         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6457         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6458         Add prototypes.
6459         * lib/shell32.def: Add stubs.
6460
6461         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6462         compiler warnings.
6463
6464 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6465
6466         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6467
6468 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6469
6470         * include/windows.h (CopyCursor): Define as macro.
6471
6472 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6473
6474         * include/winnt.h (CONTAINING_RECORD): Add macro.
6475
6476 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6477
6478         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6479         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6480         defines.
6481
6482 2003-10-13  Filip Navara  <xnavara@volny.cz>
6483
6484         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6485         defines for Dynamic Storage Arrays.
6486         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6487         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6488         and defines for Flat ScrollBars.
6489         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6490         DefSubclassProc): Add prototypes for subclassing.
6491         (DrawShadowText): Add prototype.
6492         (COMCTL32_VERSION): Define.
6493
6494 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6495
6496         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6497         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6498
6499 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6500
6501         * include/winnt.h (SM_REMOTESESSION): Add define.
6502         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6503
6504 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6505
6506         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6507         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6508         duplicate definitions.
6509         (KP_X, KP_Y): Correct typos.
6510
6511 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6512
6513         * include/afxres.h: New file.
6514
6515         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6516         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6517         ENM_SCROLLEVENTS): Add constants.
6518
6519         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6520
6521 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6522
6523         * include/errorep.h: New file.
6524
6525         * lib/faultrep.def: New file.
6526
6527 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6528
6529         * include/winbase.h (AddVectoredExceptionHandler): Define if
6530         _WIN32_WINNT >= 0x0500.
6531
6532         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6533         _WIN32_WINNT >= 0x0500.
6534
6535 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6536
6537         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6538         _WIN32_WINNT >= 0x0501.
6539
6540 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6541
6542         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6543         UnregisterWaitEx): Add functions.
6544
6545         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6546         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6547         or guard function. The MSDN says it is available on Windows XP and
6548         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6549         Huh?
6550
6551         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6552         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6553         ZombifyActCtx, QueryActCtxW): Add functions.
6554
6555         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6556         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6557         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6558         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6559
6560         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6561         SetFirmwareEnvironmentVariable[AW]): Add functions.
6562
6563         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6564         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6565         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6566         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6567         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6568
6569         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6570         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6571
6572         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6573         (ACTIVATION_CONTEXT_INFO_CLASS,
6574         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6575         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6576         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6577         Add structures.
6578
6579         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6580         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6581         SetFileShortName[AW], SetFileValidData,
6582         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6583         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6584
6585 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6586
6587         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6588         ResetWriteWatch): Add function.
6589
6590         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6591         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6592         Add functions.
6593
6594         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6595         (GetSystemWow64Directory[AW], HeapQueryInformation,
6596         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6597         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6598         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6599         RemoveVectoredExceptionHandler): Add functions.
6600
6601         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6602         Add enumeration.
6603
6604         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6605         Add function.
6606
6607         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6608         Add function. The MSDN Magazine of June 2003 reads:
6609                 RestoreLastError is an enigma. It's code is identical to
6610                 SetLastError. It's unclear to me why it was made into a
6611                 separate API.
6612
6613         * lib/user32.def (GetSystemWindowsDirectory[AW],
6614         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6615         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6616         InterlockedFlushSList, InterlockedPopEntrySList,
6617         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6618         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6619         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6620         RestoreLastError): Add functions.
6621
6622 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6623
6624         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6625         GetProcessIoCounters): Add functions.
6626
6627         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6628         Move around, needed by GetComputerNameEx.
6629
6630         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6631         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6632         Add functions.
6633
6634         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6635         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6636
6637         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6638         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6639         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6640         Windows XP SP1 and better.
6641
6642         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6643         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6644         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6645         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6646         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6647         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6648         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6649         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6650         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6651
6652         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6653         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6654         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6655         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6656         Add functions.
6657
6658 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6659
6660         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6661         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6662         DebugSetProcessKillOnExit): Add functions.
6663
6664         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6665         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6666         DnsHostnameToComputerName[AW]): Add functions.
6667
6668         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6669         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6670         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6671
6672 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6673
6674         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6675         on Windows XP and later.
6676
6677 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6678
6679         * include/commctrl.h (TreeView_Select): Returns BOOL.
6680
6681 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6682
6683         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6684
6685         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6686         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6687
6688         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6689         CreateTimerQueueTimer): Add function.
6690
6691         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6692         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6693
6694         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6695         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6696
6697         * include/winnt.h (WT_*): Add constants.
6698
6699         * lib/user32.def (CancelDeviceWakeupRequest,
6700         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6701         DeactivateActCtx): Add functions.
6702
6703 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6704
6705         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6706         Add function. Sometimes I don't understand MSDN. This function is
6707         available on Windows XP and Server 2003, but the SDK is supposed to
6708         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6709         Mmmh...
6710
6711         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6712         Guard function. Same remark as above.
6713
6714         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6715         Add functions.
6716
6717 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6718
6719         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6720         Add constants.
6721
6722         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6723         structures.
6724
6725         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6726         function. MSDN says the first argument is HACTCTX but I'm not sure
6727         where such a specialized handle is defined, so use HANDLE instead.
6728
6729         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6730         CheckNameLegalDOS8Dot3[AW]): Add functions.
6731
6732         * lib/user32.def (ActivateActCtx, AttachConsole,
6733         CheckNameLegalDOS8Dot3[AW]): Add functions.
6734
6735         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6736         Unfortunately I don't know which header to put the declarations in.
6737
6738 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6739
6740         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6741         Add constants.
6742
6743         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6744         constants for National Language Support.
6745
6746         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6747         Language Support.
6748
6749         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6750         Language Support.
6751
6752         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6753         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6754         Add functions.
6755
6756         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6757         functions. Strange... I am unable to find which library contains
6758         these functions. Can't find anything with pexports. Any clue?
6759
6760         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6761         SetUserGeoID): Add functions.
6762
6763 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6764
6765         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6766         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6767
6768         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6769         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6770         value for constants.
6771
6772 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6773
6774         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6775         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6776         the algorithms.
6777
6778 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6779
6780         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6781
6782 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6783
6784         * include/wincrypt.h (KP_*): Add constants. Needed by
6785         CryptSetKeyParam() and other functions.
6786
6787 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6788
6789         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6790         Add constants, related to Console Accessibility.
6791
6792 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6793
6794         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6795         wrong value for constant.
6796
6797 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6798
6799         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6800
6801         * include/uxtheme.h: Cleanup.
6802         * include/tmschema.h: Cleanup.
6803
6804 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6805
6806         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6807         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6808
6809 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6810
6811         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6812
6813 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6814
6815         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6816         both winuser.h and dbt.h.
6817         * include/dbt.h (BSF_*, BSM_*): Likewise.
6818
6819         * include/winuser.h (struct tagRAWINPUT): Remove
6820         _ANONYMOUS_UNION tag from named union.
6821         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6822
6823 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6824
6825         * include/dhcpcdsk.h: New file.
6826         Note that MSDN is confused about whether it should start constant
6827         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6828         experience suggests it's DHCPCAPI with `C'.
6829
6830         * lib/dhcpcsvc.def: New file.
6831
6832 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6833
6834         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6835         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6836
6837         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6838         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6839         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6840         for use in RAWINPUTDEVICE.
6841
6842         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6843         (GetRawInputDeviceInfo[AW]): Ooops... there are
6844         ANSI/Unicode versions of this function.
6845
6846         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6847         are ANSI/Unicode versions of this function.
6848
6849 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6850
6851         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6852         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6853         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6854         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6855         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6856         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6857         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6858         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6859         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6860         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6861         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6862         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6863         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6864         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6865         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6866         RIDI_DEVICEINFO): Add constants.
6867
6868         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6869         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6870         RAWINPUTDEVICELIST): Add structures.
6871
6872         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6873         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6874         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6875
6876         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6877         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6878         GetRegisteredRawInputDevices): Add functions.
6879
6880 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6881
6882         * include/winable.h (BlockInput): Add function.
6883
6884         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6885         For use with WINDOWINFO structure.
6886
6887         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6888         Add function.
6889
6890         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6891         Add function.
6892
6893         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6894         Add function...
6895
6896         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6897         ...and duplicate.
6898
6899         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6900         Guard function...
6901
6902         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6903         ...and duplicate.
6904
6905         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6906         Guard function...
6907
6908         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6909         ...and duplicate.
6910
6911         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6912         HARDWAREINPUT, INPUT): Guard structures...
6913
6914         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6915         HARDWAREINPUT, INPUT): ...and duplicate.
6916
6917         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6918         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6919
6920         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6921         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6922
6923         * include/winuser.h: Move around some lines. Reformat according
6924         to recommended or dominant style. Remove FAR keyword.
6925
6926         * include/winable.h: Move around some lines.
6927
6928         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6929         LockWorkStation, UnhookWinEvent): Add functions.
6930
6931 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6932
6933         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6934         PW_CLIENTONLY): Add function and constant.
6935
6936         * lib/user32.def (PrintWindow): Add function.
6937
6938 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6939
6940         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6941
6942         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6943
6944 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6945
6946         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6947         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6948         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6949
6950         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6951
6952 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6953
6954         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6955         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6956         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6957
6958         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6959         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6960         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6961
6962         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6963         Add function.
6964
6965         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6966         Add functions.
6967
6968 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6969
6970         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6971         ACE_OBJECT_TYPE_PRESENT): Add constants.
6972         For use with OBJECTS_AND_NAME structure.
6973
6974 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6975
6976         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6977         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6978         void* instead.
6979
6980         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6981         PINHERITED_FROM[AW]): Add structures.
6982
6983         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6984
6985 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6986
6987         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6988
6989 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6990
6991         * lib/version.def (LIBRARY): Quote name.
6992
6993 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6994
6995         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6996         and constants.
6997
6998         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6999         GR_USEROBJECTS): Add functions and constants.
7000
7001         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
7002         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
7003
7004         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
7005         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
7006         constants.
7007
7008         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
7009         GetMouseMovePointsEx, InSendMessageEx): Add functions.
7010
7011 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7012
7013         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
7014         BroadcastSystemMessageW, BroadcastSystemMessageEx,
7015         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7016         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
7017         BSF_RETURNHDESK): Add functions and constants.
7018
7019         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
7020         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
7021
7022         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
7023         GetProcessDefaultLayout, SetProcessDefaultLayout,
7024         RealChildWindowFromPoint, SetProcessDefaultLayout,
7025         SwitchToThisWindow): Add functions.
7026
7027         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
7028         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7029         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
7030         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
7031         RealChildWindowFromPoint, SetProcessDefaultLayout,
7032         SwitchToThisWindow): Add function.
7033
7034 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7035
7036         * include/winuser.h (DeregisterShellHookWindow): Add function.
7037
7038         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
7039
7040         * lib/user32.def (EndTask): Add function.
7041
7042         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
7043         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
7044
7045         * include/winable.h: Reorder target macros.
7046
7047         * lib/*.def: Cleanup.
7048
7049 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7050
7051         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
7052         function.
7053
7054         * lib/user32.def (AnimateWindow): Add function. By the way
7055         there are ~ 140 symbols missing from this file when comparing
7056         to user32.dll on Windows XP.
7057
7058 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7059
7060         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
7061         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
7062         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
7063         AnimateWindow().
7064
7065 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7066
7067         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
7068         LPGUITHREADINFO): Add function and associated typedef...
7069
7070         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
7071         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
7072         seems to be required on older versions of Windows.
7073
7074 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7075
7076         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
7077         function. MSDN suggests using gluErrorUnicodeStringWIN
7078         instead of gluErrorString, as it allows both ANSI and Unicode
7079         error strings.
7080
7081         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
7082         returned pointer const for consistency reasons.
7083
7084 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7085
7086         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
7087         Function exists in glu32.def but is undocumented on MSDN.
7088         A Google search came up with this declaration.
7089
7090 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7091
7092         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
7093         headers from OpenGL Sample Implementation. Windows ships with
7094         GLU 1.2 so some constants and functions were removed. Then some
7095         typedef's and function declarations were reworked to look like
7096         the previous GL/glu.h.
7097
7098 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7099
7100         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
7101         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
7102         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
7103
7104         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
7105         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
7106         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
7107         and `enum THEMESIZE'.
7108
7109 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7110
7111         * include/uxtheme.h: New file.
7112         * include/tmschema.h: New file.
7113         * include/uxtheme.def: New file.
7114         * lib/test.c: Include uxtheme.h, tmschema.h.
7115
7116 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7117
7118         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
7119         Add defines.
7120
7121 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7122
7123         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7124         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
7125         <winable.h> as seems to be required on older versions of
7126         Windows.
7127
7128 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7129
7130         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
7131         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7132         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
7133         Add defines, the last one only on Windows XP...
7134
7135         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
7136         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7137         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
7138         them in <winable.h> as seems to be required on older
7139         versions of Windows.
7140
7141 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7142
7143         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
7144         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7145         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7146         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
7147         back into <winuser.h>...
7148
7149         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
7150         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7151         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7152         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
7153         comment out in <winable.h>. MSDN may say <winable.h> but this
7154         breaks many programs. It seems it used to be <winable.h> on
7155         older versions of Windows.
7156
7157 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
7158
7159         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
7160         Thanks to Will Levine  <willll@users.sourceforge.net>
7161
7162 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7163
7164         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
7165         const struct sockaddr*.
7166         (LPWSPCONNECT): Likewise.
7167         (LPWSPJOINLEAF): Likewise.
7168         (LPWSPSENDTO): Likewise.
7169         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
7170
7171 2003-09-15  Filip Navara  <xnavara@volny.cz>
7172
7173         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
7174         Add definitions.
7175
7176 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
7177
7178         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
7179         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
7180         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
7181         DISPLAY_DEVICE_MODESPRUNED): Define constants.
7182         (ChangeDisplaySettingsEx[A,W]): Add prototype.
7183
7184         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
7185         (EnumDisplayDevices[A,W]): Likewise.
7186
7187 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7188
7189         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
7190         throughout.
7191
7192 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7193
7194         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7195         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7196         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7197         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7198         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
7199         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7200         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7201         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
7202         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7203         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7204         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7205         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7206         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
7207         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7208         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7209         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
7210         with documentation.
7211         * include/olectl.h: Do #include <ocidl.h>.
7212         * include/ocidl.h: Don't #include <olectl.h>.
7213
7214 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7215
7216         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
7217         Change guards to use numeric constants, throughout.
7218
7219 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
7220
7221         * include/w32api.h: Increment version to 2.5.
7222         * Makefile.in: Ditto.
7223
7224 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
7225
7226         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
7227         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
7228
7229 2003-09-08  Filip Navara  <xnavara@volny.cz>
7230
7231         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
7232         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
7233
7234 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
7235
7236         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
7237         * include/winbase.h (_NT5, etc): Ditto.
7238
7239 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7240
7241         * lib/snmpapi.def (LIBRARY) Add library name.
7242         Remove '\r', throughout.
7243         * lib/wsnmp32.def: Remove '\r', throughout.
7244         * lib/igmpagnt.def: Likewise.
7245
7246 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7247
7248         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7249         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7250         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7251         (MWMO_*): Add flags.
7252
7253         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7254         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7255         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7256         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7257
7258 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7259
7260         * lib/test.c: Add vfw.h to includes.
7261         * include/mmsystem.h: Add #ifndef guard to definition of
7262         mmioFOURCC macro.
7263         * include/vfw.h: Protect __OBJC__ from COM declarations.
7264
7265 2003-08-26  Filip Navara  <xnavara@volny.cz>
7266
7267         * include/vfw.h: New file.
7268
7269 2003-08-26  Filip Navara  <xnavara@volny.cz>
7270
7271         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7272         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7273         PIO_COMPLETION_ROUTINE.
7274
7275 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7276
7277         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7278         includes.
7279
7280 2003-08-26  Filip Navara  <xnavara@volny.cz>
7281
7282         * include/snmp.h: New file.
7283         * include/winsnmp.h: New file.
7284         * include/mgmtapi.h: New file.
7285         * lib/snmpapi.def: New file.
7286         * lib/wsnmp32.def: New file.
7287         * lib/igmpagnt.def: New file.
7288         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7289         (SnmpMgrGetTrapEx): Ditto.
7290         (SnmpMgrMIB2Disk): Remove.
7291         (dbginit): Remove.
7292
7293 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7294
7295         * include/ddk/ntifs.h: Change all C++ style comments to C.
7296         * include/GL/gl.h: Ditto.
7297
7298 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7299
7300         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7301         (SFGAO_HIDDEN): Add define.
7302
7303 2003-08-25  Filip Navara  <xnavara@volny.cz>
7304
7305         * include/commctrl.h (ILCF_*): Add defines.
7306         (ILD_*): Ditto.
7307         (HDS_*): Ditto.
7308         (IPN_FIRST, IPN_LAST): Cast to UINT.
7309         (SBN_FIRST, SBN_LAST): Add defines.
7310         (PGN_*): Ditto.
7311         (HDF_JUSTIFYMASK): Fix typo.
7312         (HDM_*): Add defines.
7313         (HICF_*): Ditto.
7314         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7315         (TBSTATE_MARKED): Add define.
7316         (TBSTYLE_EX_*): Add defines.
7317         (TBCDRF_*): Ditto.
7318         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7319         (TB_*): Ditto.
7320         (TBN_*): Ditto.
7321         (TBNRF_*): Ditto.
7322         (TTF_*): Ditto.
7323         (TBCD_*): Ditto.
7324         (TBDDRET_*): Ditto.
7325         (TBIMHT_*): Ditto.
7326         (TTM_*): Ditto.
7327         (UDM_*): Ditto.
7328         (TBIF_BYINDEX): Define as hex constant.
7329         (CDIS_*): Add defines.
7330         (CDDS_SUBITEM): Add define.
7331         (LVIF_*): Add defines.
7332         (LVM_*): Ditto.
7333         (LVGIT_UNFOLDED): Add define.
7334         (TVM_): Add defines.
7335         (TVE_EXPANDPARTIAL): Add define.
7336         (TVGN_LASTVISIBLE): Ditto.
7337         (TVN_*): Add defines.
7338         (TVNRET_*): Add defines.
7339         (TCIF_STATE): Add define.
7340         (NM_TOOLTIPSCREATED): Ditto.
7341         (CCM_*): Add defines.
7342         (INFOTIPSIZE): Add numeric value.
7343         (ODT_LISTVIEW): Ditto.
7344         (MCM_GETMAXTODAYWIDTH): Ditto.
7345         (MCHT_*): Add defines.
7346         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7347         (PGF_*): Add defines.
7348         (PGM_*): Ditto.
7349         (TBINSERTMARK): Add structure.
7350         (LPIMAGEINFO) Add typedef.
7351         (LPHDHITTESTINFO): Ditto.
7352         (NMLVGETINFOTIP[AW]: Add structures.
7353         (NMTBCUSTOMDRAW): Add structure.
7354         (TTTOOLINFOA_V*_SIZE): Add macros.
7355         (TTTOOLINFOW_V1_SIZE): Ditto.
7356         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7357         (LVITEM[AW]: Ditto.
7358         (TCITEM[AW]):Ditto.
7359         (CCSIZEOF_STRUCT): Correct macro definition.
7360         (ListView_*): Add new macros.
7361         (HIMAGELIST): Correct typedef.
7362         (HTREEITEM): Ditto.
7363
7364 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7365
7366         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7367         TCHITTESTINFO for backward compatibility.
7368         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7369         compatibility.
7370
7371 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7372
7373         * include/objidl.h (COBJMACROS): Define macros only
7374         if using C interace.
7375         * include/unknwn.h: Ditto.
7376         * include/comcat.h: Ditto.
7377
7378 2003-08-24  Filip Navara  <xnavara@volny.cz>
7379
7380         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7381         PSH_NOCONTEXTHELP): Define.
7382         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7383         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7384         (LPDLGTEMPLATE[AW]): Add typedefs.
7385
7386 2003-08-22  Filip Navara  <xnavara@volny.cz>
7387
7388         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7389         Add prototypes.
7390         BuildImpersonateTrustee[AW]): Add prototypes.
7391         GetMultipleTrustee[AW]): Add prototypes.
7392         GetMultipleTrusteeOperation[AW]): Add prototypes.
7393
7394 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7395
7396         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7397
7398 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7399
7400         * include/shlobj.h (IPersistFolder::GetClassID):
7401         Correct declaration.
7402         (CMF_*) Add missing defines.
7403
7404 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7405
7406         * include/winuser.h (DC_BUTTONS): Add define.
7407
7408 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7409
7410         * include/winuser.h (DC_GRADIENT): Add define.
7411
7412 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7413
7414         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7415         older TBSTYLE_* constants.
7416
7417 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7418
7419         * include/commctrl.h (TB_*) Group defines together.
7420
7421 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7422
7423         * include/winuser.h (ICON_SMALL2): Define.
7424         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7425         Define.
7426         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7427         (IDragSourceHelper) Define interface.
7428         (IDropTargetHelper): Likewise.
7429         (IExtractIcon): Unicode it.
7430         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7431         OnStateChange and IncludeObject methods.
7432
7433 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7434
7435         * include/commctrl.h (TreeView_GetScrollTime,
7436         TreeView_SetScrollTime): Define macros.
7437         * include/winuser.h (GetShellWindow): Add prototype.
7438         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7439
7440 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7441
7442         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7443         IID_IDragSourceHelper): Declare.
7444         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7445         IID_IDragSourceHelper): Define.
7446
7447 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7448
7449         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7450         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7451         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7452
7453 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7454
7455         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7456         CGID_ShellServiceObject): Remove definitions.
7457         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7458
7459 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7460
7461         * include/shlobj.h (SHELLSTATE): Add structure.
7462         (SHGetSetSettings): Add prototype.
7463         (SHGetSettings): Add prototype.
7464         * lib/shell32.def (SHGetSetSettings): Add stub.
7465
7466 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7467
7468         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7469         (Header_OrderToIndex): Add macro.
7470         (Header_GetOrderArray): Add macro.
7471
7472         * include/commdlg.h (FR_MATCHALEFHAMZA,
7473         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7474
7475 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7476
7477         * include/commctrl.h (TVM_GETSCROLLTIME,
7478         TVM_SETSCROLLTIME): Add defines.
7479
7480 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7481
7482         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7483         (SHGetInstanceExplorer): Correct return type.
7484         (SHGetFolderPath[AW]): Likewise.
7485         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7486         for report.
7487
7488 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7489
7490         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7491
7492 2003-08-01  Filip Navara  <xnavara@volny.cz>
7493
7494         * include/winldap.h: New file.
7495         * include/ntldap.h: New file.
7496         * include/winber.h: New file.
7497         * lib/winldap32.def: New file.
7498
7499 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7500
7501         * include/ddk/atm.h: Remove stray '.';
7502
7503 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7504
7505         * include/ddk/winddk.h: Remove trailing ';' from macros,
7506         throughout. Add () around defines with cast returns, throughout.
7507
7508 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7509
7510         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7511         (SFGAOF, SHGDNF): Add typedef's.
7512         (SHCONTF): Extend enum.
7513
7514 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7515
7516         * include/shellapi.h: Include all structs within pshpack2.h/
7517         poppack.h block.
7518
7519 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7520
7521         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7522         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7523         _WIN32_WINDOWS, not WINVER.
7524         (AllowSetForegroundWindow,LockSetForegroundWindow,
7525         SetLayeredWindowAttributes): Likewise.
7526         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7527         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7528         Add stubs.
7529
7530 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7531
7532         * include/objidl.h (IMalloc): Fix typo.
7533
7534 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7535
7536         * include/dkk/ntifs.h: Fix typo in guard for
7537         #pragma GCC system_header.
7538
7539 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7540
7541         * include/objidl.h (PropVariant): Add CHAR cVal field
7542         to union.
7543         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7544         FMTID_UserDefinedProperties): Declare.
7545
7546 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7547
7548         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7549
7550 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7551
7552         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7553         DUPLICATE_SAME_ACCESS): Remove defines.
7554         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7555         ddk/ntapi.h defines.
7556         (SEM_*) : Likewise.
7557         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7558         ddk/ntifs.h defines.
7559         (FILE_*): Likewise.
7560         (MEM_IMAGE, SEC_*): Likewise.
7561         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7562         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7563         (TOKEN_*): Sync with ddk/ntifs.h defines.
7564         * include/ddk/ntapi.h: Add comments noting definitions in
7565         winbase.h.
7566         * include/ddk/ntifs.h: Add comments noting definitions in
7567         winnt.h.
7568         * include/ddk/winddk.h: Add comments noting definitions in
7569         winnt.h.
7570
7571 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7572
7573         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7574         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7575
7576 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7577
7578         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7579
7580 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7581
7582         Clean up warnings in ddk.
7583
7584         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7585         conditional on  __cplusplus.
7586         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7587         defines, throughout.
7588         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7589         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7590         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7591         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7592         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7593         defines, throughout.
7594         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7595         defines, throughout. Remove trailing semicolon from *_S 'structure'
7596         macro expansion, throughout. Remove trailing semicolon from
7597         DECLARE_UNKNOWN_STRUCT macro expansion.
7598         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7599         _ANONYMOUS_UNION.
7600         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7601         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7602         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7603         Add _ANONYMOUS_UNION.
7604         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7605         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7606         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7607         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7608         match proto in ntapi.h.
7609         (ZwSetInformationObject): Likewise.
7610         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7611         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7612         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7613         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7614         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7615         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7616         last comma.
7617         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7618         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7619         trailing semicolon when expanding macro.
7620         (GENERAL_LOOKASIDE_S): Likewise.
7621         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7622         Change inline to __inline, throughout.
7623         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7624
7625 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7626
7627         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7628         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7629         KPRIORITY.
7630         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7631         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7632         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7633         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7634         to anonymous structs.
7635
7636 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7637
7638         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7639
7640         * include/winuser.h (mouse_event): Correct type of fifth param,
7641         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7642
7643 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7644
7645         * include/winnt.h (HANDLE): Define based on STRICT filter.
7646         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7647         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7648
7649 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7650
7651         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7652         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7653         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7654         for report.
7655
7656 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7657
7658         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7659
7660 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7661
7662         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7663         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7664         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7665         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7666         (TPM_RECURSE): Add guard for Win98/Win2K.
7667         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7668
7669 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7670
7671         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7672         avoid user namespace conflicts.
7673
7674 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7675
7676         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7677         _IE3, _IE4, _IE5, _IE6): Add definitions.
7678         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7679         >= Win98.
7680         Change existing guards to use the above macro names as appropriate.
7681         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7682         Note: Also added to mingw/include/_mingw.h.
7683
7684 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7685
7686         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7687         PathFindSuffixArrayA, PathFindSuffixArrayW,
7688         PathFindExtensionA, PathFindExtensionW, StrStrW
7689         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7690         explicit type.
7691
7692 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7693
7694         * include/richedit.h (PARAFORMAT2): Add definition.
7695         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7696         missing constants.
7697
7698 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7699
7700         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7701         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7702         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7703         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7704
7705 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7706
7707         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7708         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7709         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7710         that these are obsolete no-ops.
7711
7712 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7713
7714         * include/winbase.h (GetProcessWorkingSetSize,
7715         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7716         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7717         Correct prototypes.
7718
7719 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7720
7721         * include/winuser.h (TPM_RECURSE): Add define.
7722
7723 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7724
7725         * lib/test.c: #include <powrprof.h>.
7726
7727 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7728
7729         * include/powerprof.h: New file.
7730         * lib/powerprof.def: New file.
7731
7732 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7733
7734         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7735         protection.
7736
7737 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7738
7739         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7740         hInstance members to HINSTANCE.
7741         Thanks to: Brenden T. <brenden@rcsis.com>
7742
7743 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7744
7745         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7746         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7747
7748 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7749
7750         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7751         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7752         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7753         Remove.
7754         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7755
7756 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7757
7758         * lib/oleacc.def: New file.
7759         * include/winable.h: New file.
7760         * include/oleacc.h: Add extern "C" guard.
7761         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7762         (AccessibleChildren, AccessibleObjectFromEvent,
7763         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7764         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7765         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7766         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7767         * include/winuser.h (NotifyWinEvent): Add prototype.
7768         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7769         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7770         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7771         OBJID_SOUND): Move from here to...
7772         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7773         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7774         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7775         OBJID_SOUND): Here, as per documentation.
7776         * lib/test.c: Include winable.h.
7777         * lib/user32.def (NotifyWinEvent): Add missing export.
7778
7779 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7780
7781         * include/winbase.h (HeapCompact): Correct prototype.
7782         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7783         SLIST_HEADER): Add.
7784
7785 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7786
7787         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7788
7789 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7790
7791         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7792
7793 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7794
7795         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7796         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7797
7798 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7799
7800         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7801         lpGlyphs field to LPWSTR.
7802
7803 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7804
7805         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7806         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7807         (PP_*): Add defines.
7808         (CryptContextAddRef): Add prototype.
7809         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7810
7811 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7812
7813         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7814
7815 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7816
7817         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7818         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7819         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7820         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7821         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7822         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7823         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7824         readability.
7825         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7826         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7827
7828 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7829
7830         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7831         Unname anonymous unions if NONAMELESSUNION not defined.
7832
7833 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7834
7835         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7836
7837 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7838
7839         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7840         anonymous unions as GCC extension.
7841
7842 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7843
7844         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7845         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7846         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7847         commented out).
7848         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7849
7850 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7851
7852         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7853         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7854         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7855
7856 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7857
7858         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7859         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7860         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7861         IProvideClassInfo2,IConnectionPointContainer,
7862         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7863         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7864         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7865         IPicture,IPictureDisp): Move from here to...
7866         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7867         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7868         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7869         IProvideClassInfo2,IConnectionPointContainer,
7870         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7871         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7872         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7873         IPicture,IPictureDisp): Here, as per documentation.
7874
7875 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7876
7877         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7878         * include/winbase.h (TerminateJobObject,
7879         AssignProcessToJobObject): Likewise.
7880         * include/servprov.h: New header.
7881         * lib/test.c: Include servprov.h.
7882
7883 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7884
7885         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7886         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7887         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7888         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7889         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7890         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7891
7892 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7893
7894         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7895         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7896         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7897
7898 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7899
7900         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7901         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7902         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7903         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7904         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7905         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7906         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7907
7908 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7909
7910         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7911
7912 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7913
7914         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7915         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7916
7917 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7918
7919         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7920         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7921         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7922
7923 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7924
7925         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7926
7927 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7928
7929         * include/oaidl.h (ITypeMarshal): Add interface.
7930
7931 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7932
7933         * include/winioctl.h: Clean up formatting.
7934         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7935         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7936         (DISK_CACHE_INFORMATION): Likewise.
7937         (DISK_DETECTION_INFO): Likewise.
7938         (DISK_PARTITION_INFO): Likewise.
7939         (PARTITION_INFORMATION_EX): Likewise.
7940         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7941
7942 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7943
7944         * include/winbase.h (DeleteVolumeMountPoint[AW],
7945         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7946         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7947         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7948         SetVolumeMountPoint[AW]): Add prototypes.
7949         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7950         IOCTL_DISK_SET_PARTITION_INFO_EX,
7951         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7952         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7953         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7954         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7955         IOCTL_DISK_GET_CACHE_INFORMATION,
7956         IOCTL_DISK_SET_CACHE_INFORMATION,
7957         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7958         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7959         FSCTL_MOVE_FILE): Define.
7960         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7961         DISK_CACHE_INFORMATION,
7962         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7963         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7964         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7965         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7966         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7967         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7968         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7969         MOVE_FILE_DATA,
7970         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7971         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7972         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7973         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7974         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7975         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7976         F3_240M_512, and F3_32M_512.
7977         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7978         stubs.
7979
7980 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7981
7982         * include/wingdi.h (DM_SPECVERSION): Define.
7983         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7984         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7985         appropriate _WIN32_WINNT values.
7986
7987 2003-04-15  Chris January  <chris@atomice.net>
7988
7989         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7990         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7991
7992 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7993
7994         * include/winuser.h (VK_*): Add missing defines.
7995
7996 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7997
7998         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7999         documented typedefs for struct _NM_UPDOWN.
8000         Add defines for backward comapatibility.
8001         * include/commdlg.h (OFN_ENABLESIZING): Add define.
8002         * include/wininet.h (IRF_*): Add missing defines.
8003
8004 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
8005
8006         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
8007
8008 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
8009
8010         * include/sspi.h: Add comment for FreeCredentialsHandle.
8011
8012 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
8013
8014         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
8015
8016 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
8017
8018         * include/olectl.h (OleLoadPicturePath): Correct prototype.
8019
8020 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
8021
8022         * lib/uuid.c (IID_IHTML*): Move definitions to...
8023         * lib/mshtml-uuid.c: New file.
8024         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
8025
8026 2003-03-30  Michael Sazonov  <traip@comset.net>
8027
8028         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
8029         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
8030         IHTMLImgElement): Add interface definitions.
8031
8032 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
8033
8034         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
8035         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
8036         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
8037         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
8038         RC_INVOKED guard.
8039         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
8040         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
8041
8042 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
8043
8044         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
8045
8046 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
8047
8048         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
8049         TranslateName[AW]): Add prototypes.
8050         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
8051         TranslateName[AW]): Add stubs.
8052         * lib/test.c: Include secext.h.
8053
8054 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
8055
8056         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
8057         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
8058         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
8059         _SpinLock.
8060
8061 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
8062
8063         * include/w32api.h: Increment version to 2.4.
8064         * Makefile.in: Ditto.
8065
8066 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
8067
8068         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
8069         Move structure from here...
8070         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
8071
8072         * include/ddk/ntapi.h (JOBOBJECT_*):
8073         Remove structures and enums definitions.
8074         (JOB_OBJECT*): Move defines from here...
8075         * include/winnt.h (JOB_OBJECT* ): To here.
8076
8077         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
8078         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8079         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8080         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8081         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8082         SYSTEM_POWER_CAPABILITIES): Move enums, structures
8083         and associated defines from here ...
8084         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
8085         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8086         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8087         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8088         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8089         SYSTEM_POWER_CAPABILITIES):To here.
8090
8091         * include/ddk/winddk.h (DEVICE_POWER_STATE,
8092         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
8093         from here...
8094         * include/winnt.h (DEVICE_POWER_STATE,
8095         SYSTEM_POWER_STATE, POWER_ACTION): To here.
8096
8097 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
8098
8099         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
8100         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
8101         (NdisUpdateSharedMemory): Likewise.
8102         (NdisMFreeSharedMemory: Likewise.
8103         (NdisMMapIoSpace: Likewise.
8104
8105 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
8106
8107         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
8108         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
8109         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
8110
8111 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
8112
8113         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
8114         (EnumResourceNames[AW]): Ditto.
8115         (EnumResourceTypes[AW]): Ditto.
8116         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
8117
8118 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
8119
8120         * include/winuser.h (SendInput): Add prototype.
8121         * lib/user32.def (SendInput): Add stub.
8122
8123 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
8124
8125         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
8126         (FSCTL_DELETE_REPARSE_POINT): Likewise.
8127
8128 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
8129
8130         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
8131         (JOBOBJECT_*): Define corresponding structures.
8132
8133 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
8134
8135         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
8136         typedef.
8137
8138 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
8139
8140         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
8141         (Process32{First,Next}{,W}): Ditto.
8142         (Thread32{First,Next}): Ditto.
8143         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
8144
8145 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
8146
8147         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
8148         Thanks to Jim Barton <jmbarton@users.sf.net>.
8149
8150 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
8151
8152         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
8153         member SectionAlignment.
8154
8155 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
8156
8157         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
8158         warnings.
8159         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
8160         * Makefile.in (bindist): Correct process.
8161         * lib/Makefile.in (install): Ditto.
8162         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
8163
8164 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
8165
8166         * include/rasdlg.h: New file.
8167         * lib/rasdlg.def: New file.
8168         * lib/test.c: Include rasdlg.h.
8169
8170 2003-03-06  Christopher January  <chris@atomice.net>
8171
8172         * include/winbase.h (FindFirstVolume): Add declaration.
8173         (FindNextVolume): Add declaration.
8174         (FindVolumeClose): Add declaration.
8175         (GetSystemTimes): Add declaration.
8176         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
8177
8178 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
8179
8180         *lib/kernel32.def (GetSystemTimes): Add stub.
8181
8182 2003-03-04  Heiko Gerdau  <hg@technosis.de>
8183
8184         * oleidl.h (IOleObject): Correct GetUserType prototype.
8185         (IViewObject2): Correct GetExtent prototype.
8186         * olectl.h (DISPIP_): Add new defines
8187         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
8188
8189 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8190
8191         * include/olectl.h (OleLoadPictureEx) Add prototype.
8192         (OleLoadPictureFile): Ditto.
8193         (OleLoadPictureFileEx): Ditto.
8194         (OleLoadPicturePath): Ditto.
8195         (OleSavePictureFile): Ditto.
8196
8197 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8198
8199         * include/objbase.h (CoAddRefServerProcess): Add prototype.
8200         (CoAddReleaseServerProcess): Ditto.
8201         (CoResumeClassObjects): Ditto.
8202         (CoSuspendClassObjects): Ditto.
8203         * include/oleauto.h (V_I1): Define.
8204         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
8205
8206 2003-03-01  Heiko Gerdau  <hg@technosis.de>
8207
8208         * include/oleidl.h (USERCLASSTYPE): Add enum.
8209         * include/ocidl.h (IObjectWithSite): Add interface.
8210
8211 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
8212
8213         Fixup UNICODE thinko in 2003-02-22 patch.
8214         * include/wingdi.h (AddFontMemResourceEx): Add.
8215         (RemoveFontMemResourceEx): Ditto.
8216         (AddFontMemResourceEx[AW]): Remove.
8217         (RemoveFontMemResourceEx[AW]): Ditto
8218         * lib/gdi32.def: (AddFontResourceEx): Add.
8219         (RemoveFontMemResourceEx): Ditto.
8220         (AddFontMemResourceEx[AW]): Remove.
8221         (RemoveFontResourceEx[AW]): Ditto.
8222
8223 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
8224
8225         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
8226         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
8227
8228 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
8229
8230         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
8231         (RemoveFontMemResourceEx[AW]): Ditto
8232         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
8233         (RemoveFontMemResourceEx[AW]): Ditto.
8234
8235 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
8236
8237         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
8238         (NtCurrentTeb): Remove.
8239
8240 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8241
8242         * include/wsahelp.h: Remove ';' after closing
8243         #ifdef __cplusplus brace.
8244         * include/ws2spi.h: Likewise.
8245
8246 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8247
8248         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8249         (GlobalMemoryStatusEx): Add prototype.
8250         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8251
8252 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8253
8254         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8255
8256 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8257
8258         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8259         (RemoveFontResourceEx[AW]): Ditto
8260         (FR_PRIVATE): Define.
8261         (FR_NOT_ENUM): Define.
8262         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8263         (RemoveFontResourceEx[AW]): Ditto.
8264
8265 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8266
8267         * include/w32api.h: Increment version to 2.3.
8268         * Makefile.in: Ditto.
8269
8270 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8271
8272         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8273         (Ke386QueryToAccessMap): Ditto.
8274         (Ke386SetIoAccessMap): Ditto.
8275         Thanks to Marcel Telka <telka@users.sf.net>
8276         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8277         * include/security.h: Include secext.h.
8278         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8279         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8280         * include/GL/gl.h: Remove include of glext.h.
8281         Thanks to Greg Couch <gregcouch@users.sf.net>
8282
8283 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8284
8285         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8286         using GUID_DEFINED instead.
8287         * include/sqltypes.h: Ditto.
8288         * include/winnt.h: Ditto.
8289         * include/ddk/scsiwmi.h: Ditto.
8290
8291 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8292
8293         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8294         prototypes.
8295         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8296
8297 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8298
8299         * include/commctrl.h (TCM_*): Add missing defines.
8300
8301 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8302             Danny Smith  <dannysmith@users.sourceforge.net>
8303
8304         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8305         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8306         for (_WIN32_IE >= 0x0400).
8307         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8308         fields for (_WIN32_IE >= 0x0400).
8309
8310 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8311
8312         * include/winbase.h (CreateFiber): Change first parameter
8313         to SIZE_T.
8314         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8315         if (_WIN32_WINNT >= 0x0500).
8316
8317 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8318
8319         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8320         Add missing typedefs.
8321         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8322         prototypes.
8323         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8324
8325 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8326
8327         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8328         define.
8329         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8330
8331 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8332
8333         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8334         define.
8335         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8336         definition.
8337         (WAIT_FAILED): Cast to DWORD.
8338         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8339         definition.
8340
8341 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8342
8343         * include/winerror.h: Protect against multiple
8344         definition of WSA* error codes.
8345         * include/winsock.h: Likewise.
8346         * include/winsock2.h: Likewise.
8347
8348 2003-01-27  Bang Dong-Heui
8349             Bang Jun-Young  <junyoung@netbsd.org>
8350
8351         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8352         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8353         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8354
8355
8356 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8357
8358         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8359         (WINVER >= 0x501).
8360
8361 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8362
8363         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8364         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8365         fields for (WINVER >= 0x501).
8366
8367 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8368
8369         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8370         Add stubs.
8371         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8372         options.
8373
8374 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8375
8376         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8377         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8378
8379 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8380
8381         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8382         SE_REGISTRY_WOW64_32KEY.
8383         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8384
8385 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8386
8387         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8388         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8389         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8390
8391 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8392
8393         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8394
8395 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8396
8397         * lib/dxguid.c: Don't #include <objbase.h>.
8398         * include/unknwn.h: Partially revert change of 2002-12-26.
8399         Don't include <ole2.h>.
8400
8401 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8402
8403         * lib/dinput.c: Don't #include <objbase.h>.
8404
8405 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8406
8407         * include/windows.h (ole2.h):Do #include for
8408         __WATCOMC__.
8409
8410 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8411
8412         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8413         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8414         definition.
8415         (WHEEL_PAGESCROLL): Likewise.
8416         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8417
8418 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8419
8420         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8421         (WHEEL_PAGESCROLL): Add define.
8422
8423 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8424
8425         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8426         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8427         compatability. Add RECT field. Add UNICODE mappings for new
8428         names.
8429         (tagNMREBARCHEVRON): Add struct and typedefs for
8430         _WIN32_IE >= 0x0500.
8431
8432 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8433
8434         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8435         (LVHITTESTINFO): Likewise.
8436
8437         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8438         (GRADIENT_RECT): Likewise.
8439
8440 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8441
8442         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8443         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8444         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8445         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8446         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8447         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8448         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8449         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8450         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8451         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8452         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8453         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8454         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8455         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8456         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8457         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8458         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8459         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8460         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8461         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8462         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8463         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8464         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8465         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8466         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8467         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8468         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8469         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8470         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8471         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8472         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8473         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8474         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8475         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8476         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8477         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8478         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8479         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8480         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8481         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8482         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8483         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8484         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8485         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8486         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8487         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8488         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8489         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8490         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8491         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8492         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8493         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8494         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8495         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8496         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8497         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8498         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8499         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8500         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8501         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8502         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8503         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8504         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8505         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8506         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8507         Add missing error codes.
8508
8509 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8510
8511         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8512         asm code.
8513         (GetFiberData): Likewise.
8514
8515 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8516
8517         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8518         asm code.
8519         (GetFiberData): Likewise.
8520
8521 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8522
8523         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8524         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8525         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8526         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8527         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8528         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8529         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8530         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8531         error codes.
8532         Re-sort codes.
8533
8534 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8535
8536         * include/winspool.h (PRINTER_INFO_6): Add.
8537         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8538
8539 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8540
8541         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8542
8543         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8544         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8545         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8546         Add stubs.
8547
8548 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8549
8550         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8551         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8552
8553 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8554
8555         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8556
8557 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8558
8559         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8560         VIETNAMESE_CHARSET): Remove duplicate defines.
8561         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8562
8563 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8564
8565         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8566         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8567
8568 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8569
8570         * include/unknwn.h: Include windows.h and ole2.h before header
8571         guard to avoid circular inclusion of COM headers.
8572
8573 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8574
8575         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8576         ReuseDDElParam): Use __WIN64 compatible typedefs.
8577
8578 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8579
8580         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8581         lpInheritProperty member const.
8582         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8583         const.
8584
8585 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8586
8587         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8588         COM_NO_WINDOWS_H.
8589         * include/unknwn.h: Ditto.
8590
8591 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8592
8593         * include/imm.h (ImmGetCompositionFont[AW],
8594         ImmSetCompositionFont[AW]): Add NOGDI guard.
8595
8596 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8597
8598         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8599         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8600         before using.
8601         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8602         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8603         definition.
8604         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8605         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8606         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8607         definition.
8608         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8609         (LPCGUID): Likewise.
8610         * include/ddk/tdi.h: Close "Listen flags" comment.
8611         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8612         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8613         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8614         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8615         * include/ddk/win2k.h: Likewise.
8616         * include/ddk/winddi.h: Likewise.
8617         * include/ddk/winddk.h: Likewise.
8618         * include/ddk/winnt4.h: Likewise.
8619         * include/ddk/ws2san.h: Likewise.
8620         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8621         * include/ddk/video.h: Don't process rest of file ifdef
8622         __WINDDI_H.
8623         * include/ddk/winddi.h: Don't process rest of file ifdef
8624         __VIDEO_H.
8625         * include/ddk/usb.h: Don't process rest of file ifdef
8626         __USBDI_H.
8627         * include/ddk/usbdi.h: Don't process rest of file ifdef
8628         __USB_H.
8629         * include/ddk/usbcamdi.h: Don't process rest of file if
8630         !defined(__USB_H) && !defined(__USBDI_H)
8631
8632 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8633
8634         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8635         prototypes.
8636         * include/winuser.h (GetAncestor) Add prototype.
8637         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8638         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8639         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8640         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8641         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8642         defines.
8643         * lib/user32.def (GetAncestor@8): Add stub.
8644
8645 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8646
8647         * include/windows.h: Guard inclusion of wingdi.h,
8648         commdlg.h, winspool.h, ole2.h with NOGDI.
8649         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8650         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8651         Guard with NOGDI.
8652
8653 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8654
8655         * include/oleacc.h (SELFLAG_*): Change to enum.
8656
8657 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8658
8659         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8660         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8661
8662 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8663
8664         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8665         to UINT.
8666         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8667
8668 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8669
8670         * include/winuser.h (AllowSetForegroundWindow,
8671         LockSetForegroundWindow): Add prototypes.
8672         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8673         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8674         * lib/winuser.def (AllowSetForegroundWindow,
8675         LockSetForegroundWindow): Add stubs.
8676
8677 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8678
8679         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8680         UNICODE mappings.
8681         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8682         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8683         compatability. Add lParam field. Add UNICODE mappings for new
8684         names.
8685
8686 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8687
8688         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8689         Wrap with pshpack2.h/poppack.h to correct alignment.
8690
8691 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8692
8693         * include/commctrl.h (LVBKIF_*): Add defines.
8694         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8695         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8696         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8697         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8698         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8699         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8700         (ListView_GetBkImage): Add define.
8701         (ListView_SetBkImage): Add define.
8702         (LVBKIMAGE): Add structures and typedefs.
8703
8704 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8705
8706         * include/w32api.h: Increment to version 2.2
8707         * Makefile.in: Ditto.
8708
8709 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8710
8711         * lib/Makefile.in (dist, install): Correct the install destinations.
8712         * lib/ddk/Makefile.in (dist, install): Ditto.
8713
8714 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8715
8716         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8717         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8718         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8719         in definitions.
8720         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8721         IID_IOleControlSite89): Remove.
8722
8723 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8724
8725         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8726         (IID_IStdMarshalInfo): Ditto.
8727
8728 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8729
8730         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8731         (IID_IPersistStorage): Ditto.
8732
8733 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8734
8735         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8736         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8737         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8738         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8739         Correct definitions.
8740
8741 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8742
8743         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8744         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8745         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8746         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8747         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8748         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8749         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8750         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8751         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8752         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8753         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8754         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8755         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8756         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8757         xfilter.h): Change comment to refer w32api package, not MinGW.
8758
8759 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8760
8761         * include/ddk/ntddk.h: Include winnt.h as system header.
8762
8763 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8764
8765         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8766         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8767         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8768         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8769         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8770         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8771         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8772         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8773         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8774         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8775         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8776         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8777         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8778         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8779         xfilter.h): Fix typo in disclaimer comment.
8780
8781 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8782
8783         * include/exdisp.h: Include oaidl.h as system header.
8784
8785 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8786
8787         * include/w32api.h (__W32API_VERSION): Fix.
8788
8789 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8790
8791         * lib/uuid.c (IID_ICatInformation): Correct definition.
8792
8793 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8794
8795         * include/oleauto.h (DeregisterTypeLib): Remove.
8796         (UnRegisterTypeLib): Add prototype.
8797
8798 2002-11-07  Christopher January  <chris@atomice.net>
8799
8800         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8801
8802 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8803
8804         * include/winnt.h (VerSetConditionMask): Add prototype.
8805         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8806
8807 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8808
8809         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8810         definitions and ANSI/UNICODE mappings.
8811         Cleanup whitespace.
8812
8813 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8814
8815         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8816         * configure.in: Ditto.
8817         * lib/Makefile.in: Ditto.
8818         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8819         autoconf-2.53.
8820         * configure: Regenerate.
8821
8822 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8823
8824         * include/windows.h: Don't include basetyps.h.
8825         * include/objfwd.h: Do include basetyps.h.
8826
8827 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8828
8829         * include/objbase.h: Include rpc.h and rpcndr.h
8830         before header guard.
8831
8832 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8833
8834         * include/olectl.h (PROPPAGEINFO): Change type of
8835         field cb to ULONG.
8836
8837 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8838
8839         * lib/ntdll.def (RtlAcquireResourceExclusive,
8840         RtlAcquireResourceShared, RtlDeleteResource,
8841         RtlInitializeResource, RtlReleaseResource,
8842         RtlTimeToSecondsSince1970) : Added missing exports.
8843
8844 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8845
8846         * include/oleacc.h: New file.
8847         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8848         (OBJID_*) Add defines.
8849         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8850         * lib/test.c: Include oleacc.h.
8851
8852 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8853
8854         * include/ddk: New subdir.
8855         * lib/ddk: Ditto.
8856         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8857         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8858         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8859         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8860         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8861         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8862         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8863         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8864         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8865         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8866         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8867         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8868         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8869         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8870         xfilter.h): New files.
8871         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8872         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8873         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8874         win32k.def): Ditto.
8875
8876 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8877
8878         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8879         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8880         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8881         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8882         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8883         RtlAddAccessAllowedAce, RtlCreateAcl,
8884         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8885         RtlGetAce, RtlGetControlSecurityDescriptor,
8886         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8887         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8888         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8889         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8890         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8891         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8892         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8893         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8894         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8895         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8896         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8897         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8898         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8899
8900 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8901
8902         *include/windef.h (WPARAM): Update typedef.
8903         (LPARAM): Ditto.
8904         (LRESULT): Ditto.
8905
8906 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8907
8908         * include/shlobj.h (CSIDL_*): Add defines.
8909
8910 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8911
8912         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8913         has been included first.
8914
8915 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8916
8917         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8918         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8919         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8920
8921 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8922
8923         * include/winuser.h (DS_SHELLFONT): Define.
8924
8925 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8926
8927         * include/winnt.h (VER_SUITE_BLADE): Define.
8928
8929 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8930
8931         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8932         Add _WIN32_IE guard. Correct prototype for wide version.
8933         (SHGetFolderPath): Add comment on shfolder.dll.
8934         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8935         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8936
8937 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8938
8939         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8940         * lib/shfolder.def: New file.
8941
8942 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8943
8944         * include/winsock.h (timeval): Guard struct and associated
8945         macros with _TIMEVAL_DEFINED.
8946         * include/winsock2.h (timeval): Likewise.
8947
8948 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8949
8950         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8951         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8952         SHCreateShellItem,SHEmptyRecycleBin[AW],
8953         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8954         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8955         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8956         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8957         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8958         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8959         SHLoadNonloadedIconOverlayIdentifiers,
8960         SHOpenFolderAndSelectItems,SHParseDisplayName,
8961         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8962         SHSetLocalizedName,SHSetUnreadMailCountW,
8963         SHUpdateRecycleBinIcon: Add missing stubs.
8964
8965 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8966
8967         * include/windef.h (WINVER): Add documentation.
8968         (_WIN32_WINNT): Ditto.
8969         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8970
8971 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8972
8973         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8974
8975 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8976
8977         * include/winbase.h (AllocateUserPhysicalPages,
8978         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8979         FreeUserPhysicalPages): Add prototypes.
8980         * lib/kernel32.def: Add function stubs for above.
8981
8982 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8983
8984         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8985         Add WINVER guards for dialog box command id defines.
8986
8987 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8988
8989         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8990
8991 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8992
8993         * include/wincon.h: Define GetConsoleWindow(void).
8994
8995 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8996
8997         * include/w32api.h: Increment version to 2.1.
8998         * Makefile.in: Ditto.
8999
9000 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
9001
9002         * include/winsock2.h (SOCKET_ADDRESS): Define if
9003         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
9004         (CSADDR_INFO): Ditto.
9005         (nspapi.h) : Don't include. Removed FIXME comment.
9006         * include/nspapi.h (SOCKET_ADDRESS) Only define if
9007         __CSADDR_T_DEFINED is not defined.
9008         (CSADDR_INFO): Ditto.
9009         (BLOB): Add structure and typedef if not already defined.
9010         (NS_*): Add defines.
9011         (SERVICE_*): Ditto.
9012         (SERVICE_ADDRESS): Add structure and typedefs.
9013         (SERVICE_ADDRESSES): Ditto.
9014         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
9015         (LPSERVICE_ASYNC_INFO): Add typedef.
9016         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
9017         mappings.
9018         * include/wsipx.h: New file.
9019         * include/svcguid.h: New file.
9020         * lib/test.c: Include wspix.h and svcguid.h.
9021
9022 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9023
9024         * include/wsahelp.h: New file.
9025         * lib/test.c: Include wsahelp.h.
9026
9027 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
9028
9029         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
9030         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
9031
9032 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9033
9034         * include/ws2spi.h: Modify comment about being part of
9035         mingw32 package.
9036         (winsock2.h): Change "" to <>.
9037
9038 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9039
9040         * include/ws2spi.h: New file.
9041         * lib/test.c: Include ws2spi.h.
9042
9043 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9044
9045         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
9046         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
9047         functions.
9048
9049 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9050
9051         * include/winuser.h (CURSOR_SHOWING) Add define.
9052         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
9053
9054 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9055
9056         * include/winerror.h: Cast OLE error codes to HRESULT.
9057         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
9058
9059 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9060
9061         * include/wincrypt.h (ALG_*): Add defines.
9062         (CALG_*): Ditto.
9063         (CRYPT_*): Ditto.
9064         (PP_*): Ditto.
9065         (PROV_*): Ditto.
9066         (PRIVATEKEYBLOB): Add define.
9067
9068 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
9069
9070         * include/shlobj.h (SHGetFolderPath): Add define.
9071         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
9072         (SHGetFolderPath): Ditto.
9073
9074 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9075
9076         * include/commdlg.h: Don't include COM headers or use
9077         COM-dependent symbols if __OBJC__.
9078
9079 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9080
9081         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
9082         Add prototypes.
9083
9084 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
9085
9086         * include/shellapi.h (FOF_NOERRORUI): Add define.
9087
9088 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
9089
9090         * include/objidl.h (IEnumMoniker): Put 'interface' back.
9091
9092 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
9093
9094         * include/objidl.h (IEnumMoniker): Correct declaration.
9095
9096 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
9097
9098         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
9099
9100 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
9101
9102         * include/commctrl.h: Whitespace change.
9103
9104 2002-08-09  Lars Munch  <lars@segv.dk>
9105
9106         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
9107         struct name _TVHITTESTINFO and typedefs and add defines for
9108         backward compatability.
9109         (ListView_SetExtendedListViewStyleEx): Add macro.
9110
9111 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
9112
9113         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
9114         Add prototypes.
9115         * lib/msimg32.def: New file, with stubs for above.
9116
9117 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
9118
9119         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
9120         GetFileSizeEx, SetFilePointerEx): Add prototypes.
9121         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
9122         and UNICODE mappings.
9123
9124 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9125
9126         * include/winbase.h (ReadFileScatter, WriteFileGather):
9127         Change second parameter to pointer.
9128
9129 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
9130
9131         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
9132         UNICODE mappings.
9133         * lib/wininet.def: Regenerate.
9134
9135 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9136
9137         * include/windef.h (PVOID): Move typedef to...
9138         * include/winnt: ...here.
9139         (PVOID64): New typedef.
9140
9141         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
9142         * include/winbase.h (ReadFileScatter, WriteFileGather):
9143         Add prototypes.
9144
9145         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
9146         (PROCESSOR_INTEL_IA64): Add define.
9147
9148 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9149
9150         * include/oleidl.h (MK_ALT): Define.
9151
9152 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9153
9154         * include/exdisp.h: New file.
9155         * include/exdispid.h: New file.
9156         * include/mshtml.h: New file.
9157         * lib/test.c: #include exdisp.h and mshtml.h
9158         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
9159         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
9160         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
9161         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
9162         New GUIDs.
9163
9164 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9165
9166         * include/docobj.h: New file.
9167         * include/idispids.h: New file.
9168         * include/objidl.h (IID_IMoniker): Declare.
9169         * include/ocidl.h (READYSTATE): New enum.
9170         (IOleInPlaceSiteEx): New interface.
9171         * include/olectlid.h (IID_IEnumSTATSTG): New interface
9172         identifier.
9173         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
9174         IOleInPlaceSite): New interfaces.
9175         * lib/test.c: #include docobj.h,idispids.h,
9176
9177 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9178
9179         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
9180         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
9181
9182 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
9183
9184         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
9185         * include/commdlg.h: Likewise.
9186
9187 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
9188
9189         * include/oleauto.h (V_UNION): Correct definition for case of
9190         NONAMELESSUNION:
9191         (V_VT): Likewise.
9192
9193 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
9194
9195         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
9196         not bool, for C as well as C++.
9197
9198 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
9199
9200         * include/shlwapi.h: New file.
9201         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
9202         Victor Porton  <porton@narod.ru> for contributions.
9203         * lib/shlwapi.def: New file.
9204         * lib/test.c: #include shlwapi.h.
9205
9206 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
9207
9208         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
9209         character.
9210         * include/winsock2.h (struct sockaddr): Use __int64 instead of
9211         long long.
9212         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
9213         does not need external *Fiber library functions.
9214
9215 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9216
9217         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
9218         definition.
9219         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
9220         avoid compile error when already defined.
9221
9222 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
9223
9224         * include/winuser.h (WM_MENURBUTTONUP): Add define.
9225
9226 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9227
9228         * include/commdlg.h: Define CDN_* notification message constants
9229         as UINT.
9230
9231 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
9232
9233         * include/commctrl.h: Define notification message constants for
9234         NMHDR.code as UINT.
9235
9236 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
9237
9238         * include/ddeml.h (MH_*) Add defines.
9239         (MONHSZSTRUCT): Add structure and typedefs.
9240         (MONLINKSTRUCT): Ditto.
9241         (MONCONVSTRUCT): Ditto.
9242         (MONCBSTRUCT): Ditto.
9243         (MONERRSTRUCT): Ditto.
9244         (MONMSGSTRUCT): Ditto.
9245         * include/windef.h: Don't define __cdecl or _cdecl for
9246         __WATCOM__.
9247         Don't define _export or __export for __WATCOM__.
9248         * include/windows.h (imm.h): #include.
9249         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9250
9251 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9252
9253         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9254         rpcndr.h.
9255
9256 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9257
9258         * include/winbase.h (OpenThread): Add prototype.
9259         * lib/kernel32.def (OpenThread): Add symbol.
9260
9261 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9262
9263         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9264
9265 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9266
9267         * include/rpc.h: Conditionally include <windows.h> before
9268         header guard.
9269         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9270         header guard.
9271
9272 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9273
9274         * include/commctrl.h (WC_*): Remove some duplicate defines.
9275
9276 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9277
9278         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9279         UNICODE mappings.
9280         (IPM*): Add defines.
9281         (IPN_*): Add defines.
9282         (NMIPADDRESS): Add structure and typedefs.
9283         (MAKEIPADDRESS): Add macro.
9284         (MAKEIPRANGE): Add macro.
9285         (FIRST_IPADDRESS): Add macro.
9286         (SECOND_IPADDRESS): Add macro.
9287         (THIRD_IPADDRESS): Add macro.
9288         (FOURTH_IPADDRESS): Add macro.
9289
9290 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9291
9292         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9293
9294 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9295
9296         * include/winbase.h (WINBASEAPI): Don't define if prior
9297         definition.
9298
9299         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9300         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9301         PARTITION_UNIX): Add defines.
9302         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9303         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9304         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9305         (IsContainerPartition): Add macro.
9306
9307 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9308
9309         * include/commctrl.h: (CBEIF_*): Add defines.
9310         (CBEN_*): Add defines and UNICODE mappings
9311         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9312         (CBEMAXSTRLEN): Add define.
9313         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9314         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9315         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9316         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9317
9318 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9319
9320         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9321         union member _VARIANT_BOOL bool.
9322
9323 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9324
9325         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9326
9327 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9328
9329         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9330         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9331         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9332         Add typedefs.
9333         (CCHAR): Correct typedef.
9334         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9335         Add defines.
9336
9337 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9338
9339         * README.w32api: Correct spelling error.
9340
9341 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9342
9343         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9344         INPUT_HARDWARE): Add defines.
9345         (HDEVNOTIFY): Add typedef.
9346         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9347         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9348         typedefs.
9349         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9350         GetClassInfoEx[AW],GetKeyboardLayoutList,
9351         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9352         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9353         RegisterClassEx[AW]): Correct prototypes.
9354
9355 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9356
9357         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9358         prototypes.
9359         * include/winsvc.h (StartServiceW): Correct prototype.
9360         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9361         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9362         GetTickCount,InterlockedExchangeAdd,
9363         WritePrivateProfileStruct[AW]: Correct prototypes.
9364         (GetEnvironmentStrings): Correct mapping to
9365         GetEnvironmentStringsA.
9366         * include/winver.h (VerQueryValueA,VerQueryValueW):
9367         Correct prototypes.
9368         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9369         prototype.
9370         * include/winreg.h (RegQueryMultipleValues[AW],
9371         RegQueryValueEx[AW]):Correct prototypes.
9372         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9373         PPOLYTEXTW): Add typedefs.
9374         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9375         structures and typedefs.
9376         (MM_MAX_NUMAXES): Add define.
9377         (EnumFontsW,GetEnhMetaFilePixelFormat,
9378         wglGetLayerPaletteEntries): Correct prototypes.
9379         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9380         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9381         RPC_S_SEND_INCOMPLETE): Add defines.
9382
9383 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9384
9385         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9386         Add defines.
9387
9388 2002-06-16  Egor Duda  <deo@logos-m.ru>
9389
9390         * include/ntdll.h: New file.
9391         * lib/ntdll.def: Add NtShutdownSystem.
9392
9393 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9394
9395         * lib/dinput.def (DirectInputCreateEx): Add stub.
9396         * lib/ntdll.def: New file.
9397
9398 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9399
9400         * include/w32api.h: Change to version 2.0 to reflect the change
9401         in the license.
9402         * README: Renamed.
9403         * README.w32api: Renamed from README.  Modified license to remove
9404         the restriction of notifying the author based on the fact that the
9405         author is unreachable at the notified address.
9406         * Makefile.in (VERSION): Change to 2.0.
9407
9408 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9409
9410         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9411         * Makefile.in (bindist): Correct the MinGW distribution.
9412
9413 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9414
9415         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9416         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9417
9418 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9419
9420         * lib/test.c: #include comcat.h.
9421
9422 2002-06-13  John K. Hohm  <jhohm@acm.org>
9423
9424         * include/comcat.h: New file.
9425
9426 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9427
9428         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9429         (GETTEXTEX): Add structure definition.
9430
9431 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9432
9433         * include/windows.h (ole2.h): #include if !__OBJC__ and
9434         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9435
9436 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9437
9438         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9439
9440 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9441
9442         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9443         PACCESS_DENIED_ACE): Add typedefs.
9444
9445 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9446
9447         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9448
9449 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9450
9451         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9452
9453 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9454
9455         * include/windef.h: Fix typo in last change.
9456
9457 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9458
9459         * include/windef.h: Add no-op __try, __except, __finally
9460         defines from ...
9461         * include/excpt.h: Remove file.
9462         * include/windows.h: Don't include excpt.h.
9463
9464 2002-05-30  Christopher January  <chris@atomice.net>
9465
9466         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9467         Add missing typedefs.
9468
9469 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9470
9471         * include/w32api.h: Increment version to 1.5
9472         * Makefile.in: Ditto.
9473
9474
9475 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9476
9477         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9478         LP[W]STR with LPC[W]STR.
9479         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9480         Clean up whitespace.
9481
9482 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9483
9484         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9485
9486 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9487
9488         * Makefile.in: Increment VERSION to 1.4.
9489         (conf_prefix): New variable.
9490         (bindist): Modify target to use $(conf_prefix).
9491
9492 2002-05-20  Philip Aston  <philipa@mail.com>
9493
9494         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9495
9496 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9497
9498         * include/lmaccess.h: (NetAccess*, NetGroup*,
9499         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9500         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9501
9502 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9503
9504         * include/commctrl.h (ImageList_DragShowNolock): Remove
9505         conflicting redeclaration.
9506
9507 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9508
9509         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9510         STRICT and related defines to ...
9511         * include/windef.h: Here.
9512
9513 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9514
9515         * include/winsock2.h (int32): Remove typedef.
9516         (SERVICETYPE): Add typedef.
9517         (struct _flowspec):Revise struct definition,  Comment
9518         on types used for members.
9519
9520 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9521
9522         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9523         more defines added in earlier change.
9524         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9525
9526 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9527
9528         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9529         added in last change.
9530
9531 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9532
9533         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9534         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9535
9536 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9537
9538         * include/commctrl.h (SNDMSG): Define and use throughout
9539         in other macros instead of SendMessage.
9540         * include/commdlg.h (SNDMSG): Ditto.
9541
9542 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9543
9544         * include/GL/gl.h: New file.
9545         * include/GL/glext.h: Ditto.
9546         * include/GL/glu.h: Ditto.
9547
9548 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9549
9550         * include/w32api.h: Increment version.
9551         * Makefile.in: Ditto.
9552
9553 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9554
9555         * Makefile.in (bindist): Use * instead of . for file list for tar
9556         command.
9557
9558 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9559
9560         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9561
9562 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9563
9564         * include/objidl.h (IRunningObjectTable.Register): Correct
9565         prototype.
9566         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9567         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9568
9569 2002-03-31  Victor Porton  <porton@narod.ru>
9570
9571         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9572
9573 2002-03-29  David Robinow  <drobinow@yahoo.com>
9574
9575         * include/wingdi.h (SetPixelFormat): Correct prototype.
9576
9577 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9578
9579         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9580
9581 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9582
9583         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9584         Add defines.
9585
9586 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9587
9588         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9589         * include/shlobj.h (IContextMenu2): Put methods in right order.
9590         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9591         CINTERFACE before defining.
9592
9593 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9594
9595         * include/accctrl.h: Add #pragma GCC system_header
9596         if __GNUC__ >= 3.
9597         * include/aclapi.h: Same.
9598         * include/basetsd.h: Same.
9599         * include/basetyps.h: Same.
9600         * include/cderr.h: Same.
9601         * include/cguid.h: Same.
9602         * include/commctrl.h: Same.
9603         * include/commdlg.h: Same.
9604         * include/cpl.h: Same.
9605         * include/cplext.h: Same.
9606         * include/custcntl.h: Same.
9607         * include/dbt.h: Same.
9608         * include/dde.h: Same.
9609         * include/ddeml.h: Same.
9610         * include/dlgs.h: Same.
9611         * include/excpt.h: Same.
9612         * include/httpext.h: Same.
9613         * include/imagehlp.h: Same.
9614         * include/imm.h: Same.
9615         * include/initguid.h: Same.
9616         * include/intshcut.h: Same.
9617         * include/ipexport.h: Same.
9618         * include/iphlpapi.h: Same.
9619         * include/ipifcons.h: Same.
9620         * include/iprtrmib.h: Same.
9621         * include/iptypes.h: Same.
9622         * include/isguids.h: Same.
9623         * include/largeint.h: Same.
9624         * include/lm.h: Same.
9625         * include/lmaccess.h: Same.
9626         * include/lmalert.h: Same.
9627         * include/lmapibuf.h: Same.
9628         * include/lmat.h: Same.
9629         * include/lmaudit.h: Same.
9630         * include/lmbrowsr.h: Same.
9631         * include/lmchdev.h: Same.
9632         * include/lmconfig.h: Same.
9633         * include/lmcons.h: Same.
9634         * include/lmerr.h: Same.
9635         * include/lmerrlog.h: Same.
9636         * include/lmmsg.h: Same.
9637         * include/lmremutl.h: Same.
9638         * include/lmrepl.h: Same.
9639         * include/lmserver.h: Same.
9640         * include/lmshare.h: Same.
9641         * include/lmsname.h: Same.
9642         * include/lmstats.h: Same.
9643         * include/lmsvc.h: Same.
9644         * include/lmuse.h: Same.
9645         * include/lmuseflg.h: Same.
9646         * include/lmwksta.h: Same.
9647         * include/lzexpand.h: Same.
9648         * include/mapi.h: Same.
9649         * include/mciavi.h: Same.
9650         * include/mcx.h: Same.
9651         * include/mmsystem.h: Same.
9652         * include/mswsock.h: Same.
9653         * include/nb30.h: Same.
9654         * include/nddeapi.h: Same.
9655         * include/nspapi.h: Same.
9656         * include/ntdef.h: Same.
9657         * include/ntsecapi.h: Same.
9658         * include/ntsecpkg.h: Same.
9659         * include/oaidl.h: Same.
9660         * include/objbase.h: Same.
9661         * include/objfwd.h: Same.
9662         * include/objidl.h: Same.
9663         * include/odbcinst.h: Same.
9664         * include/ole.h: Same.
9665         * include/ole2.h: Same.
9666         * include/ole2ver.h: Same.
9667         * include/oleauto.h: Same.
9668         * include/olectl.h: Same.
9669         * include/olectlid.h: Same.
9670         * include/oledlg.h: Same.
9671         * include/oleidl.h: Same.
9672         * include/pbt.h: Same.
9673         * include/prsht.h: Same.
9674         * include/psapi.h: Same.
9675         * include/rapi.h: Same.
9676         * include/ras.h: Same.
9677         * include/raserror.h: Same.
9678         * include/rassapi.h: Same.
9679         * include/regstr.h: Same.
9680         * include/richedit.h: Same.
9681         * include/richole.h: Same.
9682         * include/rpc.h: Same.
9683         * include/rpcdce.h: Same.
9684         * include/rpcdce2.h: Same.
9685         * include/rpcdcep.h: Same.
9686         * include/rpcndr.h: Same.
9687         * include/rpcnsi.h: Same.
9688         * include/rpcnsip.h: Same.
9689         * include/rpcnterr.h: Same.
9690         * include/rpcproxy.h: Same.
9691         * include/schannel.h: Same.
9692         * include/schnlsp.h: Same.
9693         * include/scrnsave.h: Same.
9694         * include/security.h: Same.
9695         * include/setupapi.h: Same.
9696         * include/shellapi.h: Same.
9697         * include/shlguid.h: Same.
9698         * include/shlobj.h: Same.
9699         * include/sql.h: Same.
9700         * include/sqlext.h: Same.
9701         * include/sqltypes.h: Same.
9702         * include/sqlucode.h: Same.
9703         * include/sspi.h: Same.
9704         * include/subauth.h: Same.
9705         * include/tlhelp32.h: Same.
9706         * include/unknwn.h: Same.
9707         * include/userenv.h: Same.
9708         * include/w32api.h: Same.
9709         * include/winbase.h: Same.
9710         * include/wincon.h: Same.
9711         * include/wincrypt.h: Same.
9712         * include/windef.h: Same.
9713         * include/windows.h: Same.
9714         * include/windowsx.h: Same.
9715         * include/winerror.h: Same
9716         * include/wingdi.h: Same.
9717         * include/wininet.h: Same.
9718         * include/winioctl.h: Same.
9719         * include/winnetwk.h: Same.
9720         * include/winnls.h: Same.
9721         * include/winnt.h: Same.
9722         * include/winperf.h: Same.
9723         * include/winreg.h: Same.
9724         * include/winresrc.h: Same.
9725         * include/winsock.h: Same.
9726         * include/winsock2.h: Same.
9727         * include/winspool.h: Same.
9728         * include/winsvc.h: Same.
9729         * include/winuser.h: Same.
9730         * include/winver.h: Same.
9731         * include/ws2tcpip.h: Same.
9732         * include/wsnetbs.h: Same.
9733         * include/wtypes.h: Same.
9734         * include/zmouse.h: Same.
9735         * include/mapi.h: Change header guard name to _MAPI_H  for
9736         consistency.
9737
9738 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9739
9740         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9741         Remove unnecessary inclusion of <wtypes.h>.
9742         * ChangeLog: Fix omission of name in recent entries.
9743
9744 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9745
9746         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9747
9748 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9749
9750         * include/mswsock.h: Group winsock2 dependants
9751         together and protect with #ifdef _WINSOCK2_H.
9752         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9753         has been included.
9754
9755 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9756
9757         * include/mswsock.h (TP_*): Add new defines.
9758         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9759         (WSAMSG): Likewise.
9760         (WSACMSGHDR): Likewise.
9761         (DisconnectEx): Add new prototype.
9762         (WSARecvMsg): Likewise.
9763         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9764
9765 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9766
9767         * ChangeLog: Fix typo in last entry.
9768         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9769         * include/ws2tcpip.h: (IP_*): Add new defines.
9770         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9771         (NI_*): Add getnameinfo constants and bitmasks.
9772         (AI_*): Add getaddrinfo flags.
9773         (EAI_*): Add getaddrinfo error codes.
9774         (ip_mreq_source): Add new structure.
9775         (ip_msfilter): Add new structure.
9776         (IP_MSFILTER_SIZE): Add new macro.
9777         (in_pktinfo): Add new structure.
9778         Add preliminary IPv6 support.
9779         (in6_addr): Add new structure and some defines.
9780         (sockaddr_in6): Add new structure.
9781         (in6addr_any, in6addr_loopback): Declare extern structures.
9782         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9783         initialization macros for above.
9784         (IN6_ARE_ADDR_EQUAL): Define macro.
9785         (IN6_IS_ADDR_*): Define address testing macros.
9786         (socklen_t) Add new typedef.
9787         (ipv6_mreq): Add new structure.
9788         (in6_pktinfo): Same.
9789         (addrinfo): Same.
9790         (freeaddrinfo):Add new prototype.
9791         (getaddrinfo): Same.
9792         (gai_strerror[AW]): Same.
9793         (getnameinfo): Same.
9794         (sockaddr_in6_old): Add structure.
9795         (sockaddr_gen): Add union definition.
9796         (INTERFACE_INFO): Use sockaddr_gen as members.
9797         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9798         with INTERFACE_INFO on NT4 prior to sp4.
9799
9800 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9801
9802         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9803         when selecting winsock interface.
9804         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9805         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9806         Expand FIXME comment.
9807         (WSACOMPLETIONTYPE): Add enum.
9808         (WSACOMPLETION): Add structure and typedefs.
9809         (WSANSPIoctl): Add function prototpe and callback typedef.
9810         (SIO_NSP_NOTIFY_CHANGE): Add define.
9811         (sockaddr_storage): Add structure and typedefs.
9812
9813 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9814
9815         * include/winuser.h (OIC_*): Add resource constants.
9816
9817 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9818
9819         * include/ntsecpkg.h: New file.
9820         * include/schannel.h: New file.
9821         * include/schnlsp.h: New file.
9822         * include/security.h: New file.
9823         * include/sspi.h: New file.
9824         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9825         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9826         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9827         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9828         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9829         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9830         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9831         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9832         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9833         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9834         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9835         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9836         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9837         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9838         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9839         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9840         CERT_CHAIN_CONTEXT): Add missing structures.
9841         (CertCloseStore, CertGetCertificateChain,
9842         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9843         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9844         CertFindCertificateInStore, CertFreeCertificateContext,
9845         CertGetIssuerCertificateFromStore,
9846         CertFindChainInStore): Add missing functions.
9847         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9848         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9849         * lib/crypt32.def: New file.
9850         * lib/secur32.def: Add mising stubs.
9851         * lib/test.c: Include new headers.
9852
9853 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9854
9855         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9856         parameter.
9857
9858 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9859
9860         * lib/test.c: Include mapi.h.
9861         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9862         Thanks to: "Ron"  <ron@debian.org>
9863
9864 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9865
9866         * include/mapi.h: New file.
9867         * lib/mapi.def: Add missing function stubs.
9868
9869 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9870
9871         * include/winuser.h (GetWindowLongPtr[AW],
9872         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9873
9874 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9875
9876         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9877         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9878         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9879         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9880
9881 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9882
9883         * lib/test.c: Include wsnetbs.h.
9884
9885 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9886
9887         * include/wsnetbs.h: New file.
9888
9889 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9890
9891         * include/winnt.h: Remove merge conflict.
9892
9893 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9894
9895         * include/winnt.h (_TCHAR): Add typedefs.
9896
9897 2002-01-25  Tim Hughes  <tjh@delcam.com>
9898
9899         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9900         defines.
9901
9902 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9903
9904         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9905         Add defines.
9906         (LPACCESSTIMEOUT): Add typedef.
9907
9908 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9909
9910         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9911
9912 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9913
9914         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9915         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9916         backward compatability with old names. Update UNICODE mappings.
9917         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9918         for struct _HD_LAYOUT and add defines for backward
9919         compatability with old names.
9920         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9921         parallel chages to typedefs. Add defines for backward
9922         compatability with old names.
9923         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9924
9925 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9926
9927         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9928         hex for readability.
9929
9930 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9931
9932         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9933         and typedefs.
9934         (SPI_SETSCREENSAVERRUNNING): Add define.
9935         (LLKHF_ALTDOWN): Add define.
9936         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9937         PFD_DEPTH_DONTCARE): Add defines.
9938
9939 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9940
9941         * include/objbase.h (CoGetObject): Add prototype.
9942
9943 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9944
9945         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9946         ENUM_REGISTRY_SETTINGS): Add defines.
9947
9948 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9949
9950         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9951         (FILE_ATTRIBUTE_DEVICE): Add define.
9952
9953 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9954
9955         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9956
9957 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9958
9959         * ChangeLog: correct date in last entry.
9960
9961 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9962
9963         * include/winuser.h (MONITORENUMPROC): Add typedef.
9964         (EnumDisplayMonitors): Add prototype.
9965         * lib/user32.def (EnumDisplayMonitors): Add stub.
9966
9967 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9968
9969         * include/ntsecapi.h:  Fixed missing void parameter type in some
9970         prototypes.
9971         * include/objbase.h: Ditto.
9972         * include/rapi.h: Ditto.
9973         * include/rpc.h: Ditto.
9974         * include/rpcdce.h: Ditto.
9975         * include/rpcdcep.h: Ditto.
9976         * include/rpcndr.h: Ditto.
9977         * include/rpcnsip.h: Ditto.
9978         * include/rpcproxy.h: Ditto.
9979         * include/windef.h: Ditto.
9980
9981 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9982
9983         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9984
9985 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9986
9987         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9988          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9989         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9990         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9991         WS_EX_NOINHERITLAYOUT): Add defines.
9992         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9993         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9994         MEM_WRITE_WATCH): Add defines.
9995
9996
9997 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9998
9999         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
10000         Add prototype.
10001         (SetCriticalSectionSpinCount): Likewise.
10002
10003 2001-12-30  Guido Serassio  <serassio@libero.it>
10004
10005         * include/winsvc.h: Add EnumServiceStatusEx(),
10006         QueryServiceStatusEx()
10007         & RegisterServiceCtrlHandlerEx()
10008
10009 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
10010
10011         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
10012
10013 2001-12-20  Christopher Faylor  <cgf@redhat.com>
10014
10015         * lib/Makefile.in: Revert inst_installdir definitions to working
10016         versions.
10017
10018 2001-12-17  Guido Serassio  <serassio@libero.it>
10019
10020         * include/winsvc.h: Add ChangeServiceConfig2() &
10021         QueryServiceConfig2() definition
10022
10023 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
10024
10025         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
10026         on MSDN documentation for XP.
10027
10028 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
10029
10030         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
10031         mappings.
10032
10033 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
10034
10035         * include/commctrl.h (ACS_*): Add new defines.
10036         (PGS_*): Ditto.
10037         (CBES_*): Ditto.
10038         (TBSTYLE_*): Ditto.
10039         (TB_*): Ditto.
10040         (TTS_*): Ditto.
10041         (UDS_HOTTRACK): Add define.
10042         (SBT_TOOLTIPS): Ditto.
10043         (TBS_*): Add new defines.
10044         (HDS_*): Ditto.
10045         (LVS_EX_*) Ditto.
10046         (LVKF_*): Ditto.
10047         (TCM_GETEXTENDEDSTYLE): Add define.
10048         (TVS_NOHSCROLL): Ditto.
10049         (TVIF_INTEGRAL): Ditto.
10050         (DTS_SHORTDATECENTURYFORMAT): Ditto.
10051         (TCS_*): Add new defines.
10052         (CBEM_*): Add defines.
10053         (tagNMITEMACTIVATE): Add structure definition and typedefs.
10054         (tagTVITEMEX[AW]: Ditto.
10055         (tagTVINSERTSTRUCT[AW]: Add union member.
10056         * include/winbase.h (VirtualAllocEx): Add prototype.
10057         * include/winuser.h (SS_*): Add new defines.
10058
10059 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10060
10061         * Makefile.in: Increment VERSION.
10062         * include/w32api.h: Ditto.
10063
10064 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10065
10066         * Makefile.in: Increment VERSION.
10067         * include/w32api.h: Ditto.
10068
10069 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
10070
10071         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
10072         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
10073         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
10074         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
10075         SetupDiOpenDevRegKey): Correct function names.
10076
10077 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
10078
10079         * include/winuser.h (IDC_STATIC): Don't define.
10080
10081 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
10082
10083         Cleanup merge between SourceForge and winsup CVS.
10084         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
10085         definitions.
10086         * include/winnt.h (VER_NT*): Remove duplicate defines.
10087         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
10088
10089 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
10090
10091         * include/accctrl.h: Change \r\n to \n.
10092
10093 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
10094
10095         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
10096         Add structure definition.
10097         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
10098         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
10099         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
10100         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
10101         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
10102         UnenableRouter) Declare functions.
10103         * lib/iphlpapi.def: Add function names to import lib.
10104
10105 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
10106
10107         * include/winnt.h (PACCESS_MASK): Add typedef.
10108         * include/aclapi.h: New file.
10109         * include/acctrl.h: New file.
10110         * lib/advapi32.def: Add missing symbols.
10111         * lib/test.c: Add #include <aclapi.h>.
10112
10113 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
10114
10115         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
10116         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
10117         here ...
10118         * include/winnt.h: ... to here.
10119         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
10120         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
10121         and typedefs.
10122         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
10123         Add defines.
10124
10125 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10126
10127         * w32api/include/winnt.h: prepare SSE register support.
10128         (CONTEXT_EXTENDED_REGISTERS): Add new define.
10129         (MAXIMUM_SUPPORTED_EXTENSION): New define.
10130         (struct CONTEXT): ExtendedRegisters field added.
10131
10132 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
10133
10134         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
10135         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
10136         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
10137         tagLASTINPUTINFO ): Define new structures.
10138         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
10139         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
10140         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
10141         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
10142         SetMenuInfo): Add new prototypes.
10143         * lib/user32.def: Add import stubs for above functions.
10144
10145         * include/winuser.h (IDC_STATIC): Protect against prior
10146         definition.
10147
10148 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
10149
10150         * include/winbase.h (OSVERSIONINFOEX): Add definition.
10151         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
10152
10153 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
10154
10155         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
10156         warnings with _AUTHORITY #defines.
10157
10158 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10159
10160         * include/winnt.h (GetCurrentFiber): Create a prototype before the
10161         implementation.
10162         (GetFiberData): Ditto.
10163
10164 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10165
10166         * include/winnt.h: Backout last change.
10167
10168 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
10169
10170         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
10171         GetCurrentFiber: Create a prototype before the implementation.
10172         GetFiberData: Ditto.
10173
10174 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
10175
10176         * include/winuser.h (IDC_STATIC): Add define.
10177         Thanks to: Benoit Laniel.
10178
10179 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
10180
10181         * include/commdlg.h: Include <unknwn.h> rather than local
10182         definition of LPUKNOWN.
10183         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
10184         Emit warning.
10185
10186 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
10187
10188         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
10189         for Watcom.
10190         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
10191         functions of the form 'type * function(...)' in a way compatible
10192         with both Watcom and GCC.
10193         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
10194         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
10195         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
10196         * include/windows.h: Watcom can use anonymous structs/unions.
10197         * include/winnt.h: Watcom can use 64 bit ints.
10198         (GetCurrentFiber): Add another inline definition using
10199         Watcom inline assembly syntax.
10200         (GetFiberData): Likewise.
10201         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
10202         (gethostbyname): Likewise.
10203         (gethostbyaddr}: Likewise.
10204         (getservbyport}: Likewise.
10205         (getservbyname}: Likewise.
10206         (getprotobynumber}: Likewise.
10207         (getprotobyname}: Likewise.
10208         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
10209         (gethostbyname}: Likewise.
10210         (gethostbyaddr}: Likewise.
10211         (getservbyport}: Likewise.
10212         (getservbyname}: Likewise.
10213         (getprotobynumber}: Likewise.
10214         (getprotobyname}: Likewise.
10215         * lib/diinut.c: Correction for Watcom.
10216         * lib/kernel32.c (GetCurrentFiber): Add another definition
10217         using Watcom inline assembly syntax.
10218         (GetFiberData): Likewise.
10219         * lib/scrnsave.c (WinMain): Add break after default:
10220         clause.
10221
10222 2001-11-04  "stefan"  <stefan@lkcc.org>
10223
10224         * include/winnt.h (GetCurrentFiber): Add prototype.
10225         (GetFiberData): Likewise.
10226
10227 2001-11-04  Christopher Faylor  <cgf@redhat.com>
10228
10229         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
10230         parallel invocations.
10231
10232 2001-11-03  Christopher Faylor  <cgf@redhat.com>
10233
10234         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
10235
10236 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10237
10238         * include/basetyps.h (DECLARE_INTERFACE): Don't add
10239         __attribute__((com_interface)) for __GNUC__ >= 3.
10240
10241 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10242
10243         * include/commdlg.h (PRINTPAGERANGE): Add structure
10244         definition.
10245         (PRINTDLGEX[AW]): Likewise.
10246         (PrintDlgEx[AW]): Add function declaration.
10247         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10248         * ChangeLog: Fix typo in last entry.
10249
10250 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10251
10252         * include/objbase.h (CoGetClassObject): Change third parameter
10253         to COSERVERINFO*.
10254
10255 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10256
10257         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10258         Thanks to: Kim Saunders.
10259         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10260         Thanks to: Pat Thoyts.
10261         * include/winnt.h: Change C++ style comment to C style.
10262         * include/shlobj.h: Ditto.
10263         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10264         list.
10265         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10266         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10267         (enum not limited to range of int).
10268         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10269         (struct with no named members), ifndef NONAMELESSUNION.
10270
10271 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10272
10273         * include/winuser.h (CREATESTRUCT): UNICODE it.
10274         (CBT_CREATEWND): Likewise.
10275
10276 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10277
10278         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10279         (WNetGetResourceInformationW): Ditto.
10280         (WNetGetResourceInformation): Add define.
10281
10282 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10283
10284         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10285         before extracting words.
10286
10287 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10288
10289         * include/winnt.h: Add PF_* defines.
10290         Thanks to: "Wizord"  <wizord@argoslabs.com>
10291
10292 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10293
10294         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10295         field as _ANONYMOUS_STRUCT.
10296         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10297         for UNICODE.
10298         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10299         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10300         test.
10301
10302 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10303
10304         * include/commctrl.h: Add some ListView constants.
10305
10306 2001-09-17  Earnie Boyd  <earnie@sf.net>
10307
10308         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10309         portion of the directory from the install.
10310         (inst_libdir): Ditto.
10311         * Makefile.in (VERSION): Increment.
10312         * include/w32api.h: Increment version.
10313
10314 2001-09-13  Earnie Boyd  <earnie@SF.net>
10315
10316         * lib/Makefile.in (inst_includedir): Change to always use w32api
10317         subdirectory for target == cygwin.
10318         (inst_libdir): Ditto.
10319
10320 2001-09-13  Earnie Boyd  <earnie@SF.net>
10321
10322         * lib/Makefile.in (config_prefix): New variable.
10323         (inst_includedir): Manipulate special value only if target == cygwin
10324         and build == target and prefix != config_prefix.
10325         (inst_libdir): Ditto.
10326
10327 2001-09-12  Earnie Boyd  <earnie@SF.net>
10328
10329         * Makefile.in (TARFLAGS): New variable.
10330         (TARFILEEXT): Ditto.
10331
10332 2001-09-12  Earnie Boyd  <earnie@SF.net>
10333
10334         * Makefile.in: Increment version.
10335         * include/w32api.h: Ditto.
10336         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10337
10338 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10339
10340         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10341         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10342         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10343
10344 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10345
10346         * include/wininet.h (InternetAutodial): Add prototype.
10347         (InternetAutodialHangup): Ditto.
10348         (InternetDial): Ditto.
10349         (InternetGetConnectedState): Ditto.
10350         (InternetGoOnline): Ditto.
10351         (InternetHangUp): Ditto.
10352         (InternetSetDialState): Ditto.
10353         Add associated INTERNET_* auto dial flags.
10354         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10355
10356 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10357
10358         * lib/Makefile.in: Move the setting of variable libdir to after the
10359         setting of exec_prefix since the value of libdir is dependant on it.
10360
10361 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10362
10363         * include/winbase.h: Add missing closing parentheses to
10364         InterlockedExchangePointer declaration.
10365
10366 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10367
10368         * include/shlobj.h (CFSTR_* ): Add new defines.
10369         Thanks to: "Ron" <ron@debian.org> .
10370         Unicode them.
10371
10372 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10373
10374         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10375         anonymous structs are available rather than just testing preprocessor
10376         variable directly.
10377
10378 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10379
10380         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10381         with new `LARGE_INTEGER' definition.
10382
10383 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10384
10385         * include/winsock2.h: Remove "extra token" after #endif.
10386
10387 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10388
10389         * config.guess: Remove the \r from the end of line.
10390         * config.sub: Ditto.
10391
10392 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10393
10394         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10395         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10396
10397 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10398
10399         * config.guess: Add the MSYS system.
10400         * config.sub: Ditto.
10401         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10402         * incldue/winsock2.h: Ditto.
10403
10404 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10405
10406         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10407         non-anonymous (Xxx.u.LowPart) access to HighPart and
10408         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10409
10410 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10411
10412         * include/wingdi.h (HANGUL_CHARSET): Add define.
10413
10414 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10415
10416         * include/setupapi.h: Formatting.
10417
10418 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10419
10420         * include/shlobj.h: Remove \r from the line endings.
10421
10422 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10423
10424         * include/setupapi.h : New file.
10425         * lib/setupapi.def:New file.
10426         * lib/test.c: Include setupapi.h.
10427
10428 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10429         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10430
10431 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10432
10433         * include/richedit.h (ENLINK): Add structure definition.
10434         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10435
10436 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10437
10438         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10439         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10440         (GCS_*): Make UNICODE.
10441         (CSIDL_*): Add more defines.
10442         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10443         (_DISK_GEOMETRY): Ditto.
10444         (_DISK_PERFORMANCE): Ditto.
10445         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10446
10447 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10448
10449         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10450         of block protected by #ifndef VOID.
10451         (This reverts 1998-12-01 Anders Norlander change.)
10452         * include/odbcinst.h: End file with newline.
10453         * include/raserror.h: Ditto.
10454
10455 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10456
10457         * include/winsock2.h (#include <wtypes.h): Don't.
10458         (_BLOB): Define instead, if not already done.
10459         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10460         * include/wtypes.h (_BLOB): Guard against prior definition.
10461
10462 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10463
10464         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10465         as __extension__.
10466         (tagTYPEDESC): Ditto.
10467         (_wireBRECORD): Add structure definition.
10468         (_wireSAFEARR_BRECORD): Ditto.
10469         (_wireSAFEARR_HAVEIID): Ditto.
10470         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10471         SAFEARR_HAVEIID HaveIidStr.
10472         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10473         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10474         pparray to wirePSAFEARRAY*.
10475         (_wireVARIANT): Add field wireBRECORD brecVal.
10476         (wireVARIANT): Change typedef to struct _wireVariant*.
10477         (IRecordInfo): Add interface definition.
10478         (LPRECORDINFO): Add typedef for IRecordInfo*.
10479         (IID_IRecordInfo): Add forward decalaration.
10480
10481 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10482
10483         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10484         * include/nddeapi.h: Likewise.
10485
10486 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10487
10488         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10489         Add more includes of w32api headers.
10490
10491 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10492
10493         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10494         Swap asm code with that of GetFiberData.
10495         (GetFiberData): Ditto.
10496         * lib/kernel32.c: New file, containing library versions of
10497         GetCurrentFiber and GetFiberData.
10498         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10499
10500 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10501
10502         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10503         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10504
10505 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10506
10507         * lib/oleaut32.def: Regenerate.
10508
10509 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10510
10511         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10512
10513 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10514
10515         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10516         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10517         * include/oaidl.h: ... to here.
10518         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10519         (IErrorInfo::GetGUID): Change arg to GUID.
10520         (LPSUPPORTERRORINFO): Add typedef.
10521         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10522
10523 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10524
10525         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10526         defines.
10527
10528 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10529
10530         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10531
10532 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10533
10534         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10535         Thanks to: Jason Craig  <jacraig@softhome.net>
10536
10537 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10538
10539         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10540         and UNICODE mappings, if _WIN32_IE >= 0x400.
10541         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10542         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10543         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10544         (tagNMLVCUSTOMDRAW): Likewise.
10545         (tagNMTVCUSTOMDRAW): Likewise.
10546         (tagNMLVCACHEHINT): Likewise.
10547
10548 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10549
10550         * include/basetsd.h (#include <_mingw.h>): Remove.
10551         (__int64): Define.
10552
10553 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10554
10555         * include/wingdi.h (AC_SRC_OVER): Add define.
10556         (struct _BLENDFUNCTION): Add.
10557
10558 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10559
10560         * include/shlobj.h:  Add BIF_* defines.
10561
10562 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10563
10564         * include/winerror.h (E_PENDING): Add error code define.
10565
10566 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10567
10568         * include/basetsd.h (#include <_mingw.h>): Add directive.
10569
10570 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10571
10572         * include/winbase.h (InterlockedCompareExchange): Change args
10573         and return value from PVOID to LONG.
10574         (InterlockedExchange): Change first arg to LPLONG.
10575         (InterlockedCompareExchangePointer): New macro.
10576         (InterlockedExchangePointer): New macro.
10577
10578 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10579
10580         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10581         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10582
10583 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10584
10585         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10586         (IMalloc::Free()): Ditto.
10587
10588 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10589
10590         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10591         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10592         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10593
10594 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10595
10596         * include/shlobj.h (struct _browseinfo): UNICODE it.
10597         (SHBrowseForFolder): Ditto.
10598         (SHGetPathFromIDList): Ditto.
10599
10600 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10601
10602         * include/basetsd.h: RC_INVOKED protection and realignment.
10603         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10604
10605 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10606
10607         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10608         line.
10609
10610 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10611
10612         * lib/mapi32.def: Add MAPISendMail.
10613
10614 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10615
10616         * include/w32api.h: Update version.
10617         * Makefile.in: Ditto.
10618
10619 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10620
10621         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10622         compiler warnings.
10623
10624 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10625
10626         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10627         previous definition in include/ntsecapi.h.
10628         * include/ntsecapi.h: Vice versa.
10629
10630 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10631
10632         * include/winnt.h: Add defines for group attributes.
10633         Add define for SYSTEM_LUID.
10634         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10635         `PTOKEN_PRIMARY_GROUP'.
10636
10637 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10638
10639         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10640         for cygwin.
10641
10642 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10643
10644         * include/winsock2.h: Protect one *more* newlib defines when compiling
10645         cygwin.
10646
10647 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10648
10649         * include/winsock2.h: Protect some more newlib defines when compiling
10650         cygwin.
10651
10652 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10653
10654         * include/winsock.h: Protect some more newlib defines when compiling
10655         cygwin.
10656
10657 2001-04-17  Egor Duda  <deo@logos-m.ru>
10658
10659         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10660         as __extenstion__ when appropriate.
10661         * include/mmsystem.h: Mark anonymous structs and unions as
10662         __extension__ to prevent compiler warning when invoked with
10663         -pedantic
10664         * include/oaidl.h: Ditto.
10665         * include/objidl.h: Ditto.
10666         * include/olectl.h: Ditto.
10667         * include/prsht.h: Ditto.
10668         * include/shlobj.h: Ditto.
10669         * include/winbase.h: Ditto.
10670         * include/winnt.h: Ditto.
10671         * include/wtypes.h: Ditto.
10672
10673 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10674
10675         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10676         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10677
10678 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10679
10680         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10681
10682 2001-04-11  John Fortin  <fortinj@attglobal.net>
10683
10684         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10685         (*LPBOOL): Ditto.
10686
10687 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10688
10689         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10690         code will be included in every module which includes this header.
10691         (GetFiberData): Ditto.
10692
10693 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10694
10695         * include/winnt.h (GetCurrentFiber): Fix typo.
10696
10697 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10698
10699         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10700         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10701         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10702         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10703         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10704
10705         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10706         (GetCurrentFiber): Ditto.
10707         Thanks to: Andy Younger  <AndyY@redlemon.com>
10708
10709         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10710         DirectX 8 from complaining.
10711         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10712
10713 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10714
10715         * include/commctrl.h Updated TreeView and ListView defines and macros.
10716
10717 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10718
10719         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10720         and above.
10721
10722 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10723         * include/winuser.h (VK_KANA): New definition.
10724         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10725
10726 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10727
10728         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10729         (RT_FONT): Ditto.
10730         * include/basetsd.h (INT32): Ditto.
10731         * include/windef.h (ATOM): Ditto.
10732         (BOOL): Ditto.
10733         (BYTE): Ditto.
10734         * include/winbase.h (FreeResource): Ditto.
10735         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10736
10737 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10738
10739         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10740         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10741         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10742         macro now defined in newlib sys/types.h.  Emit warning if defined.
10743         * include/winsock2.h: Ditto.
10744         * include/windows.h (Win32_Winsock): Replace with new macros
10745         __USE_W32_SOCKETS and warn of deprecation.
10746
10747 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10748
10749         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10750         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10751
10752 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10753
10754         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10755         (TB_GETBUTTONSIZE): Ditto.
10756         (TCS_HOTTRACK): Ditto.
10757         Thanks to: Chris Hansen <popeofpop@softhome.net>
10758
10759 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10760
10761         * Makefile.in: (snapshot): Add target.
10762         * lib/Makefile.in: (install-headers): Use installdir variable.
10763         (installdir): Set value based on target-alias.
10764
10765 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10766
10767         * include/w32api.h: (_W32API_VERSION): Remove.
10768         (__W32API_VERSION): Add.
10769         (__W32API_MAJOR_VERSION): Ditto.
10770         (__W32API_MINOR_VERSION): Ditto.
10771
10772 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10773
10774         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10775         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10776         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10777         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10778
10779 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10780
10781         * include/mswsock.h: New file.
10782         * include/ws2tcpip.h: New file.
10783         * include/winsock.h (IPPROTO_IGMP): New define.
10784         (IPPROTO_GGP): Correct value.
10785         (SO_* macros): Remove mswsock defines.
10786         (TCP_BSDURGENT): Likewise.
10787         (IP_* macros): Add comment warning of WinSock2 incompatibility
10788         (WSARecvEx): Remove mswsock prototype.
10789         (TransmitFile): Likewise.
10790         (AcceptEx): Likewise.
10791         (GetAcceptExSockaddrs): Likewise.
10792         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10793         (#include <mswsock.h>): Add directive and explanatory comment
10794         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10795         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10796         (#include <winsock.h>): Replace directive with winsock.h file content
10797         The following changes apply to the merged file:
10798         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10799         (SOMAXCONN): Likewise
10800         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10801         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10802         in ws2tcpip.h)
10803         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10804         (FD_*_BIT and FD_* defines): Place together and extend to
10805         FD_MAX_EVENTS 10
10806         (AF* defines): Extend to AF_MAX 10
10807         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10808         (WSAUnhookBlockingHook): Likewise.
10809         (WSASetBlockingHook): Likewise.
10810         (WSACancelBlockingCall): Likewise.
10811         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10812         (#include <mswsock.h>): Delete directive inherited from winsock.h
10813         (WSA_QOS* defines): Add QualityOfService error codes.
10814         (SIO_* defines): Add new macros
10815         * include/ipexport.h (IP_STATUS flags): Add definitions.
10816         (IP_FLAG_DF): Likewise.
10817         (IP_OPT_* ): Likewise.
10818         (struct ip_option_information): Likewise.
10819         (struct icmp_echo_reply): Likewise.
10820
10821 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10822
10823         * include/commctrl.h: Revert TEXT change.
10824         * include/lmalert.h: Ditto.
10825         * include/lmcons.h: Ditto.
10826         * include/lmsname.h: Ditto.
10827         * include/lmsvc.h: Ditto.
10828         * include/ntsecapi.h: Ditto.
10829         * include/oledlg.h: Ditto.
10830         * include/ras.h: Ditto.
10831         * include/regstr.h: Ditto.
10832         * include/richedit.h: Ditto.
10833         * include/wininet.h: Ditto.
10834         * include/winnt.h: Ditto.
10835
10836 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10837
10838         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10839         * include/lmalert.h: Ditto.
10840         * include/lmcons.h: Ditto.
10841         * include/lmsname.h: Ditto.
10842         * include/lmsvc.h: Ditto.
10843         * include/ntsecapi.h: Ditto.
10844         * include/oledlg.h: Ditto.
10845         * include/ras.h: Ditto.
10846         * include/regstr.h: Ditto.
10847         * include/richedit.h: Ditto.
10848         * include/wininet.h: Ditto.
10849         * include/w32api.h: New File.
10850
10851 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10852
10853         * include/shlobj.h: Add missing SLR_* flags.
10854
10855 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10856
10857         * lib/Makefile.in: (host_alias): Add variable.
10858         (host_build): Ditto:
10859         (xinstall): Removed
10860         (xinstall-libraries): Ditto.
10861         (xinstall-headers): Ditto.
10862         (xuninstall): Ditto.
10863         (xuninstall-libraries): Ditto.
10864         (xuninstall-headers): Ditto.
10865         * Makefile.in: (host_alias): Add variable.
10866         (build_alias): Ditto.
10867
10868 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10869
10870         * include/winnt.h: (__TEXT): Add private macro.
10871         (_TEXT): Modify definition to use __TEXT.
10872         (_T): Ditto.
10873         This change allows the passing of a MACRO as an argument and have that
10874         MACRO resolved first.
10875         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10876
10877 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10878
10879         * Makefile.in: Increment VERSION to 0.5
10880         * include/winnt.h: Change TEXT to _TEXT throughout.
10881         (SID_RELEASE): Define.
10882         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10883
10884 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10885
10886         * Apply Phil Krylov patches.
10887         2001-01-19  Phil Krylov  <phil@mail.ru>
10888         * include/commctrl.h: (HDI_IMAGE) New definition.
10889         (HDI_DI_SETITEM) Ditto.
10890         (HDI_ORDER) Ditto.
10891         (HDI_FILTER) Ditto.
10892         (HDF_BITMAP_ON_RIGHT) Ditto.
10893         (HDF_IMAGE) Ditto.
10894         (HDM_SETORDERARRAY) Ditto.
10895         (Header_SetOrderArray) Ditto.
10896         (ICC_BAR_CLASSES) Ditto.
10897         (struct _HD_ITEMA) Change definition.
10898         (struct _HD_ITEMW) Ditto.
10899         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10900         (InitCommonControlsEx()) Ditto.
10901         2001-01-23  Phil Krylov  <phil@mail.ru>
10902         * include/richedit.h: Many Richedit 2.0 definitions.
10903
10904 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10905
10906         * include/winuser.h: (IDC_HAND)  New resource identifier.
10907         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10908
10909 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10910
10911         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10912         Fix typo's.
10913
10914 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10915
10916         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10917         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10918         Thanks To: <bge@users.sourceforge.net>
10919
10920 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10921
10922         * Apply Danny Smith patch 102386
10923         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10924         * lib/rasapi32.def: add symbols available in NT4 and W2k
10925
10926 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10927
10928         * Apply Danny Smith patch 102382
10929         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10930         * lib/mswsock.def: remove leading underscores from symbol names
10931
10932 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10933
10934         * Apply Danny Smith patch 102446
10935         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10936         * include/sql.h (ODBCVER): change default to 0x0351.
10937         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10938         (SQLColAttributes): likewise.
10939         (SQLBindParam): add prototype for ODBC 3.x function.
10940         (SQLCloseCursor): likewise.
10941         (SQLColAttribute): likewise.
10942         (SQLCopyDesc):likewise.
10943         (SQLEndTran): likewise.
10944         (SQLFetchScroll): likewise.
10945         (SQLGetConnectAttr): likewise.
10946         (SQLGetDescField): likewise.
10947         (SQLGetDescRec): likewise.
10948         (SQLGetDiagField): likewise.
10949         (SQLGetDiagRec): likewise.
10950         (SQLGetEnvAttr): likewise.
10951         (SQLGetStmtAttr): likewise.
10952         (SQLSetConnectAttr): likewise.
10953         (SQLSetDescField):likewise.
10954         (SQLSetDescRec): likewise.
10955         (SQLSetEnvAttr): likewise.
10956         (SQLSetStmtAttr): likewise.
10957         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10958         _WIN64 compatability;
10959         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10960         (SQL_ACTIVE_CONNECTIONS): likewise.
10961         (SQL_ACTIVE_STATEMENTS): likewise.
10962         (SQL_ALL_EXCEPT_LIKE): likewise.
10963         (SQL_API_ALL_FUNCTIONS): likewise.
10964         (SQL_API_LOADBYORDINAL): likewise.
10965         (SQL_API_SQLBINDPARAMETER): likewise.
10966         (SQL_API_SQLBROWSECONNECT): likewise.
10967         (SQL_API_SQLCOLATTRIBUTES): likewise.
10968         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10969         (SQL_API_SQLDESCRIBEPARAM): likewise.
10970         (SQL_API_SQLDRIVERCONNECT): likewise.
10971         (SQL_API_SQLDRIVERS): likewise.
10972         (SQL_API_SQLEXTENDEDFETCH): likewise.
10973         (SQL_API_SQLFOREIGNKEYS): likewise.
10974         (SQL_API_SQLMORERESULTS): likewise.
10975         (SQL_API_SQLNATIVESQL): likewise.
10976         (SQL_API_SQLNUMPARAMS): likewise.
10977         (SQL_API_SQLPARAMOPTIONS): likewise.
10978         (SQL_API_SQLPRIMARYKEYS): likewise.
10979         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10980         (SQL_API_SQLPROCEDURES): likewise.
10981         (SQL_API_SQLSETPOS): likewise.
10982         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10983         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10984         (SQL_ASYNC_ENABLE): likewise.
10985         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10986         (SQL_ASYNC_ENABLE_OFF): likewise.
10987         (SQL_ASYNC_ENABLE_ON): likewise.
10988         (SQL_ATTR_READONLY): likewise.
10989         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10990         (SQL_ATTR_WRITE): likewise.
10991         (SQL_AUTOCOMMIT): likewise.
10992         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10993         (SQL_AUTOCOMMIT_OFF): likewise.
10994         (SQL_AUTOCOMMIT_ON): likewise.
10995         (SQL_BEST_ROWID): likewise.
10996         (SQL_BIGINT): likewise.
10997         (SQL_BINARY): likewise.
10998         (SQL_BIND_BY_COLUMN): likewise.
10999         (SQL_BIND_TYPE): likewise.
11000         (SQL_BIND_TYPE_DEFAULT): likewise.
11001         (SQL_BIT): likewise.
11002         (SQL_BOOKMARK_PERSISTENCE): likewise.
11003         (SQL_BP_CLOSE): likewise.
11004         (SQL_BP_DELETE): likewise.
11005         (SQL_BP_DROP): likewise.
11006         (SQL_BP_OTHER_HSTMT): likewise.
11007         (SQL_BP_SCROLL): likewise.
11008         (SQL_BP_TRANSACTION): likewise.
11009         (SQL_BP_UPDATE): likewise.
11010         (SQL_C_BINARY): likewise.
11011         (SQL_C_BIT): likewise.
11012         (SQL_C_BOOKMARK): likewise.
11013         (SQL_C_CHAR): likewise.
11014         (SQL_C_DATE): likewise.
11015         (SQL_C_DEFAULT): likewise.
11016         (SQL_C_DOUBLE): likewise.
11017         (SQL_C_FLOAT): likewise.
11018         (SQL_C_LONG): likewise.
11019         (SQL_C_SHORT): likewise.
11020         (SQL_C_SLONG): likewise.
11021         (SQL_C_SSHORT): likewise.
11022         (SQL_C_STINYINT): likewise.
11023         (SQL_C_TIME): likewise.
11024         (SQL_C_TIMESTAMP): likewise.
11025         (SQL_C_TINYINT): likewise.
11026         (SQL_C_ULONG): likewise.
11027         (SQL_C_USHORT): likewise.
11028         (SQL_C_UTINYINT): likewise.
11029         (SQL_CB_NON_NULL): likewise.
11030         (SQL_CB_NULL): likewise.
11031         (SQL_CC_CLOSE): likewise.
11032         (SQL_CC_DELETE): likewise.
11033         (SQL_CC_PRESERVE): likewise.
11034         (SQL_CN_ANY): likewise.
11035         (SQL_CN_DIFFERENT): likewise.
11036         (SQL_CN_NONE): likewise.
11037         (SQL_COLATT_OPT_MAX): likewise.
11038         (SQL_COLATT_OPT_MIN): likewise.
11039         (SQL_COLUMN_ALIAS): likewise.
11040         (SQL_COLUMN_AUTO_INCREMENT): likewise.
11041         (SQL_COLUMN_CASE_SENSITIVE): likewise.
11042         (SQL_COLUMN_COUNT): likewise.
11043         (SQL_COLUMN_DISPLAY_SIZE): likewise.
11044         (SQL_COLUMN_DRIVER_START): likewise.
11045         (SQL_COLUMN_LABEL): likewise.
11046         (SQL_COLUMN_LENGTH): likewise.
11047         (SQL_COLUMN_MONEY): likewise.
11048         (SQL_COLUMN_NAME): likewise.
11049         (SQL_COLUMN_NULLABLE): likewise.
11050         (SQL_COLUMN_OWNER_NAME): likewise.
11051         (SQL_COLUMN_PRECISION): likewise.
11052         (SQL_COLUMN_QUALIFIER_NAME): likewise.
11053         (SQL_COLUMN_SCALE): likewise.
11054         (SQL_COLUMN_SEARCHABLE): likewise.
11055         (SQL_COLUMN_TABLE_NAME): likewise.
11056         (SQL_COLUMN_TYPE): likewise.
11057         (SQL_COLUMN_TYPE_NAME): likewise.
11058         (SQL_COLUMN_UNSIGNED): likewise.
11059         (SQL_COLUMN_UPDATABLE): likewise.
11060         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
11061         (SQL_CONCUR_DEFAULT): likewise.
11062         (SQL_CONCUR_LOCK): likewise.
11063         (SQL_CONCUR_READ_ONLY): likewise.
11064         (SQL_CONCUR_ROWVER): likewise.
11065         (SQL_CONCUR_TIMESTAMP): likewise.
11066         (SQL_CONCUR_VALUES): likewise.
11067         (SQL_CONCURRENCY): likewise.
11068         (SQL_CONN_OPT_MAX): likewise.
11069         (SQL_CONN_OPT_MIN): likewise.
11070         (SQL_CONNECT_OPT_DRVR_START): likewise.
11071         (SQL_CONVERT_BIGINT): likewise.
11072         (SQL_CONVERT_BINARY): likewise.
11073         (SQL_CONVERT_BIT): likewise.
11074         (SQL_CONVERT_CHAR): likewise.
11075         (SQL_CONVERT_DATE): likewise.
11076         (SQL_CONVERT_DECIMAL): likewise.
11077         (SQL_CONVERT_DOUBLE): likewise.
11078         (SQL_CONVERT_FLOAT): likewise.
11079         (SQL_CONVERT_FUNCTIONS): likewise.
11080         (SQL_CONVERT_INTEGER): likewise.
11081         (SQL_CONVERT_LONGVARBINARY): likewise.
11082         (SQL_CONVERT_LONGVARCHAR): likewise.
11083         (SQL_CONVERT_NUMERIC): likewise.
11084         (SQL_CONVERT_REAL): likewise.
11085         (SQL_CONVERT_SMALLINT): likewise.
11086         (SQL_CONVERT_TIME): likewise.
11087         (SQL_CONVERT_TIMESTAMP): likewise.
11088         (SQL_CONVERT_TINYINT): likewise.
11089         (SQL_CONVERT_VARBINARY): likewise.
11090         (SQL_CONVERT_VARCHAR): likewise.
11091         (SQL_CORRELATION_NAME): likewise.
11092         (SQL_CR_CLOSE): likewise.
11093         (SQL_CR_DELETE): likewise.
11094         (SQL_CR_PRESERVE): likewise.
11095         (SQL_CUR_DEFAULT): likewise.
11096         (SQL_CUR_USE_DRIVER): likewise.
11097         (SQL_CUR_USE_IF_NEEDED): likewise.
11098         (SQL_CUR_USE_ODBC): likewise.
11099         (SQL_CURRENT_QUALIFIER): likewise.
11100         (SQL_CURSOR_DYNAMIC): likewise.
11101         (SQL_CURSOR_FORWARD_ONLY): likewise.
11102         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
11103         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
11104         (SQL_CURSOR_STATIC): likewise.
11105         (SQL_CURSOR_TYPE): likewise.
11106         (SQL_CURSOR_TYPE_DEFAULT): likewise.
11107         (SQL_CVT_BIGINT): likewise.
11108         (SQL_CVT_BINARY): likewise.
11109         (SQL_CVT_BIT): likewise.
11110         (SQL_CVT_CHAR): likewise.
11111         (SQL_CVT_DATE): likewise.
11112         (SQL_CVT_DECIMAL): likewise.
11113         (SQL_CVT_DOUBLE): likewise.
11114         (SQL_CVT_FLOAT): likewise.
11115         (SQL_CVT_INTEGER): likewise.
11116         (SQL_CVT_LONGVARBINARY): likewise.
11117         (SQL_CVT_LONGVARCHAR): likewise.
11118         (SQL_CVT_NUMERIC): likewise.
11119         (SQL_CVT_REAL): likewise.
11120         (SQL_CVT_SMALLINT): likewise.
11121         (SQL_CVT_TIME): likewise.
11122         (SQL_CVT_TIMESTAMP): likewise.
11123         (SQL_CVT_TINYINT): likewise.
11124         (SQL_CVT_VARBINARY): likewise.
11125         (SQL_CVT_VARCHAR): likewise.
11126         (SQL_DATABASE_NAME): likewise.
11127         (SQL_DATE): likewise.
11128         (SQL_DRIVER_HDBC): likewise.
11129         (SQL_DRIVER_HENV): likewise.
11130         (SQL_DRIVER_HLIB): likewise.
11131         (SQL_DRIVER_HSTMT): likewise.
11132         (SQL_DRIVER_NAME): likewise.
11133         (SQL_DRIVER_ODBC_VER): likewise.
11134         (SQL_DRIVER_VER): likewise.
11135         (SQL_ENSURE): likewise.
11136         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
11137         (SQL_EXT_API_LAST): likewise.
11138         (SQL_EXT_API_START): likewise.
11139         (SQL_FD_FETCH_BOOKMARK): likewise.
11140         (SQL_FD_FETCH_PREV): likewise.
11141         (SQL_FD_FETCH_RESUME): likewise.
11142         (SQL_FETCH_PREV): likewise.
11143         (SQL_FETCH_RESUME): likewise.
11144         (SQL_FILE_NOT_SUPPORTED): likewise.
11145         (SQL_FILE_QUALIFIER): likewise.
11146         (SQL_FILE_TABLE): likewise.
11147         (SQL_FILE_USAGE): likewise.
11148         (SQL_FN_CVT_CONVERT): likewise.
11149         (SQL_FN_NUM_ABS): likewise.
11150         (SQL_FN_NUM_ACOS): likewise.
11151         (SQL_FN_NUM_ASIN): likewise.
11152         (SQL_FN_NUM_ATAN): likewise.
11153         (SQL_FN_NUM_ATAN2): likewise.
11154         (SQL_FN_NUM_CEILING): likewise.
11155         (SQL_FN_NUM_COS): likewise.
11156         (SQL_FN_NUM_COT): likewise.
11157         (SQL_FN_NUM_DEGREES): likewise.
11158         (SQL_FN_NUM_EXP): likewise.
11159         (SQL_FN_NUM_FLOOR): likewise.
11160         (SQL_FN_NUM_LOG): likewise.
11161         (SQL_FN_NUM_LOG10): likewise.
11162         (SQL_FN_NUM_MOD): likewise.
11163         (SQL_FN_NUM_PI): likewise.
11164         (SQL_FN_NUM_POWER): likewise.
11165         (SQL_FN_NUM_RADIANS): likewise.
11166         (SQL_FN_NUM_RAND): likewise.
11167         (SQL_FN_NUM_ROUND): likewise.
11168         (SQL_FN_NUM_SIGN): likewise.
11169         (SQL_FN_NUM_SIN): likewise.
11170         (SQL_FN_NUM_SQRT): likewise.
11171         (SQL_FN_NUM_TAN): likewise.
11172         (SQL_FN_NUM_TRUNCATE): likewise.
11173         (SQL_FN_STR_ASCII): likewise.
11174         (SQL_FN_STR_CHAR): likewise.
11175         (SQL_FN_STR_CONCAT): likewise.
11176         (SQL_FN_STR_DIFFERENCE): likewise.
11177         (SQL_FN_STR_INSERT): likewise.
11178         (SQL_FN_STR_LCASE): likewise.
11179         (SQL_FN_STR_LEFT): likewise.
11180         (SQL_FN_STR_LENGTH): likewise.
11181         (SQL_FN_STR_LOCATE): likewise.
11182         (SQL_FN_STR_LOCATE_2): likewise.
11183         (SQL_FN_STR_LTRIM): likewise.
11184         (SQL_FN_STR_REPEAT): likewise.
11185         (SQL_FN_STR_REPLACE): likewise.
11186         (SQL_FN_STR_RIGHT): likewise.
11187         (SQL_FN_STR_RTRIM): likewise.
11188         (SQL_FN_STR_SOUNDEX): likewise.
11189         (SQL_FN_STR_SPACE): likewise.
11190         (SQL_FN_STR_SUBSTRING): likewise.
11191         (SQL_FN_STR_UCASE): likewise.
11192         (SQL_FN_SYS_DBNAME): likewise.
11193         (SQL_FN_SYS_IFNULL): likewise.
11194         (SQL_FN_SYS_USERNAME): likewise.
11195         (SQL_FN_TD_CURDATE): likewise.
11196         (SQL_FN_TD_CURTIME): likewise.
11197         (SQL_FN_TD_DAYNAME): likewise.
11198         (SQL_FN_TD_DAYOFMONTH): likewise.
11199         (SQL_FN_TD_DAYOFWEEK): likewise.
11200         (SQL_FN_TD_DAYOFYEAR): likewise.
11201         (SQL_FN_TD_HOUR): likewise.
11202         (SQL_FN_TD_MINUTE): likewise.
11203         (SQL_FN_TD_MONTH): likewise.
11204         (SQL_FN_TD_MONTHNAME): likewise.
11205         (SQL_FN_TD_NOW): likewise.
11206         (SQL_FN_TD_QUARTER): likewise.
11207         (SQL_FN_TD_SECOND): likewise.
11208         (SQL_FN_TD_TIMESTAMPadd): likewise.
11209         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
11210         (SQL_FN_TD_WEEK): likewise.
11211         (SQL_FN_TD_YEAR): likewise.
11212         (SQL_FN_TSI_DAY): likewise.
11213         (SQL_FN_TSI_FRAC_SECOND): likewise.
11214         (SQL_FN_TSI_HOUR): likewise.
11215         (SQL_FN_TSI_MINUTE): likewise.
11216         (SQL_FN_TSI_MONTH): likewise.
11217         (SQL_FN_TSI_QUARTER): likewise.
11218         (SQL_FN_TSI_SECOND): likewise.
11219         (SQL_FN_TSI_WEEK): likewise.
11220         (SQL_FN_TSI_YEAR): likewise.
11221         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
11222         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
11223         (SQL_GB_NO_RELATION): likewise.
11224         (SQL_GB_NOT_SUPPORTED): likewise.
11225         (SQL_GD_BLOCK): likewise.
11226         (SQL_GD_BOUND): likewise.
11227         (SQL_GET_BOOKMARK): likewise.
11228         (SQL_GROUP_BY): likewise.
11229         (SQL_INFO_DRIVER_START): likewise.
11230         (SQL_INFO_FIRST): likewise.
11231         (SQL_INFO_LAST): likewise.
11232         (SQL_INTERVAL_DAY): likewise.
11233         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
11234         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
11235         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
11236         (SQL_INTERVAL_HOUR): likewise.
11237         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
11238         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
11239         (SQL_INTERVAL_MINUTE): likewise.
11240         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11241         (SQL_INTERVAL_MONTH): likewise.
11242         (SQL_INTERVAL_SECOND): likewise.
11243         (SQL_INTERVAL_YEAR): likewise.
11244         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11245         (SQL_KEYSET_SIZE): likewise.
11246         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11247         (SQL_KEYWORDS): likewise.
11248         (SQL_LCK_EXCLUSIVE): likewise.
11249         (SQL_LCK_NO_CHANGE): likewise.
11250         (SQL_LCK_UNLOCK): likewise.
11251         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11252         (SQL_LIKE_ONLY): likewise.
11253         (SQL_LOCK_TYPES): likewise.
11254         (SQL_LOGIN_TIMEOUT): likewise.
11255         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11256         (SQL_LONGVARBINARY): likewise.
11257         (SQL_LONGVARCHAR): likewise.
11258         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11259         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11260         (SQL_MAX_DSN_LENGTH): likewise.
11261         (SQL_MAX_LENGTH): likewise.
11262         (SQL_MAX_LENGTH_DEFAULT): likewise.
11263         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11264         (SQL_MAX_OWNER_NAME_LEN): likewise.
11265         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11266         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11267         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11268         (SQL_MAX_ROWS): likewise.
11269         (SQL_MAX_ROWS_DEFAULT): likewise.
11270         (SQL_MODE_DEFAULT): likewise.
11271         (SQL_MODE_READ_ONLY): likewise.
11272         (SQL_MODE_READ_WRITE): likewise.
11273         (SQL_MULT_RESULT_SETS): likewise.
11274         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11275         (SQL_NC_END): likewise.
11276         (SQL_NC_START): likewise.
11277         (SQL_NEED_LONG_DATA_LEN): likewise.
11278         (SQL_NNC_NON_NULL): likewise.
11279         (SQL_NNC_NULL): likewise.
11280         (SQL_NO_TOTAL): likewise.
11281         (SQL_NON_NULLABLE_COLUMNS): likewise.
11282         (SQL_NOSCAN): likewise.
11283         (SQL_NOSCAN_DEFAULT): likewise.
11284         (SQL_NOSCAN_OFF): likewise.
11285         (SQL_NOSCAN_ON): likewise.
11286         (SQL_NUM_EXTENSIONS): likewise.
11287         (SQL_NUM_FUNCTIONS): likewise.
11288         (SQL_NUMERIC_FUNCTIONS): likewise.
11289         (SQL_OAC_LEVEL1): likewise.
11290         (SQL_OAC_LEVEL2): likewise.
11291         (SQL_OAC_NONE): likewise.
11292         (SQL_ODBC_API_CONFORMANCE): likewise.
11293         (SQL_ODBC_CURSORS): likewise.
11294         (SQL_ODBC_KEYWORDS): likewise.
11295         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11296         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11297         (SQL_ODBC_SQL_OPT_IEF): likewise.
11298         (SQL_ODBC_VER): likewise.
11299         (SQL_OPT_TRACE): likewise.
11300         (SQL_OPT_TRACE_DEFAULT): likewise.
11301         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11302         (SQL_OPT_TRACE_OFF): likewise.
11303         (SQL_OPT_TRACE_ON): likewise.
11304         (SQL_OPT_TRACEFILE): likewise.
11305         (SQL_OSC_CORE): likewise.
11306         (SQL_OSC_EXTENDED): likewise.
11307         (SQL_OSC_MINIMUM): likewise.
11308         (SQL_OSCC_COMPLIANT): likewise.
11309         (SQL_OSCC_NOT_COMPLIANT): likewise.
11310         (SQL_OU_DML_STATEMENTS): likewise.
11311         (SQL_OU_INDEX_DEFINITION): likewise.
11312         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11313         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11314         (SQL_OU_TABLE_DEFINITION): likewise.
11315         (SQL_OUTER_JOINS): likewise.
11316         (SQL_OWNER_TERM): likewise.
11317         (SQL_OWNER_USAGE): likewise.
11318         (SQL_PACKET_SIZE): likewise.
11319         (SQL_PC_NOT_PSEUDO): likewise.
11320         (SQL_POS_add): likewise.
11321         (SQL_POS_DELETE): likewise.
11322         (SQL_POS_OPERATIONS): likewise.
11323         (SQL_POS_POSITION): likewise.
11324         (SQL_POS_REFRESH): likewise.
11325         (SQL_POS_UPDATE): likewise.
11326         (SQL_POSITIONED_STATEMENTS): likewise.
11327         (SQL_PROCEDURE_TERM): likewise.
11328         (SQL_PROCEDURES): likewise.
11329         (SQL_PS_POSITIONED_DELETE): likewise.
11330         (SQL_PS_POSITIONED_UPDATE): likewise.
11331         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11332         (SQL_QL_END): likewise.
11333         (SQL_QL_START): likewise.
11334         (SQL_QU_DML_STATEMENTS): likewise.
11335         (SQL_QU_INDEX_DEFINITION): likewise.
11336         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11337         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11338         (SQL_QU_TABLE_DEFINITION): likewise.
11339         (SQL_QUALIFIER_LOCATION): likewise.
11340         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11341         (SQL_QUALIFIER_TERM): likewise.
11342         (SQL_QUALIFIER_USAGE): likewise.
11343         (SQL_QUERY_TIMEOUT): likewise.
11344         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11345         (SQL_QUICK): likewise.
11346         (SQL_QUIET_MODE): likewise.
11347         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11348         (SQL_RD_DEFAULT): likewise.
11349         (SQL_RD_OFF): likewise.
11350         (SQL_RD_ON): likewise.
11351         (SQL_RETRIEVE_DATA): likewise.
11352         (SQL_ROW_NUMBER): likewise.
11353         (SQL_ROW_UPDATES): likewise.
11354         (SQL_ROWSET_SIZE): likewise.
11355         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11356         (SQL_ROWVER): likewise.
11357         (SQL_SC_NON_UNIQUE): likewise.
11358         (SQL_SC_TRY_UNIQUE): likewise.
11359         (SQL_SC_UNIQUE): likewise.
11360         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11361         (SQL_SCROLL_DYNAMIC): likewise.
11362         (SQL_SCROLL_FORWARD_ONLY): likewise.
11363         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11364         (SQL_SCROLL_OPTIONS): likewise.
11365         (SQL_SCROLL_STATIC): likewise.
11366         (SQL_SEARCHABLE): likewise.
11367         (SQL_SIGNED_OFFSET): likewise.
11368         (SQL_SIMULATE_CURSOR): likewise.
11369         (SQL_SO_DYNAMIC): likewise.
11370         (SQL_SO_FORWARD_ONLY): likewise.
11371         (SQL_SO_KEYSET_DRIVEN): likewise.
11372         (SQL_SO_MIXED): likewise.
11373         (SQL_SO_STATIC): likewise.
11374         (SQL_SPEC_MAJOR): likewise.
11375         (SQL_SPEC_MINOR): likewise.
11376         (SQL_SPEC_STRING): likewise.
11377         (SQL_SQ_COMPARISON): likewise.
11378         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11379         (SQL_SQ_EXISTS): likewise.
11380         (SQL_SQ_IN): likewise.
11381         (SQL_SQ_QUANTIFIED): likewise.
11382         (SQL_SQLSTATE_SIZE): likewise.
11383         (SQL_SS_addITIONS): likewise.
11384         (SQL_SS_DELETIONS): likewise.
11385         (SQL_SS_UPDATES): likewise.
11386         (SQL_STATIC_SENSITIVITY): likewise.
11387         (SQL_STMT_OPT_MAX): likewise.
11388         (SQL_STMT_OPT_MIN): likewise.
11389         (SQL_STRING_FUNCTIONS): likewise.
11390         (SQL_SUBQUERIES): likewise.
11391         (SQL_SYSTEM_FUNCTIONS): likewise.
11392         (SQL_TABLE_STAT): likewise.
11393         (SQL_TABLE_TERM): likewise.
11394         (SQL_TIME): likewise.
11395         (SQL_TIMEDATE_add_INTERVALS): likewise.
11396         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11397         (SQL_TIMEDATE_FUNCTIONS): likewise.
11398         (SQL_TIMESTAMP): likewise.
11399         (SQL_TINYINT): likewise.
11400         (SQL_TRANSLATE_DLL): likewise.
11401         (SQL_TRANSLATE_OPTION): likewise.
11402         (SQL_TXN_ISOLATION): likewise.
11403         (SQL_TXN_VERSIONING): likewise.
11404         (SQL_TYPE_DRIVER_END): likewise.
11405         (SQL_TYPE_DRIVER_START): likewise.
11406         (SQL_TYPE_MAX): likewise.
11407         (SQL_TYPE_MIN): likewise.
11408         (SQL_TYPE_NULL): likewise.
11409         (SQL_U_UNION): likewise.
11410         (SQL_U_UNION_ALL): likewise.
11411         (SQL_UB_DEFAULT): likewise.
11412         (SQL_UB_OFF): likewise.
11413         (SQL_UB_ON): likewise.
11414         (SQL_UNICODE): likewise.
11415         (SQL_UNICODE_CHAR): likewise.
11416         (SQL_UNICODE_LONGVARCHAR): likewise.
11417         (SQL_UNICODE_VARCHAR): likewise.
11418         (SQL_UNION): likewise.
11419         (SQL_UNSEARCHABLE): likewise.
11420         (SQL_UNSIGNED_OFFSET): likewise.
11421         (SQL_USE_BOOKMARKS): likewise.
11422         (SQL_VARBINARY): likewise.
11423         (SQL_TRUE): add define for ODBC3.x.
11424         (SQL_FALSE): likewise.
11425         (SQL_AM_CONNECTION): likewise.
11426         (SQL_AM_NONE): likewise.
11427         (SQL_AM_STATEMENT): likewise.
11428         (SQL_API_SQLALLOCHANDLE): likewise.
11429         (SQL_API_SQLBINDPARAM): likewise.
11430         (SQL_API_SQLCLOSECURSOR): likewise.
11431         (SQL_API_SQLCOLATTRIBUTE): likewise.
11432         (SQL_API_SQLCOPYDESC): likewise.
11433         (SQL_API_SQLENDTRAN): likewise.
11434         (SQL_API_SQLFETCHSCROLL): likewise.
11435         (SQL_API_SQLFREEHANDLE): likewise.
11436         (SQL_API_SQLGETCONNECTATTR): likewise.
11437         (SQL_API_SQLGETDESCFIELD): likewise.
11438         (SQL_API_SQLGETDESCREC): likewise.
11439         (SQL_API_SQLGETDIAGFIELD): likewise.
11440         (SQL_API_SQLGETDIAGREC): likewise.
11441         (SQL_API_SQLGETENVATTR): likewise.
11442         (SQL_API_SQLGETSTMTATTR): likewise.
11443         (SQL_API_SQLSETCONNECTATTR): likewise.
11444         (SQL_API_SQLSETDESCFIELD): likewise.
11445         (SQL_API_SQLSETDESCREC): likewise.
11446         (SQL_API_SQLSETENVATTR): likewise.
11447         (SQL_API_SQLSETSTMTATTR): likewise.
11448         (SQL_ARD_TYPE): likewise.
11449         (SQL_AT_add_CONSTRAINT): likewise.
11450         (SQL_ATTR_APP_PARAM_DESC): likewise.
11451         (SQL_ATTR_APP_ROW_DESC): likewise.
11452         (SQL_ATTR_AUTO_IPD): likewise.
11453         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11454         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11455         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11456         (SQL_ATTR_IMP_ROW_DESC): likewise.
11457         (SQL_ATTR_METADATA_ID): likewise.
11458         (SQL_ATTR_OUTPUT_NTS): likewise.
11459         (SQL_CATALOG_NAME): likewise.
11460         (SQL_CODE_DATE): likewise.
11461         (SQL_CODE_TIME): likewise.
11462         (SQL_CODE_TIMESTAMP): likewise.
11463         (SQL_COLLATION_SEQ): likewise.
11464         (SQL_CURSOR_SENSITIVITY): likewise.
11465         (SQL_DATE_LEN): likewise.
11466         (SQL_DATETIME): likewise.
11467         (SQL_DEFAULT): likewise.
11468         (SQL_DESC_ALLOC_AUTO): likewise.
11469         (SQL_DESC_ALLOC_TYPE): likewise.
11470         (SQL_DESC_ALLOC_USER): likewise.
11471         (SQL_DESC_COUNT): likewise.
11472         (SQL_DESC_DATA_PTR): likewise.
11473         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11474         (SQL_DESC_INDICATOR_PTR): likewise.
11475         (SQL_DESC_LENGTH): likewise.
11476         (SQL_DESC_NAME): likewise.
11477         (SQL_DESC_NULLABLE): likewise.
11478         (SQL_DESC_OCTET_LENGTH): likewise.
11479         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11480         (SQL_DESC_PRECISION): likewise.
11481         (SQL_DESC_SCALE): likewise.
11482         (SQL_DESC_TYPE): likewise.
11483         (SQL_DESC_UNNAMED): likewise.
11484         (SQL_DESCRIBE_PARAMETER): likewise.
11485         (SQL_DIAG_ALTER_DOMAIN): likewise.
11486         (SQL_DIAG_ALTER_TABLE): likewise.
11487         (SQL_DIAG_CALL): likewise.
11488         (SQL_DIAG_CLASS_ORIGIN): likewise.
11489         (SQL_DIAG_CONNECTION_NAME): likewise.
11490         (SQL_DIAG_CREATE_ASSERTION): likewise.
11491         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11492         (SQL_DIAG_CREATE_COLLATION): likewise.
11493         (SQL_DIAG_CREATE_DOMAIN): likewise.
11494         (SQL_DIAG_CREATE_INDEX): likewise.
11495         (SQL_DIAG_CREATE_SCHEMA): likewise.
11496         (SQL_DIAG_CREATE_TABLE): likewise.
11497         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11498         (SQL_DIAG_CREATE_VIEW): likewise.
11499         (SQL_DIAG_DELETE_WHERE): likewise.
11500         (SQL_DIAG_DROP_ASSERTION): likewise.
11501         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11502         (SQL_DIAG_DROP_COLLATION): likewise.
11503         (SQL_DIAG_DROP_DOMAIN): likewise.
11504         (SQL_DIAG_DROP_INDEX): likewise.
11505         (SQL_DIAG_DROP_SCHEMA): likewise.
11506         (SQL_DIAG_DROP_TABLE): likewise.
11507         (SQL_DIAG_DROP_TRANSLATION): likewise.
11508         (SQL_DIAG_DROP_VIEW): likewise.
11509         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11510         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11511         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11512         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11513         (SQL_DIAG_GRANT): likewise.
11514         (SQL_DIAG_INSERT): likewise.
11515         (SQL_DIAG_MESSAGE_TEXT): likewise.
11516         (SQL_DIAG_NATIVE): likewise.
11517         (SQL_DIAG_NUMBER): likewise.
11518         (SQL_DIAG_RETURNCODE): likewise.
11519         (SQL_DIAG_REVOKE): likewise.
11520         (SQL_DIAG_ROW_COUNT): likewise.
11521         (SQL_DIAG_SELECT_CURSOR): likewise.
11522         (SQL_DIAG_SERVER_NAME): likewise.
11523         (SQL_DIAG_SQLSTATE): likewise.
11524         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11525         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11526         (SQL_DIAG_UPDATE_WHERE): likewise.
11527         (SQL_FALSE): likewise.
11528         (SQL_FETCH_ABSOLUTE): likewise.
11529         (SQL_FETCH_LAST): likewise.
11530         (SQL_FETCH_PRIOR): likewise.
11531         (SQL_FETCH_RELATIVE): likewise.
11532         (SQL_HANDLE_DBC): likewise.
11533         (SQL_HANDLE_DESC): likewise.
11534         (SQL_HANDLE_ENV): likewise.
11535         (SQL_HANDLE_STMT): likewise.
11536         (SQL_INSENSITIVE): likewise.
11537         (SQL_INTEGRITY): likewise.
11538         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11539         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11540         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11541         (SQL_MAX_IDENTIFIER_LEN): likewise.
11542         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11543         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11544         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11545         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11546         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11547         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11548         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11549         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11550         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11551         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11552         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11553         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11554         (SQL_MAXIMUM_ROW_SIZE): likewise.
11555         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11556         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11557         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11558         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11559         (SQL_NAMED): likewise.
11560         (SQL_NONSCROLLABLE): likewise.
11561         (SQL_NTSL): likewise.
11562         (SQL_NULL_HANDLE): likewise.
11563         (SQL_NULL_HDESC): likewise.
11564         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11565         (SQL_PRED_BASIC): likewise.
11566         (SQL_PRED_CHAR): likewise.
11567         (SQL_PRED_NONE): likewise.
11568         (SQL_ROW_IDENTIFIER): likewise.
11569         (SQL_SCROLLABLE): likewise.
11570         (SQL_SENSITIVE): likewise.
11571         (SQL_SUCCEEDED(rc)): likewise.
11572         (SQL_TIME_LEN): likewise.
11573         (SQL_TIMESTAMP_LEN): likewise.
11574         (SQL_TRANSACTION_CAPABLE): likewise.
11575         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11576         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11577         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11578         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11579         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11580         (SQL_TYPE_DATE): likewise.
11581         (SQL_TYPE_TIME): likewise.
11582         (SQL_TYPE_TIMESTAMP): likewise.
11583         (SQL_UNKNOWN_TYPE): likewise.
11584         (SQL_UNNAMED): likewise.
11585         (SQL_UNSPECIFIED): likewise.
11586         (SQL_XOPEN_CLI_YEAR): likewise.
11587         (SQLAllocConnect): add comment marking as deperecated.
11588         (SQLAllocEnv): likewise.
11589         (SQLAllocStmt): likewise.
11590         (SQLFreeConnect): likewise.
11591         (SQLFreeEnv): likewise.
11592         (SQLGetConnectOption): likewise.
11593         (SQLGetStmtOption): likewise.
11594
11595         * include/sqlext.h (#include <sqlucode.h>): add directive.
11596         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11597         (SQLColAttributes): likewise.
11598         (SQLBulkOperations): add function prototype.
11599         (SQLAllocHandleStd): likewise
11600         (TraceReturn): add Trace API prototype.
11601         (TraceVersion): likewise.
11602         (ODBCGetTryWaitValue):likewise.
11603         (ODBCSetTryWaitValue): likewise.
11604         (SQL_LOCK_RECORD): correct function macro.
11605         (SQL_REFRESH_RECORD): likewise.
11606         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11607         _WIN64 compatability.
11608         move defines for non-core functions from sql.h to sqlext.h (refer
11609         changes for sql.h)
11610         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11611         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11612         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11613         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11614         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11615         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11616         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11617         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11618         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11619         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11620         (SQL_AF_ALL): likewise.
11621         (SQL_AF_AVG): likewise.
11622         (SQL_AF_COUNT): likewise.
11623         (SQL_AF_DISTINCT): likewise.
11624         (SQL_AF_MAX): likewise.
11625         (SQL_AF_MIN): likewise.
11626         (SQL_AF_SUM): likewise.
11627         (SQL_AGGREGATE_FUNCTIONS): likewise.
11628         (SQL_ALL_CATALOGS): likewise.
11629         (SQL_ALL_SCHEMAS): likewise.
11630         (SQL_ALL_TABLE_TYPES): likewise.
11631         (SQL_ALTER_DOMAIN): likewise.
11632         (SQL_AM_CONNECTION): likewise.
11633         (SQL_AM_NONE): likewise.
11634         (SQL_AM_STATEMENT): likewise.
11635         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11636         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11637         (SQL_API_SQLALLOCHANDLESTD): likewise.
11638         (SQL_API_SQLBULKOPERATIONS): likewise.
11639         (SQL_ASYNC_MODE): likewise.
11640         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11641         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11642         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11643         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11644         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11645         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11646         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11647         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11648         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11649         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11650         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11651         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11652         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11653         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11654         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11655         (SQL_ATTR_ACCESS_MODE): likewise.
11656         (SQL_ATTR_ASYNC_ENABLE): likewise.
11657         (SQL_ATTR_AUTOCOMMIT): likewise.
11658         (SQL_ATTR_CONCURRENCY): likewise.
11659         (SQL_ATTR_CONNECTION_POOLING): likewise.
11660         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11661         (SQL_ATTR_CP_MATCH): likewise.
11662         (SQL_ATTR_CURRENT_CATALOG): likewise.
11663         (SQL_ATTR_CURSOR_TYPE): likewise.
11664         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11665         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11666         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11667         (SQL_ATTR_ENLIST_IN_XA): likewise.
11668         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11669         (SQL_ATTR_KEYSET_SIZE): likewise.
11670         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11671         (SQL_ATTR_MAX_LENGTH): likewise.
11672         (SQL_ATTR_MAX_ROWS): likewise.
11673         (SQL_ATTR_NOSCAN): likewise.
11674         (SQL_ATTR_ODBC_CURSORS): likewise.
11675         (SQL_ATTR_ODBC_VERSION): likewise.
11676         (SQL_ATTR_PACKET_SIZE): likewise.
11677         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11678         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11679         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11680         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11681         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11682         (SQL_ATTR_PARAMSET_SIZE): likewise.
11683         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11684         (SQL_ATTR_QUIET_MODE): likewise.
11685         (SQL_ATTR_RETRIEVE_DATA): likewise.
11686         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11687         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11688         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11689         (SQL_ATTR_ROW_NUMBER): likewise.
11690         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11691         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11692         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11693         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11694         (SQL_ATTR_TRACE): likewise.
11695         (SQL_ATTR_TRACEFILE): likewise.
11696         (SQL_ATTR_TRANSLATE_LIB): likewise.
11697         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11698         (SQL_ATTR_TXN_ISOLATION): likewise.
11699         (SQL_ATTR_USE_BOOKMARKS): likewise.
11700         (SQL_BATCH_ROW_COUNT): likewise.
11701         (SQL_BATCH_SUPPORT): likewise.
11702         (SQL_BRC_EXPLICIT): likewise.
11703         (SQL_BRC_PROCEDURES): likewise.
11704         (SQL_BRC_ROLLED_UP): likewise.
11705         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11706         (SQL_BS_ROW_COUNT_PROC): likewise.
11707         (SQL_BS_SELECT_EXPLICIT): likewise.
11708         (SQL_BS_SELECT_PROC): likewise.
11709         (SQL_C_INTERVAL_DAY): likewise.
11710         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11711         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11712         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11713         (SQL_C_INTERVAL_HOUR): likewise.
11714         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11715         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11716         (SQL_C_INTERVAL_MINUTE): likewise.
11717         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11718         (SQL_C_INTERVAL_MONTH): likewise.
11719         (SQL_C_INTERVAL_SECOND): likewise.
11720         (SQL_C_INTERVAL_YEAR): likewise.
11721         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11722         (SQL_C_NUMERIC): likewise.
11723         (SQL_C_SBIGINT): likewise.
11724         (SQL_C_TYPE_DATE): likewise.
11725         (SQL_C_TYPE_TIME): likewise.
11726         (SQL_C_TYPE_TIMESTAMP): likewise.
11727         (SQL_C_UBIGINT): likewise.
11728         (SQL_C_VARBOOKMARK): likewise.
11729         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11730         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11731         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11732         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11733         (SQL_CA_CREATE_ASSERTION): likewise.
11734         (SQL_CA1_ABSOLUTE): likewise.
11735         (SQL_CA1_BOOKMARK): likewise.
11736         (SQL_CA1_BULK_ADD): likewise.
11737         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11738         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11739         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11740         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11741         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11742         (SQL_CA1_LOCK_UNLOCK): likewise.
11743         (SQL_CA1_NEXT): likewise.
11744         (SQL_CA1_POS_DELETE): likewise.
11745         (SQL_CA1_POS_POSITION): likewise.
11746         (SQL_CA1_POS_REFRESH): likewise.
11747         (SQL_CA1_POS_UPDATE): likewise.
11748         (SQL_CA1_POSITIONED_DELETE): likewise.
11749         (SQL_CA1_POSITIONED_UPDATE): likewise.
11750         (SQL_CA1_RELATIVE): likewise.
11751         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11752         (SQL_CA2_CRC_APPROXIMATE): likewise.
11753         (SQL_CA2_CRC_EXACT): likewise.
11754         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11755         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11756         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11757         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11758         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11759         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11760         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11761         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11762         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11763         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11764         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11765         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11766         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11767         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11768         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11769         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11770         (SQL_CATALOG_LOCATION): likewise.
11771         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11772         (SQL_CATALOG_TERM): likewise.
11773         (SQL_CATALOG_USAGE): likewise.
11774         (SQL_CCOL_CREATE_COLLATION): likewise.
11775         (SQL_CCS_COLLATE_CLAUSE): likewise.
11776         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11777         (SQL_CCS_LIMITED_COLLATION): likewise.
11778         (SQL_CDO_COLLATION): likewise.
11779         (SQL_CDO_CONSTRAINT): likewise.
11780         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11781         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11782         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11783         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11784         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11785         (SQL_CDO_CREATE_DOMAIN): likewise.
11786         (SQL_CDO_DEFAULT): likewise.
11787         (SQL_CL_END): likewise.
11788         (SQL_CL_START): likewise.
11789         (SQL_COL_PRED_BASIC): likewise.
11790         (SQL_COL_PRED_CHAR): likewise.
11791         (SQL_COLUMN_DRIVER_START): likewise.
11792         (SQL_COLUMN_IGNORE): likewise.
11793         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11794         (SQL_CONVERT_GUID): likewise.
11795         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11796         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11797         (SQL_CONVERT_WCHAR): likewise.
11798         (SQL_CONVERT_WLONGVARCHAR): likewise.
11799         (SQL_CONVERT_WVARCHAR): likewise.
11800         (SQL_CP_DEFAULT): likewise.
11801         (SQL_CP_MATCH_DEFAULT): likewise.
11802         (SQL_CP_OFF): likewise.
11803         (SQL_CP_ONE_PER_DRIVER): likewise.
11804         (SQL_CP_ONE_PER_HENV): likewise.
11805         (SQL_CP_RELAXED_MATCH): likewise.
11806         (SQL_CP_STRICT_MATCH): likewise.
11807         (SQL_CREATE_ASSERTION): likewise.
11808         (SQL_CREATE_CHARACTER_SET): likewise.
11809         (SQL_CREATE_COLLATION): likewise.
11810         (SQL_CREATE_DOMAIN): likewise.
11811         (SQL_CREATE_SCHEMA): likewise.
11812         (SQL_CREATE_TABLE): likewise.
11813         (SQL_CREATE_TRANSLATION): likewise.
11814         (SQL_CREATE_VIEW): likewise.
11815         (SQL_CS_AUTHORIZATION): likewise.
11816         (SQL_CS_CREATE_SCHEMA): likewise.
11817         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11818         (SQL_CT_COLUMN_COLLATION): likewise.
11819         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11820         (SQL_CT_COLUMN_DEFAULT): likewise.
11821         (SQL_CT_COMMIT_DELETE): likewise.
11822         (SQL_CT_COMMIT_PRESERVE): likewise.
11823         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11824         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11825         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11826         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11827         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11828         (SQL_CT_CREATE_TABLE): likewise.
11829         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11830         (SQL_CT_LOCAL_TEMPORARY): likewise.
11831         (SQL_CT_TABLE_CONSTRAINT): likewise.
11832         (SQL_CTR_CREATE_TRANSLATION): likewise.
11833         (SQL_CU_DML_STATEMENTS): likewise.
11834         (SQL_CU_INDEX_DEFINITION): likewise.
11835         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11836         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11837         (SQL_CU_TABLE_DEFINITION): likewise.
11838         (SQL_CVT_GUID): likewise.
11839         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11840         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11841         (SQL_CVT_WCHAR): likewise.
11842         (SQL_CVT_WLONGVARCHAR): likewise.
11843         (SQL_CVT_WVARCHAR): likewise.
11844         (SQL_DA_DROP_ASSERTION): likewise.
11845         (SQL_DATETIME_LITERALS): likewise.
11846         (SQL_DB_DEFAULT): likewise.
11847         (SQL_DB_DISCONNECT): likewise.
11848         (SQL_DB_RETURN_TO_POOL): likewise.
11849         (SQL_DC_DROP_COLLATION): likewise.
11850         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11851         (SQL_DD_CASCADE): likewise.
11852         (SQL_DD_DROP_DOMAIN): likewise.
11853         (SQL_DD_RESTRICT): likewise.
11854         (SQL_DDL_INDEX): likewise.
11855         (SQL_DELETE_BY_BOOKMARK): likewise.
11856         (SQL_DESC_ARRAY_SIZE): likewise.
11857         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11858         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11859         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11860         (SQL_DESC_BASE_TABLE_NAME): likewise.
11861         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11862         (SQL_DESC_BIND_TYPE): likewise.
11863         (SQL_DESC_CASE_SENSITIVE): likewise.
11864         (SQL_DESC_CATALOG_NAME): likewise.
11865         (SQL_DESC_CONCISE_TYPE): likewise.
11866         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11867         (SQL_DESC_DISPLAY_SIZE): likewise.
11868         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11869         (SQL_DESC_LABEL): likewise.
11870         (SQL_DESC_LITERAL_PREFIX): likewise.
11871         (SQL_DESC_LITERAL_SUFFIX): likewise.
11872         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11873         (SQL_DESC_MAXIMUM_SCALE): likewise.
11874         (SQL_DESC_MINIMUM_SCALE): likewise.
11875         (SQL_DESC_NUM_PREC_RADIX): likewise.
11876         (SQL_DESC_PARAMETER_TYPE): likewise.
11877         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11878         (SQL_DESC_SCHEMA_NAME): likewise.
11879         (SQL_DESC_SEARCHABLE): likewise.
11880         (SQL_DESC_TABLE_NAME): likewise.
11881         (SQL_DESC_TYPE_NAME): likewise.
11882         (SQL_DESC_UNSIGNED): likewise.
11883         (SQL_DESC_UPDATABLE): likewise.
11884         (SQL_DI_CREATE_INDEX): likewise.
11885         (SQL_DI_DROP_INDEX): likewise.
11886         (SQL_DIAG_COLUMN_NUMBER): likewise.
11887         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11888         (SQL_DIAG_ROW_NUMBER): likewise.
11889         (SQL_DL_SQL92_DATE): likewise.
11890         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11891         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11892         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11893         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11894         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11895         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11896         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11897         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11898         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11899         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11900         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11901         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11902         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11903         (SQL_DL_SQL92_TIME): likewise.
11904         (SQL_DL_SQL92_TIMESTAMP): likewise.
11905         (SQL_DM_VER): likewise.
11906         (SQL_DRIVER_HDESC): likewise.
11907         (SQL_DROP_ASSERTION): likewise.
11908         (SQL_DROP_CHARACTER_SET): likewise.
11909         (SQL_DROP_COLLATION): likewise.
11910         (SQL_DROP_DOMAIN): likewise.
11911         (SQL_DROP_SCHEMA): likewise.
11912         (SQL_DROP_TABLE): likewise.
11913         (SQL_DROP_TRANSLATION): likewise.
11914         (SQL_DROP_VIEW): likewise.
11915         (SQL_DS_CASCADE): likewise.
11916         (SQL_DS_DROP_SCHEMA): likewise.
11917         (SQL_DS_RESTRICT): likewise.
11918         (SQL_DT_CASCADE): likewise.
11919         (SQL_DT_DROP_TABLE): likewise.
11920         (SQL_DT_RESTRICT): likewise.
11921         (SQL_DTC_DONE): likewise.
11922         (SQL_DTR_DROP_TRANSLATION): likewise.
11923         (SQL_DV_CASCADE): likewise.
11924         (SQL_DV_DROP_VIEW): likewise.
11925         (SQL_DV_RESTRICT): likewise.
11926         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11927         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11928         (SQL_EXT_API_LAST): likewise.
11929         (SQL_EXT_API_START): likewise.
11930         (SQL_FETCH_BY_BOOKMARK): likewise.
11931         (SQL_FETCH_FIRST_SYSTEM): likewise.
11932         (SQL_FETCH_FIRST_USER): likewise.
11933         (SQL_FN_CVT_CAST): likewise.
11934         (SQL_FN_STR_BIT_LENGTH): likewise.
11935         (SQL_FN_STR_CHAR_LENGTH): likewise.
11936         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11937         (SQL_FN_STR_OCTET_LENGTH): likewise.
11938         (SQL_FN_STR_POSITION): likewise.
11939         (SQL_FN_TD_CURRENT_DATE): likewise.
11940         (SQL_FN_TD_CURRENT_TIME): likewise.
11941         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11942         (SQL_FN_TD_EXTRACT): likewise.
11943         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11944         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11945         (SQL_FUNC_EXISTS(exists,api)): likewise.
11946         (SQL_GB_COLLATE): likewise.
11947         (SQL_HANDLE_SENV): likewise.
11948         (SQL_IK_ALL): likewise.
11949         (SQL_IK_ASC): likewise.
11950         (SQL_IK_DESC): likewise.
11951         (SQL_IK_NONE): likewise.
11952         (SQL_INDEX_KEYWORDS): likewise.
11953         (SQL_INFO_DRIVER_START): likewise.
11954         (SQL_INFO_LAST): likewise.
11955         (SQL_INFO_SCHEMA_VIEWS): likewise.
11956         (SQL_INITIALLY_DEFERRED): likewise.
11957         (SQL_INITIALLY_IMMEDIATE): likewise.
11958         (SQL_INSERT_STATEMENT): likewise.
11959         (SQL_INTERVAL): likewise.
11960         (SQL_IS_INSERT_LITERALS): likewise.
11961         (SQL_IS_INSERT_SEARCHED): likewise.
11962         (SQL_IS_INTEGER): likewise.
11963         (SQL_IS_POINTER): likewise.
11964         (SQL_IS_SELECT_INTO): likewise.
11965         (SQL_IS_SMALLINT): likewise.
11966         (SQL_IS_UINTEGER): likewise.
11967         (SQL_IS_USMALLINT): likewise.
11968         (SQL_ISV_ASSERTIONS): likewise.
11969         (SQL_ISV_CHARACTER_SETS): likewise.
11970         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11971         (SQL_ISV_COLLATIONS): likewise.
11972         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11973         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11974         (SQL_ISV_COLUMNS): likewise.
11975         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11976         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11977         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11978         (SQL_ISV_DOMAINS): likewise.
11979         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11980         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11981         (SQL_ISV_SCHEMATA): likewise.
11982         (SQL_ISV_SQL_LANGUAGES): likewise.
11983         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11984         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11985         (SQL_ISV_TABLES): likewise.
11986         (SQL_ISV_TRANSLATIONS): likewise.
11987         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11988         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11989         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11990         (SQL_ISV_VIEWS): likewise.
11991         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11992         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11993         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11994         (SQL_NO_COLUMN_NUMBER): likewise.
11995         (SQL_NO_ROW_NUMBER): likewise.
11996         (SQL_NOT_DEFERRABLE): likewise.
11997         (SQL_NUM_EXTENSIONS): likewise.
11998         (SQL_NUM_FUNCTIONS): likewise.
11999         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
12000         (SQL_OIC_CORE): likewise.
12001         (SQL_OIC_LEVEL1): likewise.
12002         (SQL_OIC_LEVEL2): likewise.
12003         (SQL_OV_ODBC2): likewise.
12004         (SQL_OV_ODBC3): likewise.
12005         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
12006         (SQL_PARAM_ARRAY_SELECTS): likewise.
12007         (SQL_PARAM_BIND_BY_COLUMN): likewise.
12008         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
12009         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
12010         (SQL_PARAM_ERROR): likewise.
12011         (SQL_PARAM_IGNORE): likewise.
12012         (SQL_PARAM_PROCEED): likewise.
12013         (SQL_PARAM_SUCCESS): likewise.
12014         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
12015         (SQL_PARAM_UNUSED): likewise.
12016         (SQL_PARC_BATCH): likewise.
12017         (SQL_PARC_NO_BATCH): likewise.
12018         (SQL_PAS_BATCH): likewise.
12019         (SQL_PAS_NO_BATCH): likewise.
12020         (SQL_PAS_NO_SELECT): likewise.
12021         (SQL_ROW_IGNORE): likewise.
12022         (SQL_ROW_NUMBER_UNKNOWN): likewise.
12023         (SQL_ROW_PROCEED): likewise.
12024         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
12025         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
12026         (SQL_SC_SQL92_ENTRY): likewise.
12027         (SQL_SC_SQL92_FULL): likewise.
12028         (SQL_SC_SQL92_INTERMEDIATE): likewise.
12029         (SQL_SCC_ISO92_CLI): likewise.
12030         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
12031         (SQL_SCHEMA_TERM): likewise.
12032         (SQL_SCHEMA_USAGE): likewise.
12033         (SQL_SDF_CURRENT_DATE): likewise.
12034         (SQL_SDF_CURRENT_TIME): likewise.
12035         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
12036         (SQL_SFKD_CASCADE): likewise.
12037         (SQL_SFKD_NO_ACTION): likewise.
12038         (SQL_SFKD_SET_DEFAULT): likewise.
12039         (SQL_SFKD_SET_NULL): likewise.
12040         (SQL_SFKU_CASCADE): likewise.
12041         (SQL_SFKU_NO_ACTION): likewise.
12042         (SQL_SFKU_SET_DEFAULT): likewise.
12043         (SQL_SFKU_SET_NULL): likewise.
12044         (SQL_SG_DELETE_TABLE): likewise.
12045         (SQL_SG_INSERT_COLUMN): likewise.
12046         (SQL_SG_INSERT_TABLE): likewise.
12047         (SQL_SG_REFERENCES_COLUMN): likewise.
12048         (SQL_SG_REFERENCES_TABLE): likewise.
12049         (SQL_SG_SELECT_TABLE): likewise.
12050         (SQL_SG_UPDATE_COLUMN): likewise.
12051         (SQL_SG_UPDATE_TABLE): likewise.
12052         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
12053         (SQL_SG_USAGE_ON_COLLATION): likewise.
12054         (SQL_SG_USAGE_ON_DOMAIN): likewise.
12055         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
12056         (SQL_SG_WITH_GRANT_OPTION): likewise.
12057         (SQL_SNVF_BIT_LENGTH): likewise.
12058         (SQL_SNVF_CHAR_LENGTH): likewise.
12059         (SQL_SNVF_CHARACTER_LENGTH): likewise.
12060         (SQL_SNVF_EXTRACT): likewise.
12061         (SQL_SNVF_OCTET_LENGTH): likewise.
12062         (SQL_SNVF_POSITION): likewise.
12063         (SQL_SP_BETWEEN): likewise.
12064         (SQL_SP_COMPARISON): likewise.
12065         (SQL_SP_EXISTS): likewise.
12066         (SQL_SP_IN): likewise.
12067         (SQL_SP_ISNOTNULL): likewise.
12068         (SQL_SP_ISNULL): likewise.
12069         (SQL_SP_LIKE): likewise.
12070         (SQL_SP_MATCH_FULL): likewise.
12071         (SQL_SP_MATCH_PARTIAL): likewise.
12072         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
12073         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
12074         (SQL_SP_OVERLAPS): likewise.
12075         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
12076         (SQL_SP_UNIQUE): likewise.
12077         (SQL_SQL_CONFORMANCE): likewise.
12078         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
12079         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
12080         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
12081         (SQL_SQL92_GRANT): likewise.
12082         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
12083         (SQL_SQL92_PREDICATES): likewise.
12084         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
12085         (SQL_SQL92_REVOKE): likewise.
12086         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
12087         (SQL_SQL92_STRING_FUNCTIONS): likewise.
12088         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
12089         (SQL_SR_CASCADE): likewise.
12090         (SQL_SR_DELETE_TABLE): likewise.
12091         (SQL_SR_GRANT_OPTION_FOR): likewise.
12092         (SQL_SR_INSERT_COLUMN): likewise.
12093         (SQL_SR_INSERT_TABLE): likewise.
12094         (SQL_SR_REFERENCES_COLUMN): likewise.
12095         (SQL_SR_REFERENCES_TABLE): likewise.
12096         (SQL_SR_RESTRICT): likewise.
12097         (SQL_SR_SELECT_TABLE): likewise.
12098         (SQL_SR_UPDATE_COLUMN): likewise.
12099         (SQL_SR_UPDATE_TABLE): likewise.
12100         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
12101         (SQL_SR_USAGE_ON_COLLATION): likewise.
12102         (SQL_SR_USAGE_ON_DOMAIN): likewise.
12103         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
12104         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
12105         (SQL_SRJO_CROSS_JOIN): likewise.
12106         (SQL_SRJO_EXCEPT_JOIN): likewise.
12107         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
12108         (SQL_SRJO_INNER_JOIN): likewise.
12109         (SQL_SRJO_INTERSECT_JOIN): likewise.
12110         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
12111         (SQL_SRJO_NATURAL_JOIN): likewise.
12112         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
12113         (SQL_SRJO_UNION_JOIN): likewise.
12114         (SQL_SRVC_DEFAULT): likewise.
12115         (SQL_SRVC_NULL): likewise.
12116         (SQL_SRVC_ROW_SUBQUERY): likewise.
12117         (SQL_SRVC_VALUE_EXPRESSION): likewise.
12118         (SQL_SSF_CONVERT): likewise.
12119         (SQL_SSF_LOWER): likewise.
12120         (SQL_SSF_SUBSTRING): likewise.
12121         (SQL_SSF_TRANSLATE): likewise.
12122         (SQL_SSF_TRIM_BOTH): likewise.
12123         (SQL_SSF_TRIM_LEADING): likewise.
12124         (SQL_SSF_TRIM_TRAILING): likewise.
12125         (SQL_SSF_UPPER): likewise.
12126         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
12127         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
12128         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
12129         (SQL_SU_DML_STATEMENTS): likewise.
12130         (SQL_SU_INDEX_DEFINITION): likewise.
12131         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
12132         (SQL_SU_PROCEDURE_INVOCATION): likewise.
12133         (SQL_SU_TABLE_DEFINITION): likewise.
12134         (SQL_SVE_CASE): likewise.
12135         (SQL_SVE_CAST): likewise.
12136         (SQL_SVE_COALESCE): likewise.
12137         (SQL_SVE_NULLIF): likewise.
12138         (SQL_UB_FIXED): likewise.
12139         (SQL_UB_VARIABLE): likewise.
12140         (SQL_UNION_STATEMENT): likewise.
12141         (SQL_UPDATE_BY_BOOKMARK): likewise.
12142         (SQL_US_UNION): likewise.
12143         (SQL_US_UNION_ALL): likewise.
12144         (SQL_DESC_ROWVER): likewise.
12145         (SQL_GUID): likewise.
12146         (SQL_C_GUID): likewise.
12147         (ODBC_STD): likewise.
12148         (SQLAllocHandle): likewise.
12149         (SQLAllocEnv(p)): likewise.
12150         (SQL_YEAR): likewise.
12151         (SQL_MONTH): likewise.
12152         (SQL_DAY): likewise.
12153         (SQL_HOUR): likewise.
12154         (SQL_MINUTE): likewise.
12155         (SQL_SECOND): likewise.
12156         (SQL_YEAR_TO_MONTH): likewise.
12157         (SQL_DAY_TO_HOUR): likewise.
12158         (SQL_DAY_TO_MINUTE): likewise.
12159         (SQL_DAY_TO_SECOND): likewise.
12160         (SQL_HOUR_TO_MINUTE): likewise.
12161         (SQL_HOUR_TO_SECOND): likewise.
12162         (SQL_MINUTE_TO_SECOND): likewise.
12163         (SQL_ATTR_ANSI_APP): likewise.
12164         (SQL_AA_TRUE): likewise.
12165         (SQL_AA_FALSE): likewise.
12166
12167         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
12168         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
12169         (struct tagSQL_DAY_SECOND): likewise.
12170         (struct tagSQL_INTERVAL_STRUCT): likewise.
12171         (struct tagSQL_NUMERIC_STRUCT): likewise.
12172         (struct tagSQLGUID): add for 0DBC3.50.
12173         (enum SQLINTERVAL): add for ODBC3.x.
12174         (SQLWCHAR): add typedef.
12175         (SQLTCHAR): add typedef, conditional on UNICODE.
12176         (SQLLEN): add typedef for _WIN64, define for _WIN32.
12177         (SQLULEN): likewise.
12178         (SQLROWOFFSET): likewise.
12179         (SQLROWCOUNT): likewise.
12180         (SQLTRANSID): likewise.
12181         (SQLSETPOSIROW): likewise.
12182         (SQLHANDLE): add ODBC3.x typedef.
12183         (SQLHDESC): likewise.
12184         (SQLDATE): likewise.
12185         (SQLDECIMAL): likewise.
12186         (SQLDOUBLE): likewise.
12187         (SQLFLOAT): likewise.
12188         (SQLNUMERIC): likewise.
12189         (SQLREAL): likewise.
12190         (SQLTIME): likewise.
12191         (SQLTIMESTAMP): likewise.
12192         (SQLVARCHAR): likewise.
12193         (SQLBIGINT): likewise.
12194         (SQLUBIGINT): likewise.
12195         (SQL_DATE_STRUCT): likewise.
12196         (SQL_TIME_STRUCT): likewise.
12197         (SQL_TIMESTAMP_STRUCT): likewise.
12198         (ODBCINT64): add ODBC3.x define.
12199
12200         * lib/odbc32.def : regenerate.
12201
12202 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
12203
12204         * Apply Danny Smith patch 102275
12205         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12206         * include/objbase.h: (COM_RIGHTS): Add definition.
12207         (tagSTDMSHLFLAGS): add enumeration.
12208         (CoInitializeEx): Add prototypes.
12209         (CoGetStdMarshalEx): ditto.
12210         (CoCreateInstanceEx): ditto.
12211         (CoInitializeSecurity): ditto.
12212         (CoGetCallContext): ditto.
12213         (CoQueryProxyBlanket): ditto.
12214         (CoSetProxyBlanket): ditto.
12215         (CoCopyProxy): ditto.
12216         (CoQueryClientBlanket): ditto.
12217         (CoImpersonateClient): ditto.
12218         (CoRevertToSelf): ditto.
12219         (CoQueryAuthenticationServices): ditto.
12220         (CoSwitchCallContext): ditto.
12221         (CoGetInstanceFromFile): ditto.
12222         (CoGetInstanceFromIStorage): ditto.
12223         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
12224         (SOLE_AUTHENTICATION_INFO): ditto.
12225         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
12226         (COLE_DEFAULT_PRINCIPAL): Add definition.
12227         (COLE_DEFAULT_AUTHINFO): Ditto.
12228         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
12229         (RPC_PROTSEQ_VECTOR) Fix typo.
12230         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
12231         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
12232         attribute.
12233
12234 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
12235
12236         * lib/msvcp60.def: Apply Danny Smith patch 103321.
12237         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
12238         New file.
12239
12240 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12241
12242         * include/winnt.h: Add PTOKEN_USER.
12243
12244 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12245
12246         * include/sqlucode.h: Apply Danny Smith patch 102443
12247         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12248         New file.
12249
12250 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12251
12252         * lib/odbccp32.def: Apply Danny Smith patch 102442
12253         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12254         New file.
12255
12256 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12257
12258         * include/odbcinst.h: Apply Danny Smith patch 102441
12259         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12260         New file.
12261
12262 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12263
12264         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12265
12266 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12267
12268         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12269
12270 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12271
12272         * lib/Makefile.in: Install headers and libraries in tooldir.
12273
12274 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12275
12276         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12277         SORT_STRINGSORT: ditto.
12278         CMAP*: ditto.
12279         CTRY_*: add new defines.
12280         LGRPID_*: ditto.
12281         LCMAP*: change defines to hex notation.
12282         CALID: change from ULONG to DWORD.
12283         CALTYPE: ditto.
12284         _cpinfoex[AW]: add structure.
12285         FoldString: correct Unicode mappings.
12286         GetCPInfoEx[AW]: add prototypes.
12287         EnumCalendarInfoEx[AW]: ditto.
12288         EnumDateFormatsEx[AW]: ditto.
12289         EnumSystemLanguageGroups[AW]: ditto.
12290         EnumLanguageGroupLocales[AW]: ditto.
12291         EnumUILanguages[AW]: ditto.
12292         GetSystemDefaultUILanguage[AW]: ditto.
12293         GetUserDefaultUILanguage[AW]: ditto.
12294         IsValidLanguageGroup[AW]: ditto.
12295         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12296         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12297         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12298         UILANGUAGE_ENUMPROC[AW]: ditto
12299         DATEFMT_ENUMPROCEX[AW]: ditto
12300         LPCURRENCYFMT[AW]: add structure pointer typedef
12301         LPNUMBERFMT[AW]: ditto
12302
12303 2000-12-02  Matt Hargett  <matt@use.net>
12304
12305         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12306         possible return code for the SetFilePointer() win32 API call.
12307
12308 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12309
12310         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12311
12312 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12313
12314         * Makefile.in: increment VERSION.
12315         (dist:) Rename to srcdist.  Create new dist target to call
12316         srcdist and bindist targets.
12317         (srcdist:) New target.
12318         (clean-top:) add call to mostlyclean-top and add rm of distribution
12319         tarballs.
12320         * lib/Makefile.in: (uninstall:) modify to remove files from the
12321         new w32api subdirectory and to remove w32api subdirectory.
12322         (xuninstall:) Ditto.
12323         TODO: Add a task to redo the clean targets of Makefile.in
12324
12325 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12326
12327         * lib/Makefile.in: Install header files in w32api subdirectory.
12328
12329 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12330
12331         * CONTRIBUTIONS: New file.
12332         * README: Change the maintained by header.
12333         * TODO: Add a note about checking the TODO.
12334
12335 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12336
12337         * Merge in accepted changes from
12338         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12339         * include/basetyps.h: add comment for GUID_DEFINED
12340         * include/lm.h: add includes for lmerr.h and lmserver.h
12341         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12342         * include/lmerr.h:  add error codes
12343         * include/lmserver.h: replace LPTSTR with LPWSTR,
12344         LPTCSTR with LPWCSTR in structures and prototypes
12345         * include/lmshare.h: ditto
12346         * include/lmuse.h: ditto
12347         * include/lmstats.h: ditto
12348         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12349         * include/winbase.h: change first argument of CommConfigDialog to const
12350         * include/windowsx.h: add macros  defining FAR versions of
12351         mem and string functions for porting from Win16 code
12352         * include/winioctl.h:  added IOCTL_STORAGE defines
12353         * include/winnetwk.h:  added WNNC_NET flags
12354         * include/winnt.h: add include of <basetsd.h>;
12355         add structs; add pointer typedefs  for TOKEN structs
12356         * include/winsock.h: add guard around BSD-ish typedefs
12357         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12358         * include/basetsd.h: new file
12359         * include/raserror.h: ditto
12360         * include/rassapi.h: ditto
12361         * include/ras.h: ditto
12362         comment from Earnie: replaced original ras.h contribution with Danny's
12363         contribution as it is more complete.
12364         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12365
12366 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12367
12368         * Makefile.in: increment VERSION.  Change tar file name for dist and
12369         bindist targets to be more standard.
12370         * config.guess: Update with the currently published file.
12371         * config.sub: ditto.
12372         * configure.in: Use value of build_alias instead of testing for
12373         directory names to set BUILDENV.
12374         * configure: ditto.
12375         * lib/Makefile.in: Change the name of the targets install,
12376         install-headers and install-libraries to xinstall, xinstall-headers
12377         and xinstall-libraries for system target specified installation.
12378         Recreate targets install, install-headers and install-libraries for
12379         exec-prefix specified installation.  Ditto for the uninstall targets of
12380         the same name.
12381
12382 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12383
12384         * include/iprtrmib.h: Further layout changes according to standard.
12385         * include/iptypes.h: Ditto.
12386         * include/ntdef.h: Ditto.
12387         * include/ntsecapi.h: Ditto.
12388         * include/subauth.h: Ditto.
12389
12390 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12391
12392         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12393
12394 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12395
12396         * include/ntsecapi.h: New file.
12397         * include/subauth.h: Ditto.
12398         * include/ipexport.h: Fix global header define not to contain
12399         trailing underscore. Change layout according to standard.
12400         * include/iphlpapi.h: Ditto.
12401         * include/ipifcons.h: Ditto.
12402         * include/iprtrmib.h: Ditto.
12403         * include/iptypes.h: Ditto.
12404         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12405         of inclusion of ntsecapi.h and subauth.h.
12406         * lib/secur32.def: New stub for secur32.dll.
12407
12408 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12409
12410         * include/ras.h: New file.
12411         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12412         RasEnumDevicesW.
12413
12414 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12415
12416         * include/ntdef.h: Add define for NTAPI.
12417
12418 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12419
12420         * include/ipexport.h: Add missing `extern "C"' directives.
12421         * include/iphlpapi.h: Ditto.
12422         * include/iprtrmib.h: Ditto.
12423         * include/iptypes.h: Ditto.
12424
12425 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12426
12427         * include/ipifcons.h: New header file.
12428         * include/iprtrmib.h: Move operational states to ipifcons.h.
12429         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12430         declaration.
12431
12432 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12433
12434         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12435
12436 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12437
12438         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12439         * include/iptypes.h: New header file.
12440         * include/ipexport.h: Ditto.
12441         * include/iphlpapi.h: Ditto.
12442         * include/iprtrmib.h: Ditto.
12443
12444 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12445
12446         * include/ntdef.h: New file.
12447
12448 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12449
12450         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12451         to TOKEN_INFORMATION_CLASS type.
12452         Add QUOTA_LIMITS type.
12453
12454 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12455
12456         * include/userenv.h: New header file.
12457         * lib/userenv.def: New stub for userenv.dll.
12458
12459 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12460
12461         * include/winuser.h: Correct PCWPSTRUCT typo.
12462         (discovered by Axel Riese)
12463
12464 2000-07-27  DJ Delorie  <dj@redhat.com>
12465
12466         * include/windows.h: optimize non-inclusion of repeat headers
12467
12468 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12469
12470         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12471         LPTOKEN_SOURCE.
12472
12473 2000-07-11  DJ Delorie  <dj@cygnus.com>
12474
12475         * include/shlobj.h: add CSIDL_COMMON_*
12476
12477 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12478
12479         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12480         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12481         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12482         FILE_FLAG_OPEN_NO_RECALL.
12483         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12484         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12485         * winnt.h: Add typedef for GUID.
12486         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12487         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12488         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12489         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12490         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12491         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12492         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12493         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12494         * lib/psapi.def: New file.
12495
12496 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12497
12498         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12499         previously defined.
12500         * windef.h : Ditto.
12501
12502 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12503
12504         * include/winnt.h: Add some missing defines related to locale
12505         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12506
12507 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12508
12509         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12510
12511 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12512
12513         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12514
12515 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12516
12517         * include/wininet.h: Add another "INTERNET_OPTIONS".
12518
12519 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12520
12521         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12522
12523 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12524
12525         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12526         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12527         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12528         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12529
12530 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12531
12532         * include/winbase.h: Change first argument of ENUMRES* types to
12533         coincide with Microsoft usage.
12534
12535 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12536
12537         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12538
12539 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12540
12541         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12542         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12543         * include/winnt.h (SEC_*): Add macros.
12544         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12545         * include/ole.h: Workaround for C++ parser bug.
12546         * include/rpcdcep.h: Likewise.
12547         * include/winsock.h: Likewise.
12548
12549 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12550
12551         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12552
12553 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12554
12555         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12556         * include/wtypes.h (PBLOB, LPBLOB): Define.
12557         * include/winsock2.h: Much more complete version.
12558         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12559
12560         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12561         * include/winsock.h (FD_CLR): Add missing ')'.
12562         (timercmp): Fix macro to handle all 6 comparison operators.
12563         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12564         (AF_MAX): Update.
12565         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12566
12567         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12568         namespace pollution.
12569         * include/rpcndr.h: Likewise.
12570         * include/winnt.h: Likewise.
12571         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12572         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12573         * lib/ole32.def: Add missing exports.
12574         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12575         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12576         (NT_TIB): Define.
12577         * include/tlhelp32.h: New file.
12578
12579 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12580
12581         * include/rapi.h: New file.
12582         * lib/rapi.def: New file.
12583
12584 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12585
12586         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12587
12588 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12589
12590         * Snapshot 2000-02-03.
12591
12592 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12593
12594         * include/winnt.h: Add ARM support.
12595
12596 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12597
12598         From Greg Primes <gregory.l.priem@intel.com>:
12599         * include/oaidl.h (DESCKIND): Define macro.
12600         (ITypeComp): Define interface.
12601         (ITypeComp): Likewise.
12602         * rpcndr.h (DECLSPEC_UUID): Define macro.
12603         (MIDL_INTERFACE): Likewise.
12604
12605         * include/psapi.h: New file.
12606         * include/imagehlp.h: New file.
12607         * lib/imagehlp.def: New file.
12608
12609         * include/oaidl.h (tagVARIANT): Update fields.
12610
12611         From Craig Lanning <CraigL@DyCon.com>:
12612         * include/commctrl.h: Add some TCS_* macros.
12613         * include/winnls.h (IsValidLocale): Add prototype.
12614
12615 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12616
12617         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12618         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12619         * include/objbase.h: Likewise.
12620         * include/objidl.h: Likewise.
12621         * include/ocidl.h: New file.
12622         * include/oleauto.h: Likewise.
12623         * include/wtypes.h: Likewise.
12624         * lib/oleaut32.def: Likewise.
12625
12626         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12627         Thanks to "Jon Leichter" <jon@symas.com>.
12628         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12629         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12630         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12631         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12632         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12633         Dorsselaer" <frans@bia-bv.demon.nl>.
12634         * include/httpext.h: New file. Thanks to Jan Nijtmans
12635         <j.nijtmans@chello.nl>.
12636         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12637         redefinition of LPCWAVEFORMATEX in DirectX headers.
12638         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12639         <krzych00@priv7.onet.pl>.
12640         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12641         * include/windef.h (HRESULT): Guard definition to avoid
12642         redefinition in DirectX headers.
12643         * include/winnt.h: Add target macros from windows.h.
12644         * include/windows.h: Update synch comment for target macros.
12645         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12646         (_ANONYMOUS_UNION): Likewise.
12647         * include/wingdi.h (AbortPrinter): Move from here ...
12648         * include/winspool.h (AbortPrinter): to here and fix linkage.
12649         (MONITOR_INFO_2{A,W}): Define.
12650         * include/winsock.h (htons): Fix argument.
12651         (htonl): Likewise.
12652         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12653         (GROUP): Define.
12654         (GUID): Define conditionally.
12655         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12656         (WSASocket*): Declare.
12657         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12658
12659         * lib/dsetup.def: Remove leading underscore.
12660         * lib/dsound.def: Likewise.
12661         * lib/ws2_32.def: Likewise.
12662
12663 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12664
12665         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12666         handles.
12667
12668         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12669         * lib/dinput.c: Include windows.h for GCC.
12670         * lib/dxguid.c: Likewise.
12671         (INITGUID): Define macro.
12672
12673         * include/objidl.h (ISequentialStream): Define interface.
12674         (IStream): Derive from ISequentialStream.
12675
12676         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12677         Clone}): Mark as PURE.
12678         (IDataObject::EnumDAdvise): Likewise.
12679         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12680         (IViewObject::Unfreeze): Likewise.
12681         (IViewObject2::Unfreeze): Likewise.
12682
12683         * include/objidl.h: Add various IID_ declarations.
12684         * include/olectl.h: Likewise.
12685         * include/oleidl.h: Likewise.
12686
12687 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12688
12689         * Snapshot 1999-12-21.
12690
12691         * include/winbase.h (CancelIO): Rename to CancelIo.
12692         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12693         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12694
12695         * Merge with winsup-19991218.
12696         * include/winnt.h: Add defines for W2K ACL control flags.
12697
12698         * Merge with Anders Norlander's 19991130 snapshot.
12699
12700         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12701         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12702
12703         Patch from Harold Weissfield
12704         * include/shellapi.h: Added some ABN_* defines.
12705
12706         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12707         * lib/comctl32.def (_TrackMouseEvent): Import.
12708         * include/winuser.h: Misc. fixes from Sang Cho
12709         <sangcho@alpha94.chongju.ac.kr>.
12710         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12711         value of _WIN32_WINNT.
12712         * include/winuser.h: Reorganize SM_* defines in numerical order.
12713
12714 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12715
12716         * include/windef.h: Make RECTL a distinct type from RECT.
12717         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12718         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12719         (COMPAREITEMSTRUCT): Fix fields.
12720         (SERIALKEYSA): Likewise.
12721         (SERIALKEYSW): Likewise..
12722         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12723         (WIN32_FIND_DATAA): Likewise.
12724         (WIN32_FIND_DATAW): Likewise.
12725         * include/commdlg.h (SNDMSG): Define.
12726         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12727         (SO_CONNECT_TIME): Likewise.
12728         (AcceptEx): Declare.
12729         (GetAcceptExSockaddrs): Likewise.
12730         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12731         * include/winspool.h: Add RC_INVOKED guard.
12732         * lib/wsock32.def (AcceptEx@32): Export.
12733         (GetAcceptExSockaddrs@32): Likewise.
12734
12735 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12736
12737         * Snapshot 1999-11-18.
12738
12739         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12740         Octopod C++ IDE (and MSVC compatibility).
12741         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12742         * include/shellapi.h (ShellAbout*): Fix typo.
12743         * wingdi.h (FW_ULTRABOLD): Likewise.
12744         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12745         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12746         Add packing directives for various structures. All structure
12747         sizes now conform to MSVC.
12748
12749 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12750
12751         Released 1999-11-07.
12752
12753 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12754
12755         * include/winsock2.h: New file. Mostly a stub for now.
12756         * include/winbase.h (DllMain): Delete prototype.
12757         * include/commctrl.h (Header_SetItem): Fix macro.
12758         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12759         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12760         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12761
12762         Merge in changes from wxWindows.
12763         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12764         * include/oaidl.h (DISPID_*): Add macros.
12765         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12766         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12767         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12768         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12769
12770         Merge in changes from Octopod C++ IDE group.
12771         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12772         (Header_InsertItem): Fix macro.
12773         * include/oaidl.h (IID_IDispatch): Declare.
12774         (IID_ISupportErrorInfo): Likewise.
12775         (IDispatch): Rename Invoked to Invoke.
12776         * include/objidl.h (IPersist): Fix GetClassID.
12777         * include/oleauto.h (VectorFromBstr): Declare.
12778         (BstrFromVector): Likewise.
12779         * include/olectl.h (OLEMISC_*): Update.
12780         * include/olectlid.h (IID_IDispatch): Declare.
12781         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12782         (IOleInPlaceFrame): Fix.
12783         (ISupportErrorInfo): Define.
12784         (IErrorInfo): Define.
12785         * include/winuser.h (SIF_TRACKPOS): Define.
12786
12787 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12788
12789         Fix Merge errors:
12790         * include/winnt.h (PSID): Uncomment definition.
12791         (PISID): Rename from PSID.
12792         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12793         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12794
12795         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12796         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12797         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12798         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12799         include/shellapi.h, include/winbase.h, include/wingdi.h,
12800         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12801
12802 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12803
12804         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12805         Marius Kjeldahl <kjeldahl@hotmail.com>.
12806
12807 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12808
12809         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12810         (ERROR_SEVERITY_*): Likewise.
12811
12812 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12813
12814         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12815         (DllMain): Fix prototype.
12816
12817 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12818
12819         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12820         (cderr.h): Don't include.
12821         * include/winuser.h: Fix macro definitions.
12822
12823 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12824
12825         Merge with winsup 1999-07-29:
12826         * include/wincon.h (MOUSE_WHEELED): Define.
12827         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12828         (SECURITY_DESCRIPTOR): Add struct type.
12829         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12830         is equal to PVOID in the Platform SDK! So don't depend on accessing
12831         members through ->.
12832
12833 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12834
12835         * lib/Makefile.in (install-headers): Don't @ commands.
12836         (install-libraries): Ditto.
12837
12838 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12839
12840         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12841
12842 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12843
12844         Patch from Mumit Khan:
12845         * include/windows.h: Fix typo in winsock.h include guard and add
12846         _UWIN to the list.
12847         * include/winnt.h (__int64): Undefine first.
12848         (struct _SID): Declare.
12849
12850 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12851
12852         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12853
12854 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12855
12856         Patch from Mumit Khan:
12857         * Makefile.in: Do the right thing when cross-compiling.
12858         * include/windef.h: Don't define _export and __export if already
12859         defined.
12860
12861 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12862
12863         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12864         (DECLARE_INTERFACE_): Ditto.
12865
12866 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12867
12868         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12869
12870         Reported by Brad Porter
12871         * include/wingdi.h (FW_ULTRALIGHT): Add.
12872         (FW_DEMIBOLD): Add.
12873         (FW_ULTRABOLD): Add.
12874         (FW_BLACK): Add.
12875         (JOHAB_CHARSET): Add.
12876         (VIETNAMESE_CHARSET): Add.
12877
12878
12879 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12880
12881         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12882         * lib/Makefile.in (Makefile): Regenerate.
12883         * include/pshpack[1248].h: New files, if a program would use any of
12884         them.
12885         * include/poppack.h: Ditto.
12886         * include/windef.h (_WIN32_WINNT): Define
12887         * include/windows.h: Remove DUMMYUNIONNAME[45].
12888         * include/windows.h: Correctly define _M_IX86 to reflect the target
12889         processor.
12890         * include/windows.h: Add preliminary support for other architectures.
12891         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12892         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12893         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12894         issue with LARGE_INTEGER.
12895         (ANSI_NULL): Define.
12896         (PSZ): Define.
12897         (ACL_REVISION[1234]): Define.
12898         (MIN/MAX_ACL_REVISION): Define.
12899         (PTCHAR): Define.
12900         (LANG_USER_DEFAULT): Define.
12901         (LANG_SYSTEM_DEFAULT): Define.
12902         (LOCALE_NEUTRAL): Define.
12903         (SORTVERSIONFROMLCID): Define.
12904         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12905         (UNREFERENCED_LOCAL_VARIABLE): Define.
12906         (DBG_UNREFERENCED_PARAMETER): Define.
12907         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12908         * lib/mswsock.def: New file. Imports for mswsock.dll.
12909         * include/custcntl.h: New file. Necessary to compile some SDK
12910         samples.
12911         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12912         (WM_MOUSEWHEEL): Define.
12913         (WHEEL_DELTA): Define.
12914         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12915         (WM_NEXTMENU): Define.
12916         (CharNextA): Fix prototype.
12917         (CharNextW): Ditto.
12918
12919 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12920
12921         * include/winsock.h: Enclose in extern "C" if C++, huh?
12922         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12923
12924 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12925
12926         * include/windef.h (NULL): Define only ifndef
12927         (TRUE): Ditto, was previously only defined ifndef FALSE
12928         (PASCAL): Define as _pascal
12929         (__pascal): Define
12930         (WINAPIV): Define
12931         (min,max): Define only ifndef NOMINMAX
12932
12933 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12934
12935         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12936         You must define _WIN32_IE if you want support for it.
12937         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12938
12939 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12940
12941         * include/wincon.h: Add some ButtonState flags and EventFlags.
12942
12943 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12944
12945         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12946         interface define causes mayhem.
12947         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12948         defined.
12949         * include/windows.h: Undefine BOOL if __OBJC__ defined
12950
12951 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12952
12953         * include/winnls.h: Define additional code pages.
12954
12955 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12956
12957         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12958         order, corrected.
12959         (RtlZeroMemory): Use RtlFillMemory
12960
12961 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12962
12963         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12964         to get the correct size when used in some structs.
12965         (ULARGE_INTEGER): Ditto.
12966         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12967         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12968
12969 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12970
12971         * include/wininet.h: Enclose in extern "C" if c++
12972         (INTERNET_BUFFERSA/W): Define struct
12973         * include/wininet.h: Add some HSR_* defines
12974
12975 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12976
12977         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12978         * include/winnt.h (UNALIGNED): Define
12979         * include/windef.h (DECLSPEC_NORETURN): Define
12980
12981         * include/wininet.h (INTERNET_MAX_NAME): Remove
12982         (INTERNET_MAX_SCHEME_LENGTH): Define
12983         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12984         * include/wininet.def: Completely redone, it was losing badly.
12985
12986 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12987
12988         * lib/dplayx.def: Remove '_' prefixes
12989         * lib/shell32.def: Remove imports for IID_ContextMenu
12990
12991 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12992
12993         * Makefile.in (dist): Support dist target
12994         * lib/Makefile.in (dist): Likewise
12995         * lib/Makefile.in (uninstall-headers): Fix command
12996         * Makefile.in (bindist): Target to build a prebuilt dist
12997
12998         * lib/ws2_32.def: Winsock2 implib
12999
13000         * include/largeint.h: New header
13001         * include/largeint.c: Large integer support library
13002         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
13003         (EXTRA_OBJS): Add largeint.o
13004
13005         * include/Makefile: Remove
13006         * lib/Makefile: Remove
13007         * Makefile: Remove
13008         * configure.in: New autoconf script
13009         * configure: generated configure script
13010         * Makefile.in: autoconf makefile template
13011         * lib/Makefile.in: Ditto
13012         * include/test.c: mv to lib/test.c
13013         * include/res.rc: mv to lib/res.rc
13014         * include/TODO: mv to .
13015         * include/Notes: mv to ./NOTES
13016
13017 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
13018
13019         * include/zmouse.h (WHEEL_DELTA): Define
13020
13021 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
13022
13023         * include/ddeml.h (HSZPAIR): Declare.
13024         * include/zmouse.h: New file.
13025
13026 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
13027
13028         * lib/d3dim.def: New implib
13029         * lib/d3drm.def: Ditto
13030         * lib/d3dxof.def: Ditto
13031         * lib/ddraw.def: Ditto
13032         * lib/dinput.def: Ditto
13033         * lib/dplayx.def: Ditto
13034         * lib/dsetup.def: Ditto
13035         * lib/dsound.def: Ditto
13036         * lib/dinput.c: Guid library for DirectInput
13037         * lib/dxguid.c: Guid library for DirectX
13038
13039 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
13040
13041         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
13042         by Ron Aaron).
13043         * include/windowsx.h (GET_Y_LPARAM): Also missing
13044         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
13045         by Mumit Khan).
13046
13047 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
13048
13049         * include/scrnsave.h: New header file for screen saver library
13050         * lib/scrnsave.c: New file: screen saver library
13051
13052 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13053
13054         * include/regstr.h: Enclosed all strings in TEXT() macros so it
13055         works well in when UNICODE is defined
13056
13057 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
13058
13059         * include/winuser.h(STYLESTRUCT): New struct
13060         * include/wingdi.h:(GOBJENUMPROC): This function type should
13061         return void.
13062
13063 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13064
13065         * include/basetyps.h (LPGUID): New typedef
13066         * lib/glut.def: Import library defintions for glut.dll
13067         * lib/glu32.def: Ditto for glut32.dll
13068         * include/winnt.h: Fixed handling of wchar_t typedef
13069         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
13070         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
13071
13072 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
13073
13074         * include/winbase.h(AbnormalTermination): Define as FALSE
13075         * include/commctrl.h: Support for new progress bar messages/styles
13076
13077 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
13078
13079         * include/commdlg.h(PageSetupDlg): New define
13080         * include/richedit.h: Missing SCF_* defines
13081         * include/winnt.h: Lots o' defines
13082         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
13083
13084 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
13085
13086         * include/commdlg.h: Removed pack pragma
13087         * lib/comctl32.def(InitCommonControlsEx@4): Added import
13088
13089 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
13090
13091         * Makefile: Set version to 0.1.5
13092         * lib/Makefile (clean): Fix typo
13093
13094         * include/commctrl.h: Removed pack pragma
13095         * include/cpl.h: Likewise
13096         * include/dbt.h: Likewise
13097         * include/dde.h: Likewise
13098         * include/nddeapi.h: Likewise
13099         * include/shellapi.h: Likewise
13100         * include/wincrypt.h: Likewise
13101         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
13102
13103         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
13104         (servent): Likewise
13105         (protoent): Likewise
13106
13107         * include/windows.h: Prevent inclusion of winsock.h if we are
13108         using or compiling cygwin. Define Win32_Winsock to force inclusion.
13109
13110 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
13111
13112         * include/winbase.h (CREATE_FORCEDOS): New define
13113
13114 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
13115
13116         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
13117         (COORD): Likewise
13118         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
13119         * include/windows.h: Added DUMMYUNIONNAME4 and 5
13120         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
13121         (PLUID_AND_ATTRIBUTES_ARRAY): New type
13122
13123         * include/ddeml.h: Removed unnecessary `#pragma pack'
13124         * include/imm.h: Likewise
13125         * include/nddeapi.h: Likewise
13126         * include/nspapi.h: Likewise
13127         * include/regstr.h: Likewise
13128         * include/wincon.h: Likewise
13129         * include/windef.h: Likewise
13130         * include/winioctl.h: Likewise
13131         * include/winnls.h: Likewise
13132         * include/winsvc.h: Likewise
13133         * include/winuser.h: Likewise
13134         * include/winver.h: Likewise
13135         * include/wtypes.h: Likewise
13136
13137 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
13138
13139         * Makefile (VERSION): Set to 0.1.4
13140         * include/basetyps.h: Check for NOCOMOBJECT
13141         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
13142         on comobject attribute.
13143         * lib/kernel32.def: Added a few functions
13144         * include/windef.h (DWORD): Changed back to unsigned long
13145
13146         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
13147         winresrc.h in turn includes the necessary headers. This makes things
13148         much simpler, no need to protect blocks of code in headers that
13149         should not be seen by the resource compiler.
13150
13151 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
13152
13153         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
13154         * include/wincon.h: Added console event type flags
13155         * include/winnt.h (FILE_SHARE_DELETE): Added
13156           (SECURITY_DESCRIPTOR): typedef as DWORD
13157
13158         * include/winuser.h (WM_PENWINFIRST): Fixed typo
13159         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
13160         define u_* types only if _SYS_TYPES_H is not defined.
13161
13162 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
13163
13164         * COPYING.LIB: Deleted
13165         * README: Updated to reflect license changes
13166         * include/shlobj.h: Remove extra comma on some enums
13167         * include/windef.h: Changed DWORD typedef from unsigned long to
13168         unsigned int in order to avoid warnings on bit fields that
13169         use DWORD.
13170         * include/Makefile (test): Compile with all warnings
13171         * include/unknwn.h: Include objfwd.h
13172         * include/winsock.h: Added missing copyright notices.
13173
13174 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
13175
13176         * lib/winmm.def: Corrected LIBRARY statement
13177         * include/mmsystem.h: Define mmioSeek codes if not already defined
13178         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
13179         (CreateStatusWindowW): Likewise
13180
13181         * include/winresrc.h: Include only files necessary instead of windows.h
13182         * include/dde.h: Allow inclusion in resource scripts.
13183         * include/winnt.h: Likewise
13184         * include/commctrl.h: Likewise
13185         * include/prsht.h: Likewise
13186         * README: Updated
13187
13188 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
13189
13190         * include/sqltypes.h (SQLHANDLE): Added this type
13191         (SQLHDESC): Likewise
13192         * include/sql.h (SQLFreeHandle): Added this prototype
13193         (SQLAllocHandle): Likewise
13194
13195 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
13196
13197         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
13198         conflicts with cygwin headers.
13199
13200 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
13201
13202         * Makefile: Changed VERSION to 0.1.3
13203         * Makefile (dist-lib): New target to make import library only
13204         distribution
13205         * Makefile (dist-hdr): New target to make headers only distribution
13206         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
13207         building one single distribution file.
13208         * dist.mak: Deleted
13209
13210         * include/lm.h: New file
13211         * include/lmcons.h: New file
13212         * include/lmalert.h: New file
13213         * include/lmaudit.h: New file
13214         * include/lmconfig.h: New file
13215         * include/lmapibuf.h: New file
13216         * include/lmaccess.h: New file
13217         * include/lmchdev.h: New file
13218         * include/lmremutl.h: New file
13219         * include/lmrepl.h: New file
13220         * include/lmerrlog.h: New file
13221         * include/lmat.h: New file
13222         * include/lmuse.h: New file
13223         * include/lmuseflg.h: New file
13224         * include/lmserver.h: New file
13225         * include/lmerr.h: New file
13226         * include/lmsname.h: New file
13227         * include/lmstats.h: New file
13228         * include/lmsvc.h: New file
13229         * include/lmwksta.h: New file
13230         * include/lmbrowsr.h: New file
13231
13232 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
13233
13234         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
13235         * include/unknwn.h: Added extern declaration for IID_IClassFactory
13236
13237         * include/initguid.h: New file
13238
13239         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13240         int not supported
13241
13242         * include/winnt.h: Added USN
13243         * include/winnt.h: Changed handling of 64 bit int support
13244
13245         * include/windows.h: Added support for BC,LCC and MSVC
13246
13247         * include/windows.h: Changed handling machine architecture defines
13248
13249         * include/olectl.h: New file
13250
13251 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13252
13253         * include/oleidl.h: Added IViewObject and IViewObject2
13254
13255         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13256         IStorage::MoveElement
13257
13258         * include/oledlg.h: New file
13259
13260         * include/winresrc.h: New file
13261
13262         * include/wingdi.h: Added LPDOCINFO
13263
13264         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13265         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13266         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13267         TabCtrl_SetImageList and TabCtrl_GetItemCount
13268         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13269
13270         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13271
13272         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13273         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13274
13275         * include/commdlg.h: Added LPDEVNAMES
13276
13277         * include/windows.h: Include excpt.h
13278
13279         * include/excpt.h: New file. This file just contains some
13280         stubs for SEH that do nothing.
13281
13282         * include/commctrl.h: Added general WM_NOTIFY codes
13283
13284         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13285         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13286         not be in the headers.
13287         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13288         * include/winuser.h: Added old WM_SIZE parameter names so
13289         wxWindows compiles.
13290         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13291         * include/winuser.h: Added LPDLGITEMTEMPLATE
13292         * include/winuser.h: HTCAPTION was missing value
13293         * include/winuser.h: Added WM_ACTIVE flags
13294
13295         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13296         _fxx defines for memmove, memset and memcmp
13297
13298         * include/windef.h: Changed _export and __export to empty defines
13299
13300         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13301         String parameters were not const and ExtractAssociatedIcon takes
13302         a WORD pointer not DWORD pointer as last parameter.
13303
13304         * Makefile: Changed VERSION to 0.1.2
13305
13306         * include/ole2ver.h: New file
13307
13308         * Makefile: Removed all dependencies on GLUT
13309
13310         * include/GL/glut.h: Removed file because of decision to remove
13311         files that are not part of the library.
13312         * lib/glut.def: Likewise
13313         * lib/glut32.def: Likewise
13314
13315         * include/windows.h: Include winperf.h
13316
13317         * include/winperf.h: New file
13318
13319         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13320
13321         * include/winnls.h: Added calendar types
13322         * include/winnls.h: Added country codes
13323
13324 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13325
13326         * include/windef.h: Added PROC and NEARPROC
13327
13328         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13329         * include/wingdi.h: Added OpenGL types and prototypes
13330         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13331         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13332         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13333         * include/wingdi.h: Added truetype character outline types
13334         * include/wingdi.h: Added DEVMODE initialization flags
13335         * include/wingdi.h: Added panose codes
13336         * include/wingdi.h: Added missing character sets
13337         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13338         NONANTIALIASED_QUALITY
13339         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13340         * include/wingdi.h: Added pointer types for EXTLOGPEN
13341         * include/wingdi.h: Added PATTERN type
13342         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13343         * include/wingdi.h: Added new text metric flags
13344         * include/wingdi.h: Added pitch and family flags
13345         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13346         * include/wingdi.h: Added METAHEADER
13347         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13348         * include/wingdi.h: Added TA_MASK
13349         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13350         * include/wingdi.h: Added error codes
13351
13352         * include/winuser.h: Added missing winhelp structures
13353         * include/winuser.h: Added dialog flags/styles/messages
13354         * include/winuser.h: Added EM_SETMARGIN codes
13355         * include/winuser.h: Made it possiblie to use IDI_XX values
13356         in resource files.
13357         * include/winuser.h: Added missing LoadImage load flags
13358         * include/winuser.h: Added missing message box flags
13359         * include/winuser.h: Added ScrollWindow codes
13360         * include/winuser.h: Added DT_WORD_ELLIPSIS
13361         * include/winuser.h: Added drag and drop support
13362         * include/winuser.h: Added WM_MENUCHAR return codes
13363         * include/winuser.h: Added DLGWINDOWEXTRA
13364         * include/winuser.h: Added missing SetWindowPos flags.
13365         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13366         * include/winuser.h: Added IDHOT_xx defines
13367         * include/winuser.h: Added MOD_WIN
13368         * include/winuser.h: Added missing defines and structs for owner draw
13369         controls.
13370         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13371         WPF_SETMINPOSITION
13372         * include/winuser.h: Added DrawAnimatedRects flags
13373         * include/winuser.h: Added WM_PRINT codes
13374         * include/winuser.h: Added CS_IME class style
13375         * include/winuser.h: Added WM_SIZE codes
13376         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13377         * include/winuser.h: Added WM_NCHITTEST return codes
13378         * include/winuser.h: Added WM_SIZING parameters
13379         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13380         * include/winuser.h: Added menu loop codes.
13381         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13382         NF_REQUERY
13383         * include/winuser.h: Added WM_POWER flags
13384         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13385         * include/winuser.h: Added missing message filter codes
13386         * include/winuser.h: Added WM_KEYXX message flags
13387         * include/winuser.h: Added WM_SHOWMESSAGE flags
13388         * include/winuser.h: Added old ShowWindow commands
13389         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13390         structures.
13391
13392         * include/mciavi.h: New file for the MCI AVI driver that for some
13393         reason is not in mmsystem.h.
13394
13395         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13396         * include/winbase.h: Added SECURITY_xx for CreateFile
13397         * include/winbase.h: Added RTS and DTS control values
13398         * include/winbase.h: Fixed SYSTEM_INFO structure
13399         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13400         * include/winbase.h: Added FILE_TYPE_REMOTE
13401         * include/winbase.h: Added modem status flags
13402         * include/winbase.h: Added HINSTANCE_ERROR
13403         * include/winbase.h: Added DefineDosDevice defines
13404         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13405         * include/winbase.h: Added STARTF_XX flags
13406         * include/winbase.h: Fixed typo on _lcreat prototype.
13407         * include/winbase.h: Moved DBG_XX to winnt.h
13408         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13409         winnt.h
13410
13411         * include/unknwn.h: Added extern declaration of IID_IUnknown
13412
13413         * include/windowsx.h: Added hmemcpy.
13414
13415         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13416         * include/winnt.h: Added PACCESS_TOKEN
13417         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13418         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13419         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13420         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13421         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13422         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13423
13424         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13425         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13426         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13427
13428         * include/winsvc.h: Removed conflicting defines which were supposed
13429         to be in winnt.h
13430
13431         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13432         and SERVICE_ERROR_TYPE.
13433
13434         * include/winnt.h: Added SERVICE_XX defines.
13435         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13436         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13437
13438         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13439         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13440         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13441         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13442
13443 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13444
13445         * include/winbase.h: Corrected prototype for CreateProcessA
13446
13447         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13448         driver extensions.
13449
13450         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13451         be LPSHELLFOLDER* not LPSHELLFOLDER.
13452
13453         * include/windows.h: Include commdlg.h
13454
13455         * include/winuser.h: Added MDICREATESTRUCT
13456
13457         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13458         CB_ERRSPACE, and CB_OKAY
13459
13460         * include/wingdi.h: Added LPBITMAPINFOHEADER
13461
13462         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13463         are meaningless.
13464         * include/rpcdce2.h: Likewise.
13465
13466         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13467
13468         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13469         * include/olectlid.h: Likewise
13470         * include/shlguid.h: Likewise
13471
13472         * include/coguid.h: Delete file since it was for 16 bit windows only.
13473
13474         * lib/*.def: Appended .dll to library name where needed.
13475
13476         * include/windef.h: Define _stdcall and __stdcall only if not
13477         previously defined instead of undefining first.
13478
13479         * include/dlgs.h: Put RC_INVOKED around structure defs
13480
13481         * include/intshcut.h: New file
13482         * include/isguids.h: New file
13483
13484         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13485
13486 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13487
13488         * include/winnt.h: Added check if _T is defined before defining it
13489
13490         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13491
13492         * include/dlgs.h: New file
13493
13494         * include/winbase.h: Removed DllEntryPoint define
13495
13496         * include/winbase.h: Added SetupComm prototype
13497
13498         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13499         supported anyway.
13500
13501         * include/basetyps.h: Removed use of COMOBJECT define, instead
13502         DECLARE_INTERFACE directly uses comobject attribute when GCC
13503         is used.
13504
13505         * include/wtypes.h: STGC enum was missing typedef
13506
13507         * include/objidl.h: ADVC enum was missing typedef
13508
13509         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13510         they are nested within the VOID definition.
13511
13512         * include/winbase.h: Added stream ids and attributes
13513
13514         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13515         to an ANYSIZE_ARRAY array.
13516
13517 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13518
13519         * include/windef.h: defined _declspec as __declspec since
13520         some programs (like VWCL) use _declspec instead of __declspec
13521
13522         * include/winnt.h: added COMPRESS_FORMAT defines
13523
13524         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13525
13526         * include/winnt.h: added HEAP_XXXX defines
13527
13528         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13529
13530         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13531         specification.
13532
13533         * include/winnt.h: added NTAPI define
13534
13535 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13536
13537         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13538         instead of CHAR or WCHAR.
13539
13540         * include/winnt.h: added _T define
13541
13542         * include/winnt.h: added test for _TCHAR_DEFINED
13543
13544         * include/winnt.h: included string.h for memory macros
13545
13546         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13547
13548         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13549
13550         * include/prsht.h: added PropSheet_XXX macros
13551
13552
13553 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13554
13555         * include/winspool.h: Changed DeletePrinterProcessor and
13556         DeletePrinterProvidor to DeletePrintXX.
13557
13558         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13559         LOGCOLORSPACEW.
13560
13561         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13562         variants
13563
13564         * include/wingdi.h: Likewise for GetLogColorSpace
13565
13566         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13567
13568         * include/richedit.h: Added missing defines and structures
13569
13570         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13571
13572         * include/winuser.h: Added HWND_DESKTOP
13573
13574 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13575
13576         * Makefile: Include ChangeLog when building source
13577         distribution (srcdist)
13578
13579         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13580         are always defined as STDAPI and STDAPI_
13581
13582         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13583         are always defined as STDAPI and STDAPI_
13584
13585         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13586
13587         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13588
13589         * ChangeLog started