OSDN Git Service

Incorporate user-customized <features.h> configuration.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2019-01-22  Keith Marshall  <keith@users.osdn.me>
2
3         Incorporate user-customized <features.h> configuration.
4
5         * tests/Makefile.in (install-mingwrt-headers): Create <features.h>
6         stub; this is an empty file, yielding the default configuration.
7
8 2018-12-23  Keith Marshall  <keith@users.osdn.me>
9
10         Prepare and publish MinGW.org WSL-5.2 release.
11
12         * All files (wsl-5.2-release): Tag assigned.
13
14 2018-12-18  Keith Marshall  <keith@users.osdn.me>
15
16         Make <winver.h> header effectively self-contained.
17
18         * include/winver.h: Include <windef.h>
19
20 2018-11-23  Keith Marshall  <keith@users.osdn.me>
21
22         Fix MinGW-Bug #2248 (SF ticket).
23
24         * include/commctrl.h (NMPGSCROLL): Set packing to 1-byte alignment.
25         (NMPGSCROLL.fwKeys): Change type from BOOL to WORD.
26
27 2018-11-23  Keith Marshall  <keith@users.osdn.me>
28
29         Apply some more cosmetic layout adjustments.
30
31         * include/commctrl.h: Keep 'typedef' and 'struct' on a single line,
32         for each untagged aggregate type definition.
33
34 2018-11-18  Jelle Geerts  <heisenbug@users.osdn.me>
35
36         Fix MinGW-Bug #38736 (OSDN ticket).
37
38         * include/commctrl.h (DTM_SETFORMATW): Correct definition; was 0x1050,
39         but should be equivalent to 0x1000 + 50, which is actually 0x1032.
40
41 2018-11-18  Keith Marshall  <keith@users.osdn.me>
42
43         Make <commctrl.h> header effectively self-contained.
44
45         * include/commctrl.h: Tidy layout; assert copyright.
46         Include <winbase.h> and <prsht.h>; both are required to resolve
47         inter-header dependencies, so achieving effective self-containment.
48         Correctly parenthesize argument references in macro definitions.
49         (pragma GCC system_header): Remove redundant GCC version guard.
50         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
51         (SNDMSG): Remove definition; it is inherited from <prsht.h> anyway.
52         (__AW_ALIAS__, __AW_SUFFIXED__, __AW_STRING_A__, __AW_STRING_W__):
53         Use them; they facilitate maintenance of robust definitions for...
54         [UNICODE vs. ! UNICODE]: ...generic symbols and strings.
55         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
56
57 2018-11-16  Keith Marshall  <keith@users.osdn.me>
58
59         Make <prsht.h> header effectively self-contained.
60
61         * include/prsht.h: Tidy layout; assert copyright.
62         Include <winuser.h> to resolve inter-header dependencies.
63         Correctly parenthesize argument references in macro definitions.
64         (pragma GCC system_header): Remove redundant GCC version guard.
65         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
66         (SNDMSG, POSTMSG) [ifndef]: Remove guard condition; it prevents GCC
67         from checking consistency of alternative definition sources.
68         (__AW_SUFFIXED__): Use it; it improves robustness of...
69         [UNICODE vs. ! UNICODE]: ...generic definitions.
70         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
71
72 2018-10-29  Keith Marshall  <keith@users.osdn.me>
73
74         Clean up <wincon.h>; consolidate its version dependencies.
75
76         * include/wincon.h: Tidy layout; assert copyright.
77         [_WIN32_WINNT]: Always compare it symbolically, with respect to...
78         [_WIN32_WINNT_WIN2K, _WIN32_WINNT_WINXP, _WIN32_WINNT_VISTA]: ...each
79         of these; group and consolidate respective version dependencies.
80         (FOREGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_RED)
81         (FOREGROUND_INTENSITY, BACKGROUND_BLUE, BACKGROUND_GREEN)
82         (BACKGROUND_RED, BACKGROUND_INTENSITY, COMMON_LVB_LEADING_BYTE)
83         (COMMON_LVB_TRAILING_BYTE, COMMON_LVB_GRID_HORIZONTAL)
84         (COMMON_LVB_GRID_LVERTICAL, COMMON_LVB_GRID_RVERTICAL)
85         (COMMON_LVB_REVERSE_VIDEO, COMMON_LVB_UNDERSCORE, CTRL_C_EVENT)
86         (CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT)
87         (CTRL_SHUTDOWN_EVENT, ENABLE_LINE_INPUT, ENABLE_ECHO_INPUT)
88         (ENABLE_PROCESSED_INPUT, ENABLE_WINDOW_INPUT, ENABLE_MOUSE_INPUT)
89         (ENABLE_INSERT_MODE, ENABLE_QUICK_EDIT_MODE, ENABLE_EXTENDED_FLAGS)
90         (ENABLE_AUTO_POSITION, ENABLE_VIRTUAL_TERMINAL_INPUT)
91         (ENABLE_PROCESSED_OUTPUT, ENABLE_WRAP_AT_EOL_OUTPUT)
92         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
93         (ENABLE_LVB_GRID_WORLDWIDE, KEY_EVENT, MOUSE_EVENT)
94         (WINDOW_BUFFER_SIZE_EVENT, MENU_EVENT, FOCUS_EVENT, CAPSLOCK_ON)
95         (ENHANCED_KEY, RIGHT_ALT_PRESSED, LEFT_ALT_PRESSED)
96         (RIGHT_CTRL_PRESSED, LEFT_CTRL_PRESSED, SHIFT_PRESSED, NUMLOCK_ON)
97         (SCROLLLOCK_ON, FROM_LEFT_1ST_BUTTON_PRESSED)
98         (FROM_LEFT_2ND_BUTTON_PRESSED, FROM_LEFT_3RD_BUTTON_PRESSED)
99         (FROM_LEFT_4TH_BUTTON_PRESSED, RIGHTMOST_BUTTON_PRESSED, MOUSE_MOVED)
100         (DOUBLE_CLICK, MOUSE_WHEELED, MOUSE_HWHEELED, CONSOLE_FULLSCREEN)
101         (CONSOLE_FULLSCREEN_HARDWARE, CONSOLE_FULLSCREEN_MODE)
102         (CONSOLE_WINDOWED_MODE, CONSOLE_NO_SELECTION)
103         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_SELECTION_NOT_EMPTY)
104         (CONSOLE_MOUSE_SELECTION, CONSOLE_MOUSE_DOWN, HISTORY_NO_DUP_FLAG):
105         Redefine, expressing all values in hexadecimal rather than decimal;
106         this is consistent with Microsoft documentation, and it is also more
107         logical, since all represent bit-flags, bit-fields, or bit-masks.
108
109 2018-10-24  Keith Marshall  <keith@users.osdn.me>
110
111         Make <wincon.h> header effectively self-contained.
112
113         * include/wincon.h [_WIN32_WINNT < 0x0600]: Include <windef.h>...
114         [_WIN32_WINNT >= 0x0600]: ...but, Vista and later need <wingdi.h>
115         [__GNUC__ >= 3]: Remove condition; used only in association with...
116         (#pragma GCC system_header): ...this, it is redundant in this context.
117         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them as appropriate.
118
119 2018-10-24  David Gressett  <texasgaidheal@users.osdn.me>
120
121         Improve WinXP/Vista console I/O support.
122
123         * include/wincon.h (AddConsoleAlias, GetConsoleAlias)
124         (GetConsoleAliases, GetConsoleAliasExes, GetConsoleAliasesLength)
125         (GetConsoleAliasExesLength, GetConsoleOriginalTitle): New function
126         name aliases; define them, mapping them conditionally to represent...
127         [UNICODE]: ...their corresponding UTF-16LE function names, else...
128         [!UNICODE]: ...their corresponding ASCII/DBCS function names.
129         (COMMON_LVB_LEADING_BYTE, COMMON_LVB_TRAILING_BYTE
130         (COMMON_LVB_GRID_HORIZONTAL, COMMON_LVB_GRID_LVERTICAL)
131         (COMMON_LVB_GRID_RVERTICAL, COMMON_LVB_REVERSE_VIDEO)
132         (COMMON_LVB_UNDERSCORE, ENABLE_VIRTUAL_TERMINAL_INPUT)
133         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
134         (ENABLE_LVB_GRID_WORLDWIDE,(MOUSE_HWHEELED): Define them.
135         (GetConsoleAliasA, GetConsoleAliasW, HandlerRoutine): Declare.
136         (CONSOLE_FULLSCREEN, CONSOLE_FULLSCREEN_HARDWARE): Define when...
137         [_WIN32_WINNT >= 0x0500]: ...this prevails; additionally...
138         (GetConsoleFontSize): ...declare function.
139         (CONSOLE_NO_SELECTION, CONSOLE_SELECTION_NOT_EMPTY)
140         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_MOUSE_SELECTION)
141         (CONSOLE_MOUSE_DOWN): Define them; make them visible only when...
142         [_WIN32_WINNT >= 0x0501]: ...this prevails.
143         (struct _CONSOLE_FONT_INFO): Make it visible, only when...
144         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
145         (CONSOLE_FONT_INFO, PCONSOLE_FONT_INFO): ...these typedefs.
146         (struct _CONSOLE_SELECTION_INFO): Declare it; visible only when...
147         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
148         (CONSOLE_SELECTION_INFO, PCONSOLE_SELECTION_INFO): ...these typedefs.
149         [_WIN32_WINNT >= 0x0501] (AddConsoleAliasA, AddConsoleAliasW)
150         (GetConsoleAliasesA, GetConsoleAliasesW, GetConsoleAliasExesA)
151         (GetConsoleAliasExesW, GetConsoleAliasesLengthA)
152         (GetConsoleAliasesLengthW, GetConsoleAliasExesLengthA)
153         (GetConsoleAliasExesLengthW, GetConsoleSelectionInfo)
154         (GetCurrentConsoleFont): Declare functions.
155         [_WIN32_WINNT >= 0x0600] (HISTORY_NO_DUP_FLAG): Define it.
156         (struct _CONSOLE_FONT_INFOEX): New structure; declare it only when...
157         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
158         (CONSOLE_FONT_INFOEX, PCONSOLE_FONT_INFOEX): ...these typedefs.
159         (CONSOLE_HISTORY_INFO, PCONSOLE_HISTORY_INFO): New typedefs; they
160         map to an anonymous structure, and are visible only when...
161         [_WIN32_WINNT >= 0x0600]: ...this prevails.
162         (struct _CONSOLE_READCONSOLE_CONTROL): New structure; declare when...
163         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
164         (CONSOLE_READCONSOLE_CONTROL, PCONSOLE_READCONSOLE_CONTROL): ...these.
165         (struct _CONSOLE_SCREEN_BUFFER_INFOEX): New structure; declare when...
166         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
167         (CONSOLE_SCREEN_BUFFER_INFOEX, PCONSOLE_SCREEN_BUFFER_INFOEX):
168         ...these typedefs.
169         [_WIN32_WINNT >= 0x0600] (GetConsoleHistoryInfo)
170         (GetConsoleOriginalTitleA, GetConsoleOriginalTitleW)
171         (GetConsoleScreenBufferInfoEx, GetCurrentConsoleFontEx)
172         (SetConsoleHistoryInfo, SetConsoleScreenBufferInfoEx)
173         (SetCurrentConsoleFontEx): Declare functions.
174
175 2018-09-03  Keith Marshall  <keith@users.osdn.me>
176
177         Prepare and publish MinGW.org WSL-5.1.1 release.
178
179         * All files (wsl-5.1.1-release): Tag assigned.
180
181 2018-07-29  Keith Marshall  <keith@users.osdn.me>
182
183         Don't restrict <winerror.h> exposure when including <winsock.h>
184
185         * include/winerror.h [__WINSOCK_H_SOURCED__]: Remove filters.
186         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): Do not define; delete
187         all dependent filter references.
188
189 2018-07-11  Keith Marshall  <keith@users.osdn.me>
190
191         Make <wincrypt.h> header effectively self-contained.
192
193         * include/wincrypt.h: Include <winbase.h>
194
195 2018-07-11  Keith Marshall  <keith@users.osdn.me>
196
197         Correct <wincrypt.h> typographic errors; fix issue [#38391]
198
199         * include/wincrypt.h (CALG_TLS1PRF): Delete symbolic reference to...
200         (ALG_CLASS_DHASH): ...this; there is no such symbol; replace it with...
201         (ALG_CLASS_HASH): ...this, which represents the correct reference.
202         (struct _CRYPTOAPI_BLOB): Delete extraneous "typedef" keyword; this
203         struct definition is not directly associated with any type name.
204         (struct _SSL_EXTRA_CERT_CHAIN_POLICY_PARA): Likewise.
205
206 2018-02-26  Keith Marshall  <keith@users.osdn.me>
207
208         Prepare and publish MinGW.org WSL-5.1 release.
209
210         * All files (wsl-5.1-release): Tag assigned.
211
212 2018-02-24  Keith Marshall  <keith@users.osdn.me>
213
214         Make <iptypes.h> header effectively self-contained.
215
216         * include/iptypes.h: Assert copyright; tidy layout.
217         Include <windef.h>; it is required for self-containment.
218         (__need_time_t): Define for selective inclusion of <sys/types.h>
219         (_BEGIN_C_DECLS, _END_C_DECLS): Use them as appropriate.
220         (_WIN32_WINNT): Always compare it symbolically.
221         (__dhcp_time_t): New temporary data type macro; define it...
222         [_WIN64]: ...as equivalent to __time64_t, otherwise...
223         [!_WIN64]: ...equivalent to __time32_t, and then...
224         (struct _IP_ADAPTER_INFO): ...use it as the data type for...
225         (LeaseObtained, LeaseExpires): ...these fields.
226
227 2017-12-20  Keith Marshall  <keith@users.osdn.me>
228
229         Make <winreg.h> header effectively self-contained.
230
231         * include/winreg.h: Include <winbase.h>, thus achieving effective
232         self-containment; since this also indirectly includes <_mingw.h>,
233         there is no longer any need to include it directly.
234
235 2017-12-20  Keith Marshall  <keith@users.osdn.me>
236
237         Clean up, following issue [#2262] patch application.
238
239         * include/winreg.h: Tidy layout; correct copyright assertion.
240         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
241         [UNICODE] (__AW): Do not use deleted macro; replace it with...
242         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
243         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
244         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
245         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
246         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
247         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
248         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
249         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
250         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
251         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
252         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
253         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
254         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
255         all "4.x" branches specified these incorrectly, dependent on...
256         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
257         "legacy" branch, whence the "5.x" branches are propagated, correctly
258         required an alternative condition which is the equivalent of...
259         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
260
261 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
262
263         Update registry management API, per issue [#2262].
264
265         * include/winreg.h: Merge changes from 4.1-dev branch.
266         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
267         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
268         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
269         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
270         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
271         (RRF_ZEROONFAILURE): New manifest constants; define them.
272         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
273         (RegOverridePredefKey): Add previously omitted function prototypes.
274         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
275         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
276         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
277         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
278         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
279         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
280         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
281         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
282         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
283         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
284         (RegDeleteKeyValueA, RegDeleteKeyValueW)
285         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
286         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
287         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
288         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
289         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
290         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
291         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
292         (RegSetKeyValue): Define, mapping each to its respective function...
293         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
294         [defined UNICODE] (__AW): ...for the UTF-16LE case.
295
296         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
297         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
298         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
299         (RegSaveKeyExW@16): Remove them; relocate them to...
300         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
301         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
302         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
303         (RegSaveKeyExW@16): ...their correct location, here.
304         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
305         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
306         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
307         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
308         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
309         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
310         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
311
312 2017-12-16  Keith Marshall  <keith@users.osdn.me>
313
314         Provide default definition for _WIN32_IE feature test macro.
315
316         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
317         (_WIN32_IE_IE50): ...this default value.
318
319         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
320         a conflicting proposal for the default value.
321
322 2017-12-06  Keith Marshall  <keith@users.osdn.me>
323
324         Prepare and publish MinGW.org WSL-5.0.2 release.
325
326         * All files (wsl-5.0.2-release): Tag assigned.
327
328 2017-11-28  Keith Marshall  <keith@users.osdn.me>
329
330         Make <wsnetbs.h> header effectively self-contained.
331
332         * include/wsnetbs.h: Assert copyright; tidy layout; include
333         "_winsock.h", so making this header effectively self-contained, and
334         thus relieving the user of a responsibility for ensuring that some
335         other appropriate WinSock header has been included first.
336
337 2017-11-28  Keith Marshall  <keith@users.osdn.me>
338
339         Factor <winsock.h> duplicate content out of <winsock2.h>
340
341         * include/winsock2.h: Remove all declarations and definitions which
342         are identically specified in <winsock.h>, but keep them in scope by...
343         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
344         declarations and definitions therefrom, which introduce conflicts.
345         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
346         definitions and declarations.
347
348         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
349         WinSock v1.1 and WinSock v2, the latter of which will override when
350         correctly included by <winsock2.h>
351
352 2017-11-24  Keith Marshall  <keith@users.osdn.me>
353
354         Make <winsock.h> and <winsock2.h> duplicate code congruent.
355
356         * include/winsock.h (SOMAXCONN): Move definition into...
357         [!__INSIDE_MSYS__]: ...this guarded scope.
358
359         * include/winsock2.h: Rearrange as necessary.
360         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
361         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
362         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
363         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
364         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
365         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
366         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
367         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
368         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
369         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
370         [!defined __INSIDE_MSYS__]: ...as this, throughout.
371         (gethostname): Update function prototype, adding...
372         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
373
374         * include/ws2spi.h: Tidy layout; assert copyright.
375         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
376         (LPFD_SET): Delete all type references; use...
377         (fd_set *): ...this instead.
378
379 2017-11-14  Keith Marshall  <keith@users.osdn.me>
380
381         Establish default selection for WinSock API declaration.
382
383         * include/windows.h include/nspapi.h: Include...
384         * include/_winsock.h: ...this new system private header; it selects...
385         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
386         provided by conditional inclusion of <winsock2.h>, otherwise...
387         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
388         as provided by inclusion of <winsock.h>
389
390         * tests/headers.at <_winsock.h>: Add reference.
391
392 2017-11-14  Keith Marshall  <keith@users.osdn.me>
393
394         Update gethostname() declaration; drop Cygwin specificity.
395
396         * include/winsock.h (gethostname): Declare unconditionally; add...
397         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
398         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
399         [!defined __INSIDE_MSYS__]: ...as this, throughout.
400
401 2017-11-09  Keith Marshall  <keith@users.osdn.me>
402
403         Normalize fd_set event macros for <winsock2.h> compatibility.
404
405         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
406         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
407         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
408         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
409         count to a bit flag with value of 1, in each case respectively.
410         [_WINSOCK2_H]: Extend shift count enumeration, to include...
411         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
412         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
413         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
414         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
415         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
416         of 1 greater than the offset of the last defined flag; hence...
417         (FD_ALL_EVENTS): ...derive this mask for all event flags.
418
419 2017-11-09  Keith Marshall  <keith@users.osdn.me>
420
421         Filter potential WinSock v2 conflicts out of <winsock.h>
422
423         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
424         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
425         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
426         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
427         not define any of these; they are not compatible with WinSock v2.
428         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
429         appropiately in <winsock2.h>
430
431 2017-11-09  Keith Marshall  <keith@users.osdn.me>
432
433         Filter out <winsock.h> typedef anomalies.
434
435         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
436         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
437         them as type definitions, but warn of potential conflict with...
438         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
439         function; declare its prototype.
440
441 2017-11-08  Keith Marshall  <keith@users.osdn.me>
442
443         Overhaul WinSock fd_set content management macros.
444
445         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
446         original implementations of each of these macros, redirecting to...
447         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
448         inline functions, respectively; these are more robust, and correct a
449         defect in the original FD_SET macro implementation, whereby duplicate
450         descriptors could be added to an fd_set array, but would not then be
451         removed by the corresponding FD_CLR macro.
452
453         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
454         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
455         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
456         function, which is implemented in each of these libraries.
457
458 2017-11-07  Keith Marshall  <keith@users.osdn.me>
459
460         Identify features which have been deprecated in WinSock v2.
461
462         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
463         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
464         (__MINGW_ATTRIB_DEPRECATED): ...to this.
465
466         * include/winsock.h include/winsock2.h: Qualify...
467         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
468         (WSACancelBlockingCall): ...each of these function prototypes, with...
469         (__WINSOCK2_DEPRECATED): ...this attribute.
470
471 2017-11-07  Keith Marshall  <keith@users.osdn.me>
472
473         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
474
475         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
476         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
477         with preferred convention for system feature test macros.
478
479 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
480
481         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
482
483         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
484         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
485         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
486         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
487         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
488         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
489         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
490         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
491         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
492         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
493         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
494
495         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
496         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
497
498 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
499
500         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
501
502         * include/wtypes.h: Tidy layout; assert copyright.
503         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
504         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
505         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
506         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
507         (__BLOB_T_DEFINED): ...this; do not define...
508         (_WTYPES_H): ...this external guard.
509
510         * include/nspapi.h: Tidy layout; assert copyright.
511         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
512         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
513         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
514         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
515         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
516         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
517         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
518         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
519         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
520         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
521         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
522         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
523         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
524         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
525         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
526         (__AW_ALIAS__): ...this, for definition of each of...
527         (SERVICE_INFO, LPSERVICE_INFO): ...these.
528
529         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
530         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
531         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
532         include nspapi.h selectively, to acquire them.
533
534 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
535
536         Factor <winerror.h> duplicate content out of winsock headers.
537
538         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
539         conditional block, and all of its content; selectively include...
540         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
541         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
542         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
543         define them, to segregate WSA error messages applicable to WinSock v2
544         only, from those applicable to both WinSock v1.1 and WinSock v2.
545         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
546         codes, except WSABASEERR, relative to WSABASEERR itself.
547
548 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
549
550         Factor <sys/time.h> duplicate content out of winsock headers.
551
552         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
553         conditional block, and all its content; include <sys/time.h> instead.
554         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
555         processing this header, such that only selected content from other
556         internally referenced headers is exposed.
557
558 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
559
560         Source BSD non-standard type definitions from mingwrt header.
561
562         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
563         conditional block, and its entire type definition content; include...
564         * include/sys/bsdtypes.h: ...this common file instead; it defines...
565         (u_char, u_int, u_long, u_short): ...these non-standard data types.
566
567 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
568
569         Correct misuse of __INSIDE_MSYS__ feature test.
570
571         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
572         omits "defined" operator; it should be expressed consistently as...
573         [! defined __INSIDE_MSYS__]: ...this; correct it.
574
575 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
576
577         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
578
579         * include/winsock.h: Tidy layout; assert copyright.
580         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
581
582         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
583         sections, which are common with <winsock.h>, are laid out congruently.
584         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
585         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
586         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
587         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
588         [UNICODE]: ...alternative typedefs, and function name aliases...
589         [!UNICODE]: ...versus this case.
590
591 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
592
593         Resolve secondary issue arising from MinGW-Bug [#2350]
594
595         * include/winuser.h (GetTitleBarInfo)
596         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
597         it conflicted with current MSDN documentation, so now falls within...
598         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
599
600 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
601
602         Resolve MinGW-Bug [#2350]
603
604         * include/winuser.h (GetTitleBarInfo): Move prototype after...
605         (PTITLEBARINFO): ...this type definition; it is used as a function
606         argument type, so must be defined beforehand.
607
608 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
609
610         Extend testsuite to cover winsock fd_set macro operations.
611
612         * tests/winsock.at: New file; it implements appropriate tests, and
613         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
614         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
615
616         * tests/testsuite.at.in (winsock.at): Integrate it.
617         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
618         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
619         default list of libraries, or resets the list to this initial default.
620         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
621         library specifications, to be used until subsequently reset.
622
623 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
624
625         Prepare and tag for release of MinGW.org WSL-5.0.1
626
627         * All files (wsl-5.0.1-release): Tag assigned.
628
629 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
630
631         Automate testsuite dependency generation.
632
633         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
634         enumerate all such wildcard matches as prerequisites, instead of...
635         (headers.at): ...this sole explicit dependency.
636
637 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
638
639         Make <winnt.h> header effectively self-contained.
640
641         * include/winnt.h (_WINNT_H): Defer definition unless included via...
642         (windef.h): ...this; include it, to enforce inclusion order, then...
643         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
644
645 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
646
647         Consolidate <winuser.h> version specific conditionals.
648
649         * include/winuser.h: Reorganize file content; group manifest constant
650         definitions into one nested collection of conditional blocks, with one
651         block per Windows version evolution; do likewise for type definitions
652         and function prototypes which are always exposed, and separately...
653         [! defined NOGDI]: ...for those which may be suppressed, when GDI
654         support is not required.
655
656 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
657
658         Make <winuser.h> header effectively self-contained.
659
660         * include/winuser.h (stdarg.h): Include it, in addition to...
661         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
662         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
663
664 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
665
666         Consolidate <wingdi.h> version specific conditionals.
667
668         * include/wingdi.h: Reorganize file content; group manifest constant
669         definitions into a single nested collection of conditional blocks, for
670         those definitions which are common to both Win9x and WinNT, with one
671         block per Windows version evolution, sorting alphabetically within
672         each block; do likewise for additional manifest constant definitions
673         which are specific to WinNT, and also for data type definitions and
674         function prototypes.
675
676 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
677
678         Tidy, and make <wingdi.h> header effectively self-contained.
679
680         * include/wingdi.h: Tidy layout; assert copyright.
681         (windef.h): Include it; this achieves self-containment.
682         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
683         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
684         (__AW_ALIAS__): ...this, when defining each of...
685         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
686         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
687         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
688         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
689         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
690         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
691         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
692         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
693         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
694         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
695         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
696         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
697         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
698         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
699         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
700         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
701         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
702         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
703         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
704         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
705         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
706         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
707         (wglUseFontOutlines, GetGlyphIndices): ...these.
708
709 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
710
711         Declare CONDITION_VARIABLE API, per feature request [#2314]
712
713         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
714         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
715         (InitializeConditionVariable, SleepConditionVariableCS)
716         (SleepConditionVariableSRW, WakeAllConditionVariable)
717         (WakeConditionVariable): ...declare prototypes.
718
719 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
720
721         Declare SRWLOCK API, to support feature request [#2314]
722
723         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
724         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
725         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
726         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
727         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
728         (TryAcquireSRWLockShared): Declare additional prototypes.
729
730 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
731
732         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
733
734         * include/winerror.h: Tidy layout; assert copyright.
735
736         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
737         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
738         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
739         both locations; it permitted inconsistency between the two.
740
741 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
742
743         Consolidate <winbase.h> version specific conditionals.
744
745         * include/winbase.h: Reorganize file content; group manifest constant
746         definitions into one nested collection of conditional blocks, with one
747         block per Windows version evolution, sorting alphabetically within each
748         block; do likewise for data type definitions and function prototypes.
749
750 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
751
752         Tidy, and make <winbase.h> header effectively self-contained.
753
754         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
755         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
756         (__AW_EXTENDED__): ...this; subsequently reimplement...
757         (__AW_ALIAS__): ...this, with original name, now encapsulating...
758         (__AW_SUFFIXED__): ...this.
759
760         * include/dbt.h (__AW_ALIAS__): Replace all references with...
761         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
762         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
763         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
764
765         * include/winbase.h: Tidy layout; assert copyright.
766         (stdarg.h, windef.h): Include them, to achieve self-containment.
767         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
768         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
769         [__AW_ALIAS__]: ...this, to correctly specify each of...
770         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
771         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
772         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
773         [__AW_SUFFIXED__]: ...this, to correctly map each of...
774         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
775         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
776         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
777         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
778         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
779         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
780         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
781         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
782         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
783         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
784         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
785         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
786         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
787         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
788         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
789         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
790         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
791         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
792         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
793         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
794         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
795         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
796         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
797         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
798         (GetPrivateProfileInt, GetPrivateProfileSection)
799         (GetPrivateProfileSectionNames, GetPrivateProfileString)
800         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
801         (GetProfileString, GetShortPathName, GetStartupInfo)
802         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
803         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
804         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
805         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
806         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
807         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
808         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
809         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
810         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
811         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
812         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
813         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
814         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
815         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
816         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
817         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
818         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
819         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
820         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
821         (WritePrivateProfileString, WritePrivateProfileStruct)
822         (WriteProfileSection, WriteProfileString): ...these, and add...
823         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
824         (GetFirmwareEnvironmentVariable): ...these previously missing generic
825         function name aliases.
826
827 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
828
829         Refactor mingwrt and w32api common makefile content.
830
831         * Makefile.in (w32api-srcdist-config-files): Rename it...
832         (w32api-srcdist-common-files): ...as this phoney build rule.
833         (shared_include_file): New macro; define it, and include named file.
834         (configure, config.status, Makefile, config.status.missing, _mingw.h)
835         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
836         out; relocate them to new file in common parent directory...
837         * ../Makefile.comm: ...here.
838
839 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
840
841         Correct a copyright notice update omission.
842
843         * configure.ac: Extend copyright date range to include 2017.  Also
844         clean up superfluous trailing whitespace.
845
846 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
847
848         Fix generated header file dependencies.
849
850         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
851         [VERSION.m4]: ...this; package version changes are no longer made...
852         [configure.ac]: ...here; delete associated prerequisite reference.
853         (distclean-local): Delete them.
854
855 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
856
857         Prepare and tag for release of w32api-5.0 package set.
858
859         * All files (wsl-5.0-release): Tag assigned.
860
861 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
862
863         Implement basic test suite infrastructure.
864
865         * tests: New subdirectory; it hosts...
866         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
867         * tests/headers.at: ...these new files; they implement the basic test
868         suite infrastructure, initially comprising header integrity checks.
869
870         * configure.ac (AC_PROG_CXX): Check it.
871         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
872         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
873         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
874         tests/Makefile.
875
876         * Makefile.in (check test tests): New rules; all are synonymous.
877         (check-recursive): New rule; invoked by each of the preceding three.
878         (w32api-srcdist-testsuite-files): New rule; implement and use it...
879         (w32api-srcdist-files): ...here.
880
881 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
882
883         Add missing constant definition, per issue [#2249].
884
885         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
886
887 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
888
889         Avoid unnecessary duplication of configuration files.
890
891         * Makefile.in (vpath install-sh): Define it; it matches...
892         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
893         rule for creating duplicate file reference links in $top_srcdir.
894         (configure): Add '-I ..' option, when running autoconf.
895         (w32api-srcdist-files): Rename it as...
896         (w32api-srcdist-package-files): ...this; remove dependencies on...
897         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
898         (w32api-srcdist-config-files): ...this new distributable files
899         enumeration goal; add it as one new prerequisite of...
900         (w32api-srcdist-files): ...this repurposed goal; also depends on...
901         (w32api-srcdist-package-files): ...this; populate it using...
902         (SRCDIST_ADD): ...this macro; redefine it accordingly.
903
904 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
905
906         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
907
908         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
909         it was previously transcribed incorrectly, as being equivalent to...
910         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
911         (FILE_DEVICE_DISK): ...this.
912
913 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
914
915         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
916
917         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
918         alternative generic symbol mapping definitions, and typedefs, with...
919         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
920         their respective ANSI and UNICODE specific references.
921
922 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
923
924         Deprecate obsolete <winable.h> and <pbt.h> headers.
925
926         * Makefile.in (%.h.in): Generalize vpath definition.
927         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
928         (w32api_generated_headers, replace_headers, macro_name): New macros.
929         (install-w32api-headers): Add dependency on w32api_dist_headers.
930         (%.h): New static pattern rule; it generates generic dependants of...
931         * include/obsolete.h.in: ...this new template for obsolete headers.
932
933         * include/winable.h include/pbt.h: Delete them; they are obsolete;
934         replace them by install-time generated generic stubs.
935
936 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
937
938         Update <winuser.h> and <dbt.h>; fix issue [#2317].
939
940         * include/winuser.h: Tidy layout; add copyright notice.
941         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
942         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
943         selective inclusion of content from other headers; delete when done.
944         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
945         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
946         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
947         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
948         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
949         them selectively from <dbt.h>, where they are properly defined.
950         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
951         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
952         formerly UINT, which doesn't match 64-bit size required for Win64.
953         (SetTimer): Likewise; also declare similar return type.
954         (WINEVENTPROC): Add missing CALLBACK attribute.
955         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
956
957         * include/w32api.h (__AW_ALIAS__): New macro; define it.
958         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
959
960         * include/dbt.h: Tidy layout; add copyright notice.
961         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
962         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
963         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
964         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
965         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
966         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
967         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
968         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
969         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
970         structure typedef names, and their respectively corresponding...
971         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
972         type names.
973
974 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
975
976         Fix a minor ISO-C++11 conformity issue.
977
978         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
979         by ISO-C++11, between concatenated string literal elements.
980         (GetFiberData, NtCurrentTeb): Likewise.
981
982 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
983
984         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
985
986         * include/ddk/winddk.h: Update per issue [#2307] resolution.
987         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
988
989 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
990
991         Prepare and tag all files for release of w32api-3.18.1
992
993         * configure.ac (AC_INIT): Increment patch level to 3.18.1
994
995 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
996
997         Resolve improper macro expansion issue [#2307].
998
999         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
1000         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
1001         dependent macro WITHIN the expansion of each of these; hence...
1002
1003         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
1004         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
1005         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
1006         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1007         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1008         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
1009         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
1010         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
1011         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1012         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1013         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
1014         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1015         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
1016         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
1017         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
1018         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
1019         ...adjust these dependent macro definitions accordingly.
1020
1021         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
1022         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
1023         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
1024         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1025         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1026         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
1027         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
1028         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1029         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
1030         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
1031
1032 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
1033
1034         Update install-sh to match mingw.org/build-aux package.
1035
1036         * install-sh: Delete it; use version in parent directory instead,
1037         recreating local copy, (as symlink, if supported), on demand.
1038
1039 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1040
1041         Eliminate redundant configuration files.
1042
1043         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
1044         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
1045
1046         * configure.ac (AC_PROG_LN_S): Add configuration check.
1047
1048 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1049
1050         Discard redundant config.guess and config.sub files.
1051
1052         * config.guess config.sub: Delete them; they are no longer required.
1053         * Makefile.in (SRCDIST_ADD): Remove related references.
1054
1055 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1056
1057         Merge recent legacy branch updates to 5.0-active branch.
1058
1059         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
1060         * include/sdkddkver.h include/setupapi.h include/windows.h
1061         * include/winnt.h include/winuser.h include/winver.h
1062         * include/wtsapi32.h lib/wtsapi32.def: Updated.
1063
1064 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1065
1066         Prepare and tag all files for release of w32api-3.18.
1067
1068 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1069
1070         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
1071
1072         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
1073         references from $(MAKE) command lines; make passes them implicitly.
1074
1075 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1076
1077         Backport MemoryBarrier() implementation from 4.0-dev branch.
1078
1079         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
1080         Earnie's original inline implementation, but declared 'static' to fix
1081         issue [#1661]; it is further modified, to avoid the broken pre-Vista
1082         fallback identified by issue [#2131], and to remove references to...
1083         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
1084         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
1085         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
1086         back to inline assembly code when necessary.
1087
1088         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
1089         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
1090         code, for hosts which do not support the SSE2 'mfence' instruction.
1091
1092 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1093
1094         Merge further W32API updates from Cygwin CVS.
1095         Incorporated selected changes from 2012-08-01 to 2012-08-04.
1096
1097         * include/setupapi.h include/winuser.h include/winver.h
1098         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
1099
1100 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1101
1102         Update mapping of GCC to MSVC host identification macros.
1103
1104         * include/windows.h: Assert copyright; tidy layout.
1105         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
1106         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
1107         [!_WINSVC_H]: Do not explicitly test these here; they are properly
1108         managed implicitly, by GCC, when including the associated headers.
1109
1110         * include/winnt.h: Assert copyright; tidy layout.
1111         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1112         (__aligned__, __always_inline__, __selectany__): Prefer these...
1113         (aligned, always_inline, selectany): ...to these attribute forms.
1114         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
1115         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
1116         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
1117         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
1118         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
1119         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
1120         (_M_IX86): ...also removing this, but relocate it to...
1121         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
1122         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
1123         appropriate.
1124
1125         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
1126         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
1127
1128 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1129
1130         Merge W32API updates, from Cygwin CVS, into legacy branch.
1131         Incorporate changes since release of w32api-3.17, until 2012-07-06.
1132
1133         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
1134         2012-04-28 commit to Cygwin CVS.
1135
1136         * include/gdiplus/gdiplustypes.h include/imagehlp.h
1137         * include/routprot.h include/shlwapi.h include/userenv.h
1138         * include/winbase.h include/wincon.h include/windef.h
1139         * include/winerror.h include/wingdi.h include/winnt.h
1140         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
1141         match Cygwin CVS state, as of 2012-07-06.
1142
1143         * include/wincrypt.h: Updated to remove duplicate manifest constant
1144         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
1145         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
1146         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
1147         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
1148         copies of these further duplicated definitions, identified during
1149         the merging operation.
1150
1151 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1152
1153         Synchronize package version management with MinGW Runtime.
1154
1155         * VERSION.m4: New file; link it to keep in sync with identically named
1156         file in top level composite package source directory; it defines...
1157         (__VERSION__): ...this new composite package version macro.
1158
1159         * aclocal.m4: Link it, to keep in sync with identically named files in
1160         top level composite source and sibling mingwrt sub-package directories.
1161         (__VERSION__): New macro; include VERSION.m4 to define it.
1162         (__BUG_REPORT_URL__): New macro; define it.
1163
1164         * configure.ac (AC_INIT): Assign package version and bug report URL...
1165         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
1166         automatic inclusion of aclocal.m4
1167
1168         * Makefile.in (configure): Add dependency on VERSION.m4
1169
1170 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1171
1172         Eliminate redundant <parts/winioctl.h> header.
1173
1174         * include/parts/winioctl.h: Delete it; distribute its content...
1175         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
1176         ...among these, separating it into discrete sections based on...
1177         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
1178         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
1179         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
1180         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
1181
1182         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
1183         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
1184
1185 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1186
1187         Enforce consistent specification of package version.
1188
1189         * include/w32api.h: Rename as...
1190         * include/w32api.h.in: ...this build-time template file.
1191         (__W32API_VERSION): Redefine it, in terms of...
1192         (%PACKAGE_VERSION_LONG%): ...this substitution template.
1193         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
1194         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
1195         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
1196         (%PACKAGE_VERSION_PATCH%): ...these.
1197
1198         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
1199         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
1200         mingwrt/include/_mingw.h.in file.
1201
1202         * Makefile.in (all-w32api-libs): Add dependency on...
1203         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
1204         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
1205         they apply appropriate substitutions to the renamed template files.
1206         (install-w32api-headers): Explicitly add w32api.h
1207
1208 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1209
1210         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
1211
1212         * include/parts/winioctl.h: New file; it provides infrastructure for
1213         sharing of common code between DDK headers and primary <winioctl.h>
1214         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
1215         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
1216         macros; they facilitate more consise expression of factored out IOCTL
1217         and FSCTL macros; define them.
1218
1219         * include/ddk/ntddk.h: Assert copyright; tidy layout.
1220         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
1221         (_DDK_NTDDK_H): ...this; it provides better indication of location.
1222         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1223
1224         * include/ddk/winddk.h: Assert copyright; tidy layout.
1225         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
1226         (_DDK_WINDDK_H): ...this; it provides better indication of location.
1227         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
1228         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1229         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
1230         (METHOD_NEITHER): Redefine as enumeration; factor it out.
1231         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
1232         (FILE_WRITE_ACCESS): Likewise.
1233         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1234         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1235         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1236         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1237         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1238         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1239         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1240         (PPARTITION_INFORMATION_MBR): Likewise.
1241         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1242         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1243         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1244         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1245         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1246         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1247         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1248         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1249         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1250         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1251         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1252         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1253         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1254         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1255         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1256         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1257         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1258         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1259         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1260         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1261         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1262         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1263         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1264         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1265         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1266         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1267         was defined only when including this enumeration from winioctl.h
1268         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1269         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1270         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1271         include parts/winioctl.h
1272
1273         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1274         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1275         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1276         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1277         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1278         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1279         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1280         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1281         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1282         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1283         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1284         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1285         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1286         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1287         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1288
1289         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1290         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1291         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1292         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1293         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1294         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1295         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1296         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1297         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1298         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1299         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1300         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1301         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1302         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1303         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1304         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1305         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1306         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1307         these macros are now defined in parts/winioctl.h; include it.
1308         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1309         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1310         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1311         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1312         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1313         (VALID_NTFT): Redefine as enumeration; factor it out.
1314         (IsRecognizedPartition, IsContainerPartition): Factor out.
1315         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1316         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1317         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1318         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1319         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1320         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1321         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1322         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1323         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1324         (struct _PARTITION_INFORMATION): Change field data types for...
1325         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1326         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1327         with Windows DDK convention, then factor out struct, together with...
1328         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1329         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1330         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1331         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1332         (struct _GET_LENGTH_INFORMATION)
1333         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1334         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1335         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1336         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1337         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1338         (PFORMAT_EX_PARAMETERS): Factor out.
1339         (struct _REASSIGN_BLOCKS): Change field data types for...
1340         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1341         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1342         convention, then factor out the struct definition, together with...
1343         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1344         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1345         (PSET_PARTITION_INFORMATION): Factor out.
1346         (struct _VERIFY_INFORMATION): Change field data type for...
1347         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1348         factor out the entire struct definition, together with...
1349         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1350         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1351         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1352         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1353         (PDISK_GROW_PARTITION): Factor out.
1354
1355         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1356         definitions from Windows DDK headers, by including parts/winioctl.h;
1357         delete duplicate definitions already identified as having been factored
1358         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1359         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1360         UCHAR, resulting in no significant changes, except that...
1361         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1362         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1363         (StorageManagerName): ...these previously missing fields, originally
1364         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1365         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1366
1367 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1368
1369         Windows application module version information API updates.
1370
1371         * include/winver.h: Assert copyright; tidy layout.
1372         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1373         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1374         having both ANSI and UTF-16LE specific alternative implementations.
1375         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1376         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1377         note that both are generic, with ANSI and UTF-16LE implementations,
1378         but the ANSI implementations are missing from MSVCRT.DLL when...
1379         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1380
1381         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1382         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1383
1384 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1385
1386         Revert a failed experimental macro construct.
1387
1388         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1389         code, and doesn't work in the C preprocessor conditional context where
1390         its associated constant definitions are most likely to be required.
1391         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1392         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1393         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1394         now in terms of their preferred equivalents from <sdkddkver.h>
1395
1396 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1397
1398         Code clean-up; fix MinGW-Bug [#2263].
1399
1400         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1401         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1402         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1403
1404         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1405         style comments, using ISO-C conforming style; remove all redundant
1406         parameter names from function prototype declarations, throughout.
1407         (pragma GCC system_header): Remove pointless conditional guard.
1408         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1409         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1410         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1411         alternatives, respectively; they offer improved self-documentation.
1412         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1413         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1414         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1415         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1416         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1417         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1418         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1419         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1420         from their __AW_STRING_A__ equivalent string constant definitions.
1421         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1422         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1423         a hexadecimal expression of the mask value over the former decimal.
1424         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1425         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1426         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1427         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1428         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1429         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1430         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1431         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1432         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1433         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1434         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1435         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1436         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1437         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1438         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1439         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1440         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1441         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1442         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1443         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1444         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1445         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1446         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1447         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1448         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1449         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1450         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1451         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1452         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1453         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1454         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1455         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1456         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1457         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1458         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1459         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1460         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1461         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1462         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1463         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1464         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1465         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1466         express them in hexadecimal, in preference to original decimal form.
1467         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1468         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1469         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1470         a string literal, but was missing delimiting quotes; insert them.
1471         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1472         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1473         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1474         aliases for each of the UNICODE/non-UNICODE cases respectively.
1475         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1476         was declared as type LPTSTR, but should be type LPSTR.
1477         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1478         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1479         type LPSTR, but should be type LPWSTR.
1480         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1481         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1482         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1483
1484 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1485
1486         Correct defect in build system compilation rule.
1487
1488         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1489         source file; it expands to also include prerequisite header files,
1490         which should not appear on the compilation command line.  Rewrite
1491         rule in static pattern format, and use $< instead.
1492
1493 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1494
1495         Build system corrections for GCC build time support.
1496
1497         * configure.ac (AC_PROG_CC): Don't use this; we need...
1498         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1499         building with only a stage 1 partially built GCC installation.
1500
1501         * Makefile.in (install-headers): New make objective; map it to...
1502         (install-w32api-headers): ...this, for which it is a logical alias.
1503
1504 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1505
1506         Overhaul and streamline build system configuration.
1507
1508         * configure.in: Delete obsolete file; replace with...
1509         * configure.ac: New file; rewritten per current autoconf conventions.
1510
1511         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1512         it now processes the entire build without using separate sub-makes.
1513
1514         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1515         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1516
1517 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1518
1519         Remove unused aclocal.m4 configuration file.
1520
1521         * aclocal.m4: Delete it; it provides no content used by this package.
1522
1523 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1524
1525         Adapt platform feature checks to NTDDI_VERSION conventions.
1526
1527         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1528         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1529         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1530         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1531         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1532
1533         * include/w32api.h: Assert copyright; include sdkddkver.h.
1534         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1535         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1536         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1537         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1538         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1539         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1540         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1541         macro definitions by long integer constants, and mark as deprecated.
1542         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1543         mingwrt/include/_mingw.h, whence we similarly relocate...
1544         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1545
1546         * include/windef.h: Assert copyright; include w32api.h, whence we
1547         infer default assignments, per included sdkddkver.h, for each of...
1548         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1549         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1550
1551 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1552
1553         Remove generated configure script from revision control.
1554
1555         * configure: Delete from SCM; maintainer must regenerate it, when
1556         required, as SCM will now ignore it.
1557
1558 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1559
1560         Cosmetic adjustment to match MSDN documentation.
1561
1562         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1563         of parameter #1 to be LPCVOID, in preference to formerly specified,
1564         and functionally equivalent, 'const LPVOID'.
1565
1566 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1567
1568         Correct typos, as identified by issue [#1534].
1569
1570         * include/setupapi.h (SetupCancelTemporary): Should be...
1571         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1572         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1573         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1574         (SetupQueryA, SetupQueryW): ...these respectively to...
1575         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1576         (SetupDiGetWizardage): Misspelled; correct it to...
1577         (SetupDiGetWizardPage): ...this.
1578
1579 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1580
1581         Declare WTSVirtualChannel API functions per issue [#1342].
1582
1583         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1584         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1585         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1586         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1587         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1588
1589         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1590
1591 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1592
1593         Correct MENUITEMINFO structure definition per issue [#1659].
1594
1595         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1596         field was defined as type DWORD; correct it to type ULONG_PTR.
1597
1598 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1599
1600         Extend visibility of winsock definitions when building Cygwin.
1601
1602         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1603         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1604         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1605         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1606         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1607         [__INSIDE_MSYS__]: ...keep them hidden.
1608
1609         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1610         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1611         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1612         [__INSIDE_MSYS__]: ...also keep them hidden.
1613
1614 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1615
1616         Correct version guard for WinXP minimum requirement.
1617
1618         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1619         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1620         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1621         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1622
1623 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1624
1625         Add missing <shobjidl.h> and associated UUID implementation.
1626
1627         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1628         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1629
1630 2012-03-19  Ben Greear  <greear@users.sf.net>
1631
1632         Adjust header file definition order, to fix issue [#1570].
1633
1634         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1635         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1636
1637 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1638
1639         Add missing return value, flagged by 'make test'.
1640
1641         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1642         Return NO_ERROR in virtual definition.
1643
1644 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1645
1646         Remove duplicate definitions, identified by 'make test'.
1647
1648         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1649         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1650         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1651         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1652         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1653         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1654
1655         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1656         correctly defined (per MSDN) in <wincrypt.h>
1657
1658 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1659
1660         Correct misuse of #ifdef, identified by 'make test'.
1661
1662         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1663         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1664
1665 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1666
1667         Replace more incorrectly named manifest constants.
1668
1669         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1670         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1671         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1672         definitions respectively; retain for backward compatibility only.
1673
1674 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1675
1676         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1677
1678         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1679
1680 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1681
1682         Add missing MAPVK manifest constant definitions.
1683
1684         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1685         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1686
1687 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1688
1689         Correct some misspelled manifest constant names.
1690
1691         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1692         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1693         alias to original misspelling, to maintain backward compatibility.
1694         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1695         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1696         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1697         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1698
1699 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1700
1701         Add a missing Win2K sockets IOCTL feature.
1702
1703         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1704
1705 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1706
1707         Fix an incorrectly typed structure member.
1708
1709         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1710         should be LPSTR; correct it.
1711
1712 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1713
1714         Add another missing manifest constant definition.
1715
1716         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1717
1718 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1719
1720         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1721
1722         * include/windef.h (PACKED): Delete macro definition; its name is not
1723         reserved, and may thus conflict with a user defined name; replace it...
1724         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1725         use __attribute__((packed)) directly instead.
1726
1727 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1728
1729         Fix bad typedef, per MinGW-Bug [#1529].
1730
1731         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1732         conform with MSDN reference, as identified by Safety0ff.
1733
1734 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1735
1736         Add a missing manifest constant definition.
1737
1738         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1739
1740 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1741
1742         Win2K and Vista userenv updates.
1743
1744         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1745         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1746         (ExpandEnvironmentStringsForUser): Define function aliases.
1747         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1748         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1749         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1750         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1751         (GetProfileType): Declare function prototypes.
1752         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1753         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1754         New manifest constants; define them.
1755
1756 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1757
1758         * Makefile.in: Increment CYGRELEASE to 2.
1759
1760 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1761
1762         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1763
1764 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1765
1766         * include/w32api.h: Increment version to 3.17.
1767         * Makefile.in: Ditto.
1768
1769 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1770
1771         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1772         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1773         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1774         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1775
1776 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1777
1778         * include/w32api.h: Increment version to 3.16.
1779         * Makefile.in: Ditto.
1780
1781 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1782
1783         * include/commctrl.h (NMTCKEYDOWN): Define.
1784
1785 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1786
1787         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1788         Define.
1789
1790 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1791
1792         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1793         PSAPI_WORKING_SET_INFORMATION): Define.
1794
1795 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1796
1797         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1798
1799 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1800
1801         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1802
1803 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1804
1805         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1806         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1807         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1808
1809 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1810
1811         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1812         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1813         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1814
1815 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1816
1817         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1818         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1819
1820 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1821
1822         * include/winbase.h (__MINGW_EXTENSION): Define.
1823         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1824         struct to correct issue with -std=c99.
1825
1826 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1827
1828         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1829         (TIMER_BASIC_INFORMATION): Define.
1830         (NtQueryTimer): Define.
1831         (ZwQueryTimer): Define.
1832
1833 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1834
1835         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1836
1837 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1838
1839         * include/winbase.h (GetComputerNameEx): Define.
1840
1841 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1842
1843         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1844
1845 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1846
1847         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1848         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1849         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1850         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1851         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1852         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1853         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1854         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1855         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1856
1857 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1858
1859         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1860         Add defines for backward compatibility.
1861
1862 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1863
1864         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1865         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1866         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1867         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1868         EnumResourceTypesW): Ditto.
1869         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1870
1871 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1872
1873         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1874
1875 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1876
1877         * include/bdatypes.h: Add missing semicolons.
1878
1879 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1880
1881         * include/w32api.h: Increment version to 3.15.
1882         * Makefile.in: Ditto.
1883
1884 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1885
1886         * Makefile.in: Update naming convention and compression format (lzma),
1887         leaving existing naming convention and compression format as is for Cygwin.
1888
1889 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1890
1891         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1892         STATE_SYSTEM_PROTECTED): Define.
1893
1894         Thank you to Marcus von Appen for reporting the issue.
1895
1896 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1897
1898         * include/winuser.h (CF_DIBV5): Define.
1899         (CF_MAX): Adjust accordingly.
1900
1901         Thank you to Lenard Lindstrom for reporting the issue.
1902
1903 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1904
1905         * include/sspi.h (QuerySecurityContextToken): Define.
1906         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1907
1908         Thank you to Magnus Hagander for reporting the issue.
1909
1910 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1911
1912         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1913
1914 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1915
1916         * include/shlwapi (ASSOCDATA): Update definition.
1917
1918         Thank you to Frederic Deschamps for reporting the issue.
1919
1920 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1921
1922         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1923         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1924         COPY_FILE_NO_BUFFERING): Define.
1925
1926         Thank you to Roland Schwingel for reporting the issue.
1927
1928 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1929
1930         * include/winuser.h (HHOOK): Move definition from here...
1931         * include/windef.h: ...to here, as per MSDN.
1932
1933         Thank you to Samuel Thibault for reporting the issue.
1934
1935 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1936
1937         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1938         MSDN, change return type to LPCH.
1939         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1940
1941         Thank you to Emmanuel Stapf for reporting the issue.
1942
1943 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1944
1945         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1946         * include/windowsx.h (SNDMSG): Ditto.
1947
1948 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1949
1950         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1951
1952         Thank you to Ozkan Sezer for reporting the issue.
1953
1954 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1955
1956         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1957
1958         Thank you to Chris Oldwood for reporting the issue.
1959
1960 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1961
1962         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1963
1964         Thank you to Rick Walsh for reporting the issue.
1965
1966 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1967
1968         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1969
1970 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1971
1972         * include/winbase.h (OVERLAPPED): Correct definition.
1973
1974 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1975
1976         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1977         definition.
1978
1979         Thank you to Pasi Ruokola for reporting the issue.
1980
1981 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1982
1983         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1984
1985         Thank you to cheznonnon for reporting the issue.
1986
1987 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1988
1989         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1990
1991 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1992
1993         * winnt.h: Fix several SUBLANG ID errors (ref:
1994         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1995         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1996         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1997         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1998         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1999         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
2000         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
2001         (SUBLANG_LAO_LAO): ... this.
2002         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
2003         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
2004         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
2005         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
2006         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
2007         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
2008         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
2009         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
2010         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
2011         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
2012         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
2013
2014 2010-08-24  LRN  <lrn1986@gmail.com>
2015
2016         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
2017         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
2018         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
2019         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
2020         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
2021         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
2022         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
2023         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
2024         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
2025         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
2026         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
2027         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
2028         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
2029         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
2030         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
2031         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
2032         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
2033         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
2034         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
2035         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
2036         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
2037         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
2038         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
2039         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
2040         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
2041         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
2042         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
2043         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
2044         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
2045         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
2046         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
2047         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
2048         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
2049         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
2050         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
2051         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
2052         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
2053         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
2054         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
2055         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
2056         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
2057         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
2058         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
2059         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
2060         WAVE_FORMAT_DTS2): Define.
2061         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
2062         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
2063         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
2064         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
2065         Define.
2066
2067 2010-08-23  LRN  <lrn1986@gmail.com>
2068
2069         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
2070         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
2071         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
2072         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
2073         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
2074         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
2075         GetFinalPathNameByHandleW): Define.
2076
2077 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2078
2079         * lib/CheckConflicts.sh: New file.
2080
2081 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2082
2083         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
2084         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
2085         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
2086         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
2087         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
2088         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
2089         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
2090         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
2091         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
2092         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
2093         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
2094         conflicting definition.
2095         * lib/th32.def: Remove.
2096         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
2097         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
2098         definition.
2099
2100 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2101
2102         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
2103
2104 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2105
2106         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
2107
2108 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
2109
2110         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
2111         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
2112         * include/ddk/winddk.h: Ditto.
2113
2114 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
2115
2116         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
2117         CreateSymbolicLinkA, CreateSymbolicLink): Define
2118
2119 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2120
2121         * lib/kernel32.def(FatalExit): Correct definiton.
2122
2123 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2124
2125         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
2126         from 2010-07-17 since it breaks several applications.
2127
2128 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2129
2130         * lib/kernel32.def: Regenerate using gendef.
2131
2132 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
2133
2134         * include/commctrl.h (LVIF_GROUPID): Fix definition.
2135
2136 2010-07-20  Michael James  <james.me@gmail.com>
2137
2138         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
2139
2140 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2141
2142         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
2143         definition.
2144         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
2145         NdrMarshSCtxtHdl): Ditto.
2146         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
2147         definition in favour of typedef definition.
2148
2149         Thank you to Yuta Tomino for reporting the issues.
2150
2151 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
2152
2153         * include/gdiplus.h: New file.
2154         * include/gdiplus/gdiplus.h: New file.
2155         * include/gdiplus/gdiplusbase.h: New file.
2156         * include/gdiplus/gdiplusbrush.h: New file.
2157         * include/gdiplus/gdipluscolor.h: New file.
2158         * include/gdiplus/gdipluscolormatrix.h: New file.
2159         * include/gdiplus/gdipluseffects.h: New file.
2160         * include/gdiplus/gdiplusenums.h: New file.
2161         * include/gdiplus/gdiplusflat.h: New file.
2162         * include/gdiplus/gdiplusgpstubs.h: New file.
2163         * include/gdiplus/gdiplusgraphics.h: New file.
2164         * include/gdiplus/gdiplusheaders.h: New file.
2165         * include/gdiplus/gdiplusimageattributes.h: New file.
2166         * include/gdiplus/gdiplusimagecodec.h: New file.
2167         * include/gdiplus/gdiplusimaging.h: New file.
2168         * include/gdiplus/gdiplusimpl.h: New file.
2169         * include/gdiplus/gdiplusinit.h: New file.
2170         * include/gdiplus/gdipluslinecaps.h: New file.
2171         * include/gdiplus/gdiplusmatrix.h: New file.
2172         * include/gdiplus/gdiplusmem.h: New file.
2173         * include/gdiplus/gdiplusmetafile.h: New file.
2174         * include/gdiplus/gdiplusmetaheader.h: New file.
2175         * include/gdiplus/gdipluspath.h: New file.
2176         * include/gdiplus/gdipluspen.h: New file.
2177         * include/gdiplus/gdipluspixelformats.h: New file.
2178         * include/gdiplus/gdiplusstringformat.h: New file.
2179         * include/gdiplus/gdiplustypes.h: New file.
2180         * lib/gdiplus.c: New file containing GDI+ variable definitions
2181         and GUIDs.
2182         * lib/gdiplus.def: New file.
2183         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
2184         add gdiplus.c to SOURCES.
2185         * lib/test.c: Include gdiplus.h.
2186
2187 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
2188
2189         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
2190         GetPerformanceInfo): Define.
2191         * lib/psapi.def (GetPerformanceInfo): Define.
2192         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
2193         CryptEnumProviders): Define.
2194
2195 2010-02-17  LRN  <lrn1986@gmail.com>
2196
2197         * include/shlguid.h (IID_IFolderView): Define.
2198         * include/shlobj.h (IFolderView interface): Define.
2199         * lib/shell32.c (IID_IFolderView): Export.
2200
2201 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2202
2203         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
2204         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2205
2206 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2207
2208         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
2209
2210 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2211
2212         * include/shlobj.h (SHParseDisplayName): Fix definition.
2213
2214 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2215
2216         * include/w32api.h: Increment version to 3.14.
2217         * Makefile.in: Ditto.
2218
2219 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2220
2221         * include/shlobj.h (SHParseDisplayName): Define.
2222
2223         Thanks to James Roberts-Thomson for the report.
2224
2225 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2226
2227         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
2228
2229         Thanks to Alexander Vassilev for the report.
2230
2231 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2232
2233         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2234
2235         Thanks to Thomas Denk for the report.
2236
2237 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2238
2239         * include/winbase.h (UnmapViewOfFile): Correct definition.
2240
2241         Thanks to Dimitry Sibiryakov for the report.
2242
2243 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2244
2245         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2246
2247 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2248
2249         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2250         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2251
2252 2009-20-10  Michael James  <james.me@gmail.com>
2253
2254         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2255         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2256         >= 0x0501.
2257         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2258         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2259         RemoveWindowSubclass@12): Add exports.
2260         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2261
2262 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2263
2264         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2265         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2266         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2267         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2268         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2269         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2270         RegisterTouchWindow, UnregisterTouchWindow): Define.
2271         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2272         RegisterTouchWindow, UnregisterTouchWindow): Define.
2273
2274 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2275
2276         * include/winver.h (VerQueryValue[AW]): Correct definition.
2277
2278 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2279
2280         * include/shlobj.h (SHARD): Add enum.
2281         (SHARD_PATH): Define based on UNICODE.
2282
2283         Thanks to Jacek Caban for the report.
2284
2285 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2286
2287         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2288
2289         Thanks to Bruno Martinez for the report.
2290
2291 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2292
2293         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2294         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2295         SHGetIconOverlayIndex): Define.
2296
2297         Thanks to Tim Kosse for the report.
2298
2299 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2300
2301         * include/wincon.h (AttachConsole): Correct guard.
2302
2303         Thanks to Alexander Shaduri for the report.
2304
2305 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2306
2307         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2308         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2309
2310 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2311
2312         * include/winerror.h: Fix typos in macro names.
2313
2314 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2315
2316         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2317         definition.
2318
2319 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2320
2321         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2322
2323 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2324
2325         Honor DESTDIR for winsup/mingw and winsup/w32api.
2326         Detect and report error if installation paths are win32
2327         format, but DESTDIR is non-empty.
2328
2329         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2330         when invoking make in subdirs.
2331         * lib/Makefile.in (DESTDIR): Honor per convention.
2332         (need-DESTDIR-compatibility): New macro; define it and a
2333         corresponding rule.
2334         (fail-DESTDIR-compatibility): New dependency goal.
2335         (install-libraries, install-headers, uninstall-libraries,
2336         uninstall-headers): Require need-DESTDIR-compatibility.
2337         * lib/ddk/Makefile.in: Ditto.
2338         * lib/directx/Makefile.in: Ditto.
2339
2340 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2341
2342         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2343         _WIN32_WINNT >= 0x0500.
2344         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2345         WRITE_RESTRICTED): Define.
2346         (IsTokenRestricted): Declare for >= Win 2000.
2347
2348 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2349
2350         * include/wtsapi32.h (WTSQuerySessionInformationA,
2351         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2352         Moved to (_WIN32_WINNT >= 0x0500) guard.
2353         (thanks to Pierre Ossman)
2354
2355 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2356
2357         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2358         IS_SURROGATE_PAIR): Define.
2359
2360 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2361
2362         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2363         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2364         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2365         * include/ddk/ntifs.h: Ditto.
2366         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2367
2368 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2369
2370         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2371         from here...
2372         * lib/gdo32.dll: ...to here.
2373
2374 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2375
2376         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2377         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2378         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2379         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2380         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2381         entry points.
2382
2383 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2384
2385         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2386         WTSEnumerateSessionsA): Add function prototypes.
2387         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2388         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2389         defines dependent on UNICODE setting.
2390
2391 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2392
2393         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2394         and vice versa.
2395         * include/ddk/ntifs.h: Ditto.
2396         * include/ddk/winddk.h: Ditto.
2397         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2398         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2399         in header, but missing in lib.  Omit NT4-only entry points.
2400
2401 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2402
2403         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2404         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2405         * lib/shell32.def (SHGetImageList): Define.
2406
2407 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2408
2409         * winnt.h: Add Vista token security extensions.
2410         (SID_HASH_SIZE): Define.
2411         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2412         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2413         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2414         (SID_HASH_ENTRY): Define.
2415         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2416         (struct _TOKEN_LINKED_TOKEN): Define.
2417         (struct _TOKEN_MANDATORY_LABEL): Define.
2418         (struct _TOKEN_MANDATORY_POLICY): Define.
2419         (struct _TOKEN_ELEVATION): Define.
2420         (struct _TOKEN_ACCESS_INFORMATION): Define.
2421         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2422         information enumeration values.
2423
2424 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2425
2426         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2427         from ddk/ntifs.h.
2428
2429 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2430
2431         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2432
2433 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2434
2435         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2436
2437 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2438
2439         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2440         NtSetEaFile.
2441
2442 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2443
2444         * include/winbase.h (SCS_64BIT_BINARY): Define.
2445
2446 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2447
2448         * include/w32api.h: Increment version to 3.13.
2449         * Makefile.in: Ditto.
2450
2451 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2452
2453         * lib/glut.def: remove.
2454         * lib/glut32.def: ditto.
2455
2456 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2457
2458         * include/winbase.h (PROCESS_DEP_ENABLE,
2459         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2460         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2461         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2462
2463 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2464
2465         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2466
2467 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2468
2469         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2470
2471 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2472
2473         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2474
2475 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2476
2477         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2478         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2479         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2480         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2481         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2482         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2483         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2484         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2485         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2486         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2487         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2488         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2489         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2490         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2491         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2492         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2493         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2494         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2495         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2496         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2497         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2498         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2499         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2500         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2501         (capSendMessage): Don't undef.
2502
2503 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2504
2505         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2506         undefined.
2507
2508 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2509
2510         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2511         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2512         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2513         SUBLANG_ROMANIAN_MOLDOVA): Define.
2514
2515 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2516
2517         * include/shlwapi.h (ASSOCSTR): Update enum.
2518
2519 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2520
2521         * include/w32api.h: Increment version to 3.12.
2522         * Makefile.in: Ditto.
2523
2524 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2525
2526         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2527
2528 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2529
2530         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2531
2532 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2533
2534         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2535         Thanks to Richard Hughes for report.
2536
2537 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2538
2539         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2540         naming standard for Cygwin.
2541
2542 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2543
2544         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2545
2546 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2547
2548         * include/ddk/scsi.h: Define READ_TOC formats.
2549         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2550
2551 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2552
2553         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2554         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2555         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2556         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2557         NdisMCancelTimer): Define.
2558         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2559         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2560         eliminate warnings.
2561         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2562         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2563         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2564         Export.
2565
2566 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2567
2568         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2569         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2570
2571 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2572
2573         * include/ddk/winddk.h (KeRaiseIrql): Define.
2574         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2575
2576 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2577
2578         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2579         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2580         (InterlockedIncrement, InterlockedDecrement): fix warning.
2581         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2582         (KeNumberProcessors): Export.
2583
2584 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2585
2586         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2587         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2588         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2589         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2590         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2591
2592 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2593
2594         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2595
2596         Thanks to Tim Kosse <botg at users dot sf dot net>.
2597
2598 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2599
2600         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2601         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2602         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2603         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2604         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2605         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2606         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2607
2608 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2609
2610         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2611         WTSQuerySessionInformation, WTSFreeMemory): Define.
2612
2613 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2614
2615         * lib/gdi32.def (SetLayout): Export.
2616
2617 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2618
2619         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2620         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2621         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2622         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2623         CertSetCertificateContextProperty, CertCompareCertificateName,
2624         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2625         CryptGetDefaultProviderW and many corresponding macroes): Define.
2626         * lib/crypt32.def (Export the above 11 functions): Export.
2627         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2628         macroes): Define.
2629
2630
2631 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2632
2633         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2634         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2635
2636 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2637
2638         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2639
2640 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2641
2642         * include/lmaccess.h (struct _USER_INFO_4): Define.
2643         (struct _USER_INFO_23): Define.
2644         (struct _GROUP_INFO_3): Define.
2645
2646 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2647
2648         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2649         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2650         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2651         MIB_TCP6TABLE_OWNER_PID): Define.
2652         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2653
2654 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2655
2656         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2657         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2658         of 0x0502.
2659         Bug reported by Thomas Denk.
2660
2661 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2662
2663         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2664         InterlockedCompareExchange, InterlockedExchange,
2665         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2666         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2667         Bug reported by Erik Blake.
2668
2669 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2670
2671         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2672         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2673         Bug reported by Brian Hawley.
2674
2675 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2676
2677         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2678         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2679         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2680         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2681         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2682         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2683         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2684         (DsGetDcNameW, DsGetDcNameA): Declare.
2685         (DsGetDcName): Define.
2686         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2687
2688 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2689
2690         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2691
2692         Thanks to Tim Kosse <botg at users dot sf dot net>.
2693
2694 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2695
2696         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2697
2698         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2699
2700 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2701
2702         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2703         (FILE_SUPPORTS_TRANSACTIONS): Define.
2704
2705 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2706
2707         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2708         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2709
2710 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2711
2712         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2713         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2714         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2715         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2716         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2717         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2718         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2719         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2720         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2721         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2722         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2723         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2724         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2725         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2726         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2727         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2728         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2729         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2730         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2731         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2732         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2733         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2734         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2735         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2736         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2737         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2738         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2739         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2740         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2741         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2742         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2743         capDriverConnect, capDriverDisconnect, capDriverGetName,
2744         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2745         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2746         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2747         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2748         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2749         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2750         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2751         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2752         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2753         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2754         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2755         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2756         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2757         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2758         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2759
2760 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2761
2762         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2763         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2764         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2765         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2766         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2767         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2768         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2769         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2770         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2771         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2772         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2773         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2774         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2775         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2776         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2777         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2778         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2779         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2780         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2781         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2782         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2783         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2784         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2785         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2786         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2787         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2788         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2789         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2790         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2791         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2792         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2793         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2794         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2795         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2796         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2797         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2798         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2799         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2800         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2801         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2802         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2803         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2804         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2805         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2806         *SpUserModeInitializeFn): Define.
2807         * include/sspi.h (SECURITY_STRING): Define.
2808
2809 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2810
2811         * include/specstrings.h: Add more dummy defines.
2812
2813 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2814
2815         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2816         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2817         (SECURITY_MANDATORY_LOW_RID): Define.
2818         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2819         (SECURITY_MANDATORY_HIGH_RID): Define.
2820         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2821         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2822         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2823         (SE_GROUP_INTEGRITY): Define.
2824         (SE_GROUP_INTEGRITY_ENABLED): Define.
2825
2826 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2827
2828         * include/sddl.h (ConvertStringSidToSidA): Declare.
2829         (ConvertStringSidToSidW): Declare.
2830         (ConvertStringSidToSid): Define.
2831
2832 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2833
2834         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2835         and MPR_INTERFACE_3 structure since they are available only in Windows
2836         Server 2008
2837
2838         Thanks to crackedmind  <crackedmind at sf dot net>.
2839
2840 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2841
2842         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2843         definitions.
2844         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2845
2846 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2847
2848         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2849
2850 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2851
2852         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2853         * include/windef.h (IN, OUT, OPTIONAL): Define.
2854
2855 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2856
2857         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2858         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2859         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2860         __out_bcount_opt): Move to specstrings.h.
2861
2862 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2863
2864         * lib/bthprops.def: new file, bluetooth imports.
2865
2866 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2867
2868         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2869         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2870         __out_bcount_opt): Defined additional pseudo-modifiers.
2871
2872 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2873         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2874         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2875         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2876         dwRedialPause.
2877
2878 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2879
2880         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2881         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2882         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2883         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2884         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2885         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2886         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2887         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2888         * include/winuser.h (RegisterPowerSettingNotification,
2889         UnregisterPowerSettingNotification): Add prototypes.
2890         * lib/user32.def: Added imports for the above prototypes.
2891         * lib/Makefile.in: Added build support for power-uuid.c.
2892         * lib/power-uuid.c: New file containing power GUID definitions.
2893
2894 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2895
2896         * include/ras.h (RAS_MaxDnsSuffix): define.
2897
2898 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2899
2900         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2901         Add prototypes.
2902         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2903         Add exports.
2904
2905 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2906
2907         * include/w32api.h: Increment version to 3.11.
2908         * Makefile.in: Ditto.
2909
2910 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2911
2912         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2913         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2914
2915 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2916
2917         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2918
2919 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2920
2921         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2922         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2923
2924 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2925
2926         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2927
2928 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2929
2930         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2931         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2932         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2933         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2934         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2935         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2936         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2937         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2938         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2939         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2940         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2941         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2942         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2943         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2944         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2945         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2946         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2947         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2948         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2949         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2950         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2951         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2952         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2953         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2954         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2955         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2956         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2957         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2958         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2959         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2960         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2961         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2962         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2963         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2964         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2965         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2966         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2967         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2968         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2969         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2970         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2971         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2972         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2973         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2974         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2975         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2976         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2977         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2978         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2979         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2980         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2981         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2982         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2983         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2984         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2985         CryptEncodeObjectEx): define.
2986
2987 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2988
2989         * include/winbase.h (CheckTokenMembership): define.
2990
2991 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2992
2993         * include/rpcndr.h: Missing NdrClientCall2 entry.
2994         * lib/rpcrt4.def: Ditto.
2995
2996 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2997         * lib/scnsave.c: Multi-monitor support.
2998
2999 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3000
3001         * include/w32api.h: Increment version to 3.10.
3002         * Makefile.in: Ditto.
3003
3004 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
3005
3006         * include/winbase.h (ReOpenFile): Add prototype.
3007         * lib/kernel32.def (ReOpenFile@16): Add export.
3008
3009 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3010
3011         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
3012
3013 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
3014
3015         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
3016         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
3017
3018 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3019
3020         * include/wtypes.h (LPDECIMAL): Define.
3021         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
3022
3023 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
3024
3025         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
3026
3027 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
3028
3029         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
3030         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
3031
3032 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3033
3034         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
3035         Define.
3036
3037 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3038
3039         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
3040         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
3041         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
3042         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
3043         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
3044         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
3045         Sync with include/pbt.h.
3046
3047 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3048
3049         [mingw-Bugs-1751518]
3050         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
3051         get_URL.
3052
3053         [mingw-Bugs-1751565]
3054         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
3055
3056         [mingw-Bugs-1751595]
3057         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
3058         methods.
3059
3060         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3061
3062 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
3063
3064         [mingw-Bugs-1750898]
3065         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
3066         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3067
3068 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
3069
3070         [mingw-Bugs-1749305]
3071         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
3072
3073 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
3074
3075         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
3076
3077 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
3078
3079         * include/oaidl.h: Include windows.h and ole2.h,
3080         unless COM_NO_WINDOWS_H.
3081
3082         [mingw-Bugs-1742130]
3083         * include/oaidl.h (struct tagVARIANT): Add union members
3084         LONGLONG  * pllVal and ULONGLONG * pullVal.
3085
3086 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
3087
3088         * include/ws2tcpip.h (s6_addr32): Correct definition.
3089         Thanks to Alfred E. Heggestad <aeh at db dot org>
3090
3091 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3092
3093         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
3094
3095         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
3096         supplying the information.
3097
3098 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3099
3100         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
3101
3102 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3103
3104         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
3105         Vista.
3106
3107 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
3108
3109          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
3110         CRYPTPROTECT_LOCAL_MACHINE): Define.
3111
3112 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
3113
3114         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
3115         Define.
3116
3117 2007-03-30  Brian Dessent  <brian@dessent.net>
3118
3119         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
3120
3121 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3122
3123         * include/w32api.h: Increment version to 3.9.
3124         * Makefile.in: Ditto.
3125
3126 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
3127
3128         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
3129
3130 2007-03-23  Matthew Gregan  <kinetik@flim.org>
3131
3132         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
3133
3134 2007-03-06  Brandon Sneed  <brandon@oqo.com>
3135
3136         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
3137         Added SetupConfigureWmiFromInfSectionW
3138         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
3139
3140         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
3141
3142         * include/winuser.h: Added PBT_APMQUERYSUSPEND
3143         Added PBT_APMQUERYSTANDBY
3144         Added PBT_APMQUERYSUSPENDFAILED
3145         Added PBT_APMQUERYSTANDBYFAILED
3146         Added PBT_APMSUSPEND
3147         Added PBT_APMSTANDBY
3148         Added PBT_APMRESUMECRITICAL
3149         Added PBT_APMRESUMESUSPEND
3150         Added PBT_APMRESUMESTANDBY
3151         Added PBT_APMBATTERYLOW
3152         Added PBT_APMPOWERSTATUSCHANGE
3153         Added PBT_APMOEMEVENT
3154         Added PBT_APMRESUMEAUTOMATIC
3155
3156         * include/wtsapi32.h: New file
3157
3158         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
3159
3160 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
3161
3162         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
3163         argument to constant.
3164
3165 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
3166
3167         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
3168         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
3169         Add prototypes.
3170         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
3171
3172 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
3173
3174         * lib/user32.def (InternalGetWindowText): Add stub.
3175
3176 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
3177
3178         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
3179         LANG_BOSNIAN_NEUTRAL): Define.
3180
3181 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
3182
3183         * include/winuser.h: Add guards around TITLEBARINFO and
3184         GetTitleBarInfo().
3185
3186 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
3187
3188         * include/winbase.h (struct _OVERLAPPED): Change type of
3189         Internal, InternalHigh members to ULONG_PTR.
3190         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
3191         (CreateIoCompletionPort): Likewise.
3192         (PostQueuedCompletionStatus): Likewise.
3193         (QueueUserAPC): Likewise.
3194
3195 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
3196
3197         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
3198         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
3199         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
3200         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
3201         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
3202         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
3203         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
3204         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
3205         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
3206         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
3207
3208 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
3209
3210         * Makefile.in: Add aclocal.m4 to source release.
3211
3212 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3213
3214         * include/w32api.h: Increment version to 3.8.
3215         * Makefile.in: Ditto.
3216
3217 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
3218
3219         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
3220         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
3221
3222         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
3223
3224 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
3225
3226         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
3227
3228         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
3229         inline static.
3230         (GetFiberData): Likewise.
3231         * lib/kernel32.c: Remove.
3232         * lib/Makefile.in: Remove reference to kernel32.[co].
3233
3234 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3235
3236         * include/winnt.h (SE_RELABEL_NAME): Define.
3237         (SE_INCREASE_WORKING_SET_NAME): Define.
3238         (SE_TIME_ZONE_NAME): Define.
3239         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3240
3241 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3242
3243         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3244         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3245         SymbolicLinkReparseBuffer substructure.
3246
3247 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3248
3249         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3250
3251 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3252
3253         * lib/Makefile.in: Fix order for 'all' rule.
3254
3255 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3256
3257         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3258
3259 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3260
3261         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3262         mappings.
3263         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3264         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3265
3266 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3267
3268         * include/rpc.h: Add whitespace.
3269         * include/winnt.h (C_ASSERT): Define.
3270
3271 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3272
3273         [mingw-Bugs-1568067]
3274         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3275         * include/wingdi.h: (DM_POSITION): Define.
3276
3277 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3278
3279         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3280         * lib/user32.def: Likewise.
3281
3282 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3283
3284         * lib/Makefile.in: fix typo.
3285         * lib/ddk/Makefile.in: fix typo.
3286         * lib/directx/Makefile.in: fix typo.
3287
3288         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3289         for pointing it out.
3290
3291 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3292
3293         * Makefile.in: Remove files from lib directory with distclean target
3294
3295 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3296
3297         * include/winuser.h (CS_DROPSHADOW): Define.
3298
3299 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3300
3301         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3302         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3303         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3304         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3305
3306         Increase each constant by 1.
3307
3308 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3309
3310         [mingw-Bugs-1553275]
3311         * include/wingdi.h (SetLayout): Add prototype.
3312         (GetLayout): Likewise.
3313
3314 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3315
3316         [mingw-Bugs-1550139]
3317         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3318         Tanks to:  Samit Basu <samitbasu at sf dot net>
3319         (GetRecordInfoFromGuids): Add prototype.
3320
3321 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3322
3323         * include/winbase.h: Add comment about 'missing' SEM flag.
3324
3325 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3326
3327         * configure.in: Substitute with_cross_host in depending files.
3328         * configure: Regenerate.
3329         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3330         Set installation directories accordingly.
3331         * lib/ddk/Makefile.in: Ditto.
3332         * lib/directx/Makefile.in: Ditto.
3333
3334 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3335
3336         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3337         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3338         Bug reported by: <macleone at users dot sf dot net>
3339
3340 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3341
3342         Update some more IMAGE relocation type indicators
3343         to PECOFF v8 (May, 2006) specs.
3344
3345         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3346         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3347         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3348         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3349         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3350         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3351         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3352         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3353         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3354         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3355         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3356         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3357         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3358         IMAGE_REL_SHM_NOMODE): Add defines.
3359
3360         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3361         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3362         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3363         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3364         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3365         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3366         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3367         IMAGE_REL_M32R_TOKEN): Add defines.
3368
3369         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3370
3371 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3372
3373         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3374         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3375         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3376         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3377         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3378         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3379         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3380         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3381         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3382         Add defines.
3383
3384         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3385         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3386         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3387         Add defines.
3388
3389         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3390
3391         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3392         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3393         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3394         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3395         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3396         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3397
3398         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3399
3400         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3401         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3402         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3403         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3404         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3405         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3406         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3407         Add defines.
3408
3409         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3410         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3411         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3412         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3413         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3414         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3415         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3416         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3417         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3418         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3419         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3420         IMAGE_REL_IA64_ADDEND): Add defines.
3421
3422         (IMAGE_SCN_GPREL): Add define.
3423
3424 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3425
3426         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3427         * include/basetyps.h:  Likewise.
3428         (_COM_interface): New define.
3429         (interface): Define to _COM_interface, conditional on !__OBJC__.
3430         Replace 'interface' with '_COM_interface', throughout.
3431         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3432         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3433         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3434         * include/mshtml.h: Likewise.
3435         * include/oaidl.h: Likewise.
3436         * include/objfwd.h: Likewise.
3437         * include/objidl.h: Likewise.
3438         * include/ocidl.h: Likwise.
3439         * include/olectl.h: Likewise.
3440         * include/oleidl.h: Likewise.
3441         * include/shlobj.h: Likewise.
3442         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3443         * include/vfw.h: Likewise.
3444         * include/windows.h. Likewise. Add comment.
3445         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3446         throughout.
3447
3448         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3449         Add test for conflict with '@interface'
3450
3451 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3452
3453         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3454         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3455         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3456         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3457         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3458         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3459         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3460         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3461         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3462         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3463         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3464         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3465         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3466         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3467         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3468         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3469         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3470         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3471         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3472         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3473         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3474         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3475         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3476         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3477         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3478         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3479         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3480         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3481         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3482         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3483         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3484         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3485         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3486         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3487         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3488         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3489         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3490         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3491         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3492         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3493         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3494         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3495         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3496         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3497         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3498         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3499         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3500         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3501         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3502         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3503         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3504         CertDeleteCertificateFromStore): Define.
3505         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3506         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3507         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3508         CertAddCertificateContextToStore, CertCompareCertificate,
3509         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3510         Define.
3511
3512 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3513
3514         * lib/uuid.c: Remove.
3515
3516 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3517
3518         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3519         declarations. They were extracted from the registry with a script.
3520         * lib/devguid.c: Add new file with the implementation of the
3521         missing GUIDs.
3522         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3523
3524 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3525
3526         * include/winuser.h (WM_INPUT): Add missing Raw Input
3527         notification define.
3528         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3529         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3530
3531 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3532
3533         [mingw-Bugs-1525021]
3534         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3535         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3536         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3537         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3538         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3539         (IP_ADAPTER_ADDRESSES): Likewise.
3540
3541 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3542
3543         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3544         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3545         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3546         extras-uuid.c.
3547         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3548         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3549         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3550         * lib/hlguids-uuid.c: State source of CLSIDs.
3551
3552 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3553
3554         * lib/Makefile.in: Added extras-uuid as an object and source.
3555         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3556         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3557         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3558         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3559         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3560         * lib/extras-uuid.c: New file.
3561         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3562         net).
3563
3564 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3565
3566         [mingw-Bugs-1424461]
3567         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3568         throughout.
3569         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3570         _NO_W32_PSEUDO_MODIFIERS.
3571         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3572         throughout.
3573         *include/rpcnsip.h: Likewise.
3574         *include/windef.h: Don't define IN, OUT or OPTIONAL
3575         if _NO_W32_PSEUDO_MODIFIERS.
3576         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3577         throughout.
3578         *include/ddk/cfgmgr32.h: Likewise.
3579         *include/ddk/ddkmapi.h: Likewise.
3580         *include/ddk/hidclass.h: Likewise.
3581         *include/ddk/hidpi.h: Likewise.
3582         *include/ddk/kbdmou.h: Likewise.
3583         *include/ddk/mcd.h: Likewise.
3584         *include/ddk/miniport.h: Likewise.
3585         *include/ddk/minitape.h: Likewise.
3586         *include/ddk/ndis.h: Likewise.
3587         *include/ddk/ndistapi.h: Likewise.
3588         *include/ddk/ndiswan.h: Likewise.
3589         *include/ddk/ntapi.h: Likewise.
3590         *include/ddk/ntdd8042.h: Likewise.
3591         *include/ddk/ntddpcm.h: Likewise.
3592         *include/ddk/ntifs.h: Likewise.
3593         *include/ddk/ntpoapi.h: Likewise.
3594         *include/ddk/parallel.h: Likewise.
3595         *include/ddk/pfhook.h: Likewise.
3596         *include/ddk/scsiwmi.h: Likewise.
3597         *include/ddk/smbus.h: Likewise.
3598         *include/ddk/srb.h: Likewise.
3599         *include/ddk/storport.h: Likewise.
3600         *include/ddk/tdikrnl.h: Likewise.
3601         *include/ddk/upssvc.h: Likewise.
3602         *include/ddk/usbcamdi.h: Likewise.
3603         *include/ddk/usbscan.h: Likewise.
3604         *include/ddk/video.h: Likewise.
3605         *include/ddk/videoagp.h: Likewise.
3606         *include/ddk/win2k.h: Likewise.
3607         *include/ddk/winddi.h: Likewise.
3608         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3609         if _NO_W32_PSEUDO_MODIFIERS.
3610         Comment out IN, OUT and OPTIONAL, throughout.
3611         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3612         throughout.
3613         *include/ddk/ws2san.h: Likewise.
3614
3615 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3616
3617         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3618
3619 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3620
3621         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3622         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3623         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3624         * lib/hlguids-uuid.c: New file.
3625         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3626         net).
3627
3628 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3629
3630         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3631         objects.
3632         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3633         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3634         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3635         IID_IHlinkTarget): Remove.  Moved to new files.
3636         * lib/urlmon-uuid.c: New file.
3637         * lib/hlink-uuid.c: New file.
3638
3639 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3640
3641         * lib/Makefile.in: Added ativscp-uuid as source and object.
3642         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3643         IID_IActiveScriptParse, IID_IActiveScriptSite,
3644         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3645         * lib/ativscp-uuid.c: New file.
3646
3647 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3648
3649         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3650         Remove.  Moved to objidl-uuid.c
3651         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3652         IID_IServerSecurity): Defined.
3653
3654 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3655
3656         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3657         objects.
3658         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3659         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3660         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3661         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3662         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3663         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3664         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3665         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3666         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3667         files.
3668         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3669         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3670         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3671         * lib/cguid-uuid.c: New file.
3672         * lib/olectlid-uuid.c: New file.
3673
3674 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3675
3676         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3677         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3678         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3679         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3680         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3681         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3682         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3683         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3684         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3685         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3686         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3687         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3688         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3689         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3690         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3691         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3692         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3693         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3694         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3695         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3696         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3697         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3698         * lib/comcat-uuid.c: New file.
3699         * lib/docobj-uuid.c: New File.
3700         * lib/exdisp-uuid.c: New file.
3701         * lib/mlang-uuid.c: New file.
3702         * lib/oaidl-uuid.c: New file.
3703         * lib/objidl-uuid.c: New file.
3704         * lib/objsafe-uuid.c: New file.
3705
3706 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3707
3708         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3709         objects.
3710         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3711         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3712         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3713         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3714         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3715         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3716         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3717         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3718         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3719         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3720         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3721         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3722         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3723         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3724         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3725         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3726         * lib/oleidl-uuid.c: New file.
3727         * lib/oleacc-uuid.c: New file.
3728         * lib/ocidl-uuid.c: New file.
3729
3730 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3731
3732         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3733         objects.
3734         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3735         Remove.  Moved to unknwn-uuid and servprov-uuid.
3736         * lib/unknwn-uuid.c: New file.
3737         * lib/servprov-uuid.c: New file.
3738
3739 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3740
3741         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3742         enum.
3743
3744 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3745
3746         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3747
3748 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3749
3750         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3751         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3752         wingdi.h defines.
3753
3754 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3755
3756         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3757         duplicate defines.
3758
3759         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3760         removal.
3761         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3762
3763 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3764
3765         * configure.in: Update to newer autoconf.
3766         (thanks to Steve Ellcey)
3767         * configure: Regenerate.
3768         * aclocal.m4: New file.
3769
3770 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3771
3772         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3773
3774 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3775
3776         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3777         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3778         as macros.
3779         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3780
3781 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3782
3783         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3784         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3785         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3786         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3787         (MprAdminMIBSetTrapInfo): Declare functions.
3788         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3789         (MIB_SERVER_HANDLE): New typedef.
3790         (MprConfigTransportSetInfo): Declare function.
3791         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3792         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3793
3794 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3795
3796         * lib/rtutils.def: New file. Generated on Windows XP.
3797         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3798         * include/rtutils.h: New file.
3799         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3800         Commented out, they're missing from rtutils.def.
3801
3802 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3803
3804         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3805         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3806         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3807         (MprInfoRemoveAll): Declare functions.
3808
3809 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3810
3811         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3812         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3813         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3814         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3815         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3816         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3817         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3818         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3819         (MprConfigServerConnect,MprConfigServerDisconnect)
3820         (MprConfigServerGetInfo,MprConfigServerInstall)
3821         (MprConfigServerRestore,MprConfigTransportCreate)
3822         (MprConfigTransportDelete,MprConfigTransportEnum)
3823         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3824         (MprConfigTransportSetInfo): Declare functions.
3825
3826 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3827
3828         * include/mprapi.h (MprAdminBufferFree)
3829         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3830         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3831         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3832         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3833         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3834         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3835         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3836         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3837         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3838         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3839         (MprAdminInterfaceTransportSetInfo)
3840         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3841         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3842         (MprAdminServerConnect,MprAdminServerDisconnect)
3843         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3844         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3845         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3846
3847 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3848
3849         * include/ipxtfflt.h: New file.
3850
3851 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3852
3853         * include/mprapi.h: Fix header guard. Cleanup.
3854         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3855         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3856         (MprAdminConnectionHangupNotification)
3857         (MprAdminConnectionHangupNotification2)
3858         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3859         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3860         (MprAdminReleaseIpAddress): Declare functions.
3861         * lib/mprapi.def: Regenerate on Windows XP.
3862
3863 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3864
3865         * include/ipifcons.h: Cleanup.
3866         * include/ipxconst.h: Fix header guard.
3867         * include/ipxrtdef.h: include <ipxconst.h>.
3868
3869 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3870
3871         * include/ipxrtdef.h: Cleanup.
3872         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3873         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3874         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3875         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3876         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3877         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3878         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3879         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3880         * include/routprot.h: Cleanup.
3881         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3882         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3883         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3884         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3885         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3886         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3887         * include/fltdefs.h: New file.
3888         * include/ipinfoid.h: New file.
3889
3890 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3891
3892         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3893         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3894         (IAMCertifiedOutputProtection): Add interfaces.
3895         * include/adsprop.h: New file.
3896         * include/cmnquery.h: New file.
3897         * include/dsadmin.h: New file.
3898         * include/dsclient.h: New file.
3899         * include/dsgetdc.h: New file.
3900         * include/dsquery.h: New file.
3901         * include/dsrole.h: New file.
3902         * include/ntdsapi.h: New file.
3903         * include/ntdsbcli.h: New file.
3904         * include/objsel.h: New file.
3905
3906 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3907
3908         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3909         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3910         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3911         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3912         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3913         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3914         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3915         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3916
3917 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3918
3919         * include/qedit.h: New file.
3920         * include/errors.h: Cleanup.
3921
3922 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3923
3924         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3925         avoid dependency on <string.h>.
3926         There's no Win32 equivalent for memcmp:
3927         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3928
3929 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3930
3931         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3932         instead of memset to avoid dependency on <string.h>.
3933         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3934         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3935         (AM_WST_STYLE): Add enums.
3936         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3937         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3938         structures.
3939         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3940         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3941         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3942         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3943         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3944         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3945         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3946         (VFW_E_DVD_NO_RESUME_INFORMATION)
3947         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3948         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3949         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3950         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3951         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3952         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3953         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3954         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3955         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3956         * include/strmif.h: ... to here. New file.
3957         * include/aviriff.h: New file.
3958         * include/bdatypes.h: New file.
3959         * include/control.h: New file.
3960         * include/dvdmedia.h: New file.
3961         * include/il21dec.h: New file.
3962         * include/ks.h: New file.
3963         * include/ksmedia.h: New file.
3964         * include/mmreg.h: New file.
3965         * include/mpegtype.h: New file.
3966         * include/vidcap.h: New file.
3967         * include/vmr9.h: New file.
3968         * include/vptype.h: New file.
3969         * include/xprtdefs.h: New file.
3970
3971 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3972
3973         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3974         Documented as defined on Windows 2000 or later.
3975         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3976         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3977         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3978         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3979         but values unknown, Windows Vista or later.
3980         (CAL_UMALQURA): Cleanup.
3981         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3982         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3983         (CAL_SSHORTESTDAYNAME7): Cleanup.
3984         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3985         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3986
3987 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3988
3989         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3990         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3991         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3992         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3993         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3994         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3995         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3996         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3997         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3998         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3999         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
4000         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
4001         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
4002         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
4003         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
4004         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
4005         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
4006         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
4007         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
4008         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
4009         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
4010         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
4011         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
4012         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
4013         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
4014         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
4015         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
4016         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
4017         (DMDFO_CENTER): Define.
4018         (GetDCBrushColor,GetDCPenColor): Declare.
4019         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
4020
4021 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4022
4023         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
4024         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
4025         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
4026         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
4027         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
4028         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
4029         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
4030         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
4031         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
4032         (LANG_DARI,LANG_MALAGASY)
4033         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
4034         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
4035         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
4036         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
4037         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
4038         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
4039         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
4040         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4041         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
4042         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
4043         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
4044         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
4045         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
4046         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
4047         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
4048         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
4049         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
4050         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
4051         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
4052         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
4053         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
4054         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
4055         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
4056         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
4057         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
4058         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
4059         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
4060         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
4061         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
4062         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
4063         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
4064         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
4065         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
4066         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
4067         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
4068         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
4069         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
4070         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
4071         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
4072         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
4073         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
4074         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
4075         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
4076         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
4077         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
4078         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
4079         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4080         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
4081         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
4082         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
4083         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
4084         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
4085         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
4086         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
4087         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
4088         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
4089         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
4090         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
4091         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
4092         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
4093         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
4094         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
4095         (SUBLANG_MARATHI_INDIA): Defined twice by error.
4096
4097 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4098
4099         * lib/directx/Makefile.in: Remove reference to libquartz.a since
4100         it was moved.
4101
4102 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
4103
4104         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
4105         SPI_SETSCREENSAVERUNNING.
4106         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
4107
4108 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4109
4110         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
4111         It had been removed because it's no documented, but Cygwin needs it.
4112
4113 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4114
4115         * include/amvideo.h (IFullScreenVideo): Define.
4116         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
4117         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
4118
4119 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4120
4121         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
4122         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
4123         as available on Windows 98 and better.
4124         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4125         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4126         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
4127
4128 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4129
4130         * include/amvideo.h: New file.
4131         * include/dshow.h: Include <amvideo.h>.
4132
4133 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4134
4135         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
4136         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
4137         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
4138         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
4139         (HWND_BROADCAST): Cleanup.
4140         (HWND_MESSAGE): Windows 2000 only.
4141         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
4142         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
4143         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
4144         (SIF_ALL): Cleanup.
4145         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
4146         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
4147         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
4148         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
4149         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
4150         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
4151         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
4152         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
4153         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
4154         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
4155         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
4156         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4157         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4158         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4159         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4160         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4161         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4162         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
4163         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
4164         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
4165         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
4166         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
4167         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
4168         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
4169         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
4170         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
4171         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
4172         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
4173         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
4174         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
4175         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
4176         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
4177         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
4178         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
4179         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
4180         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
4181         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
4182         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
4183         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
4184         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
4185         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
4186         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
4187         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
4188         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
4189         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
4190         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
4191         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
4192         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
4193         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
4194         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
4195         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
4196         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
4197         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
4198         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
4199         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
4200         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
4201         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
4202         (SPI_SCREENSAVERRUNNING): Removed.
4203         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
4204         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
4205         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
4206         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
4207
4208 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4209
4210         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
4211         (MprAdminGetPDCServer): Add prototype.
4212         (MprAdminSendUserMessage): Add prototype.
4213         (MprAdminUserGetInfo): Add prototype.
4214         (MprAdminUserSetInfo): Add prototype.
4215         * lib/mprapi.def: Add stubs for above functions.
4216
4217 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4218
4219         * lib/directx/quartz.def: Move from here...
4220         * lib/quartz.def: ... to here.
4221
4222 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4223
4224         * include/amaudio.h: New file.
4225         * include/dshow.h: Include <amaudio.h>.
4226
4227 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4228
4229         * include/errors.h: New file.
4230         * include/dshow.h: Include <errors.h>.
4231
4232 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4233
4234         * include/dshow.h: New file.
4235         * include/evcode.h: New file.
4236         * include/audevcod.h: New file.
4237         * include/dvdevcod.h: New file.
4238
4239 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4240
4241         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4242         (MprAdminConnectionClearStats): Add prototype.
4243         (MprAdminConnectionEnum): Add  prototype.
4244         (MprAdminConnectionGetInfo): Add prototype.
4245         (MprAdminConnectionRemoveQuarantine): Add prototype.
4246         (MprAdminPortClearStats): Add prototype.
4247         (MprAdminPortDisconnect): Add prototype.
4248         (MprAdminPortEnum): Add prototype.
4249         (MprAdminPortGetInfo): Add prototype.
4250         (MprAdminPortReset): Add prototype.
4251         * lib/mprapi.def: New file.
4252
4253 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4254
4255         *  include/mprapi.h: #include <lmcons.h>
4256         (MAX_DEVICETYPE_NAME): Add define.
4257         (MAX_PHONE_NUMBER_LEN): Add define.
4258         (ATADDRESSLEN): Add define.
4259         (IPADDRESSLEN): Add define.
4260         (IPXADDRESSLEN): Add define.
4261         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4262         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4263         (RAS_FLAGS_PPP_CONNECTION): Add define.
4264         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4265         (RAS_FLAGS_RAS_CONNECTION): Add define.
4266         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4267         (RASCCPCA_STAC): Add define.
4268         (RASCCPCA_MPPC): Add define.
4269         (PPP_CCP_COMPRESSION): Add define.
4270         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4271         (PPP_CCP_ENCRYPTION40BIT): Add define.
4272         (PPP_CCP_ENCRYPTION128BIT): Add define.
4273         (PPP_CCP_ENCRYPTION56BIT): Add define.
4274         (PPP_CCP_HISTORYLESS): Add define.
4275         (RASPRIV_NoCallback): Add define.
4276         (RASPRIV_AdminSetCallback): Add define.
4277         (RASPRIV_CallerSetCallback): Add define.
4278         (RASPRIV_DialinPrivilege): Add define.
4279         (RASPRIV_CallbackType): Add define.
4280         (RASPRIV2_DialinPolicy): Add define.
4281         (PPP_LCP_PAP): Add define.
4282         (PPP_LCP_SPAP): Add define.
4283         (PPP_LCP_CHAP): Add define.
4284         (PPP_LCP_EAP): Add define.
4285         (PPP_LCP_CHAP_MD5): Add define.
4286         (PPP_LCP_CHAP_MS): Add define.
4287         (PPP_LCP_CHAP_MSV2): Add define.
4288         (PPP_LCP_MULTILINK_FRAMING): Add define.
4289         (enum _RAS_HARDWARE_CONDITION): Add.
4290         (enum _RAS_PORT_CONDITION): Add.
4291         (struct _PPP_ATCP_INFO): Add.
4292         (struct _PPP_ATCP_INFO): Add.
4293         (struct _PPP_IPCP_INFO): Add.
4294         (struct _PPP_IPCP_INFO2): Add.
4295         (struct _PPP_IPXCP_INFO): Add.
4296         (struct _PPP_LCP_INFO): Add.
4297         (struct _PPP_NBFCP_INFO): Add.
4298         (struct _PPP_INFO): Add.
4299         (struct _PPP_INFO_2): Add.
4300         (struct _RAS_CONNECTION_0): Add.
4301         (struct RAS_CONNECTION_1): Add.
4302         (struct _RAS_CONNECTION_2): Add.
4303         (struct RAS_PORT_0): Add.
4304         (struct _RAS_PORT_1): Add.
4305         (struct _RAS_USER_0): Add.
4306         (struct _RAS_USER_1): Add.
4307
4308 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4309
4310         * include/mprapi.h: New file.
4311         * include/routprot.h: New file.
4312         * include/ipxrtdef.h: New file.
4313         * include/ipxconst.h: New file.
4314         * include/stm.h: New file.
4315
4316 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4317
4318         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4319         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4320
4321 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4322
4323         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4324         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4325         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4326         versions.
4327         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4328
4329 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4330
4331         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4332         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4333
4334 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4335
4336         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4337
4338 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4339
4340         * include/basetyps.h (REFFMTID): Define properly.
4341
4342 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4343
4344         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4345         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4346
4347 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4348
4349         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4350         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4351         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4352         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4353         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4354         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4355         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4356         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4357         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4358         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4359         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4360         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4361         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4362         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4363         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4364         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4365         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4366         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4367         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4368         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4369         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4370         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4371         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4372         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4373         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4374         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4375         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4376         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4377         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4378         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4379         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4380         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4381         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4382         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4383         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4384         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4385         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4386         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4387         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4388         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4389         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4390         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4391         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4392         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4393         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4394         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4395         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4396         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4397         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4398         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4399         (IF_OPER_STATUS_OPERATIONAL): Define.
4400         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4401         Add function declaration.
4402         * include/mgm.h: New file.
4403         * lib/rtm.def: New file.
4404         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4405
4406 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4407
4408         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4409         This function cannot be made thread-safe, the API would have to be
4410         changed for that, just like strerror() -> strerror_r() and similar
4411         ISO C or POSIX functions...
4412
4413 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4414
4415         * include/edevdefs.h: New file.
4416
4417 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4418
4419         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4420         Use as guard for the WAVEFORMATEX structure instead of
4421         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4422         _WAVEFORMATEX_ for compatibility.
4423         Thanks to:    Andrew Jones <guln at sf dot net>
4424
4425 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4426
4427         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4428         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4429         Thanks to:    David Golub <david_golub at sf dot net>
4430
4431 2006-04-18  Eric House  <ehouse@eehouse.org>
4432
4433         PocketPC support.
4434         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4435         functions for using aygshell on PocketPC:
4436         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4437         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4438
4439         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4440         command bar API on PocketPC:
4441         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4442         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4443         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4444         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4445         CommandBar_InsertButton, CommandBar_Destroy.
4446
4447         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4448         fields not present on PocketPC.
4449         (GetCurrentThreadId): Conditionally declare as extern function
4450         without dllimport attribute on PocketPC.
4451         (ResetEvent): Likwise.
4452         (SetEvent): Likewise.
4453
4454         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4455         Conditionally declare as extern function without dllimport
4456          attribute on PocketPC.
4457         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4458         declare as extern function without dllimport attribute on PocketPC.
4459
4460 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4461
4462         * lib/test.c: Include icm.h.
4463
4464 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4465
4466         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4467         (CreateColorSpace): Add UNICODE mappings.
4468         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4469         * include/icm.h: New file.
4470         * lib/mscms.def: New file.
4471         * lib/icmui.def: New file.
4472
4473 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4474
4475         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4476         (IMAGE_FILE_MACHINE_AMD64): New define.
4477         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4478         New defines.
4479         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4480         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4481         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4482         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4483         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4484         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4485         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4486         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4487         New defines.
4488         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4489         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4490         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4491         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4492         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4493         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4494         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4495         definitions and typedefs.
4496         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4497         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4498         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4499         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4500         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4501         New structure definition and typedefs.
4502         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4503         Likewise.
4504         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4505
4506 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4507
4508         * lib/test.c: Fix typo in #inlcude.
4509         * include/aclui.h: INTERFACE should not remain
4510         defined at the end of the header.
4511         * include/servprov.h: Ditto.
4512
4513 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4514
4515         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4516
4517 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4518
4519         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4520
4521 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4522
4523         * include/wsahelp.h (system_header): Add pragma.
4524         * include/ws2spi.h (system_header): Add pragma.
4525         * include/rasdlg.h (system_header): Add pragma.
4526         * include/rasdlg.h (_RASDLG_H): Define.
4527         Define instead of _RASDLG_H_, this is the w32api standard.
4528         * include/mlang.h (_MLANG_H): Define.
4529         Define instead of _MLANG_H_, this is the w32api standard.
4530         * include/setupapi.h (_SETUPAPI_H): Define.
4531         Define instead of _SETUPAPI_H_, this is the w32api standard.
4532
4533 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4534
4535         * include/rpcndr.h (boolean): Add typedef.
4536         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4537         * include/rpcndr.h (_RPCNDR_H): Define.
4538         Define in addition to __RPCNDR_H__, this is the w32api standard.
4539
4540 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4541
4542         * include/w32api.h: Increment version to 3.7.
4543         * Makefile.in: Ditto.
4544
4545 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4546
4547         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4548         GET_MODULE_HANDLE_EX_FLAG_PIN,
4549         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4550         Thanks to:    Brandon Sneed <brandon at redf dot net>
4551
4552 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4553
4554         * include/secext.h: Enclose function declarations in extern "C"
4555         if __cplusplus.
4556
4557 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4558
4559         * include/comcat.h: INTERFACE should not remain defined
4560         at the end of the header.
4561         * include/docobj.h: Ditto.
4562         * include/exdisp.h: Ditto.
4563         * include/intshcut.h: Ditto.
4564         * include/mlang.h: Ditto.
4565         * include/mshtml.h: Ditto.
4566         * include/oaidl.h: Ditto.
4567         * include/objidl.h: Ditto.
4568         * include/objsafe.h: Ditto.
4569         * include/ocidl.h: Ditto.
4570         * include/oleacc.h: Ditto.
4571         * include/oledlg.h: Ditto.
4572         * include/oleidl.h: Ditto.
4573         * include/richole.h: Ditto.
4574         * include/shldisp.h: Ditto.
4575         * include/shlobj.h: Ditto.
4576         * include/unknwn.h: Ditto.
4577         * include/vfw.h: Ditto.
4578         Thanks to:    Brandon Sneed <brandon at redf dot net>
4579
4580 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4581
4582         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4583         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4584         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4585
4586 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4587
4588         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4589         here also.
4590
4591 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4592
4593         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4594         We should probably remove PROV_MS_MAIL but I'm keeping it for
4595         now for compatibility reasons.
4596         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4597
4598 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4599
4600         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4601         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4602         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4603
4604 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4605
4606         * include/wingdi.h [WINVER >= 0x0410]
4607         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4608         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4609
4610 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4611
4612         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4613         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4614         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4615         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4616         (L_MAX_URL_LENGTH): Define.
4617         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4618         Thanks to:    Brandon Sneed <brandon at redf dot net>
4619
4620 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4621
4622         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4623
4624 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4625
4626         * include/w32api.h (_W32API_H): Define.
4627         Define in addition to _W32API_H_, this is the w32api standard.
4628
4629 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4630
4631         * include/w32api.h (WindowsVista): Define.
4632
4633 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4634
4635         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4636         on SOCKET_ADDRESS only if winsock2.h has already been included.
4637
4638 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4639
4640         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4641
4642 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4643
4644         * include/iphlpapi.h (GAA_FLAG_*): Define.
4645         (GetAdaptersAddresses): Add function declaration.
4646         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4647         Thanks to:    ross <rossboulet at users dot sf dot net>
4648
4649 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4650
4651         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4652         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4653         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4654         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4655         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4656         SCOPE_LEVEL): Add enums.
4657         (IP_ADAPTER_*): Define.
4658
4659 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4660
4661         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4662         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4663
4664 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4665
4666         * include/objidl.h (PIDSI_*): Define.
4667         (PRSPEC_*): Define.
4668         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4669
4670 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4671
4672         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4673         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4674         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4675         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4676         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4677
4678 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4679
4680         * include/mq.h: New file.
4681         * lib/mqrt.def (MQ*): Define a few missing functions.
4682
4683 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4684
4685         * lib/mqrt.def: New file.
4686         Needs the mq.h file to work properly, working on it.
4687         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4688
4689 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4690
4691         * include/winerror.h (STG_E_*):  Define.
4692         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4693         * include/winerror.h (STG_S_*): Define.
4694         (CO_S_MACHINENAMENOTFOUND): Define.
4695         (RPC_E_*): Define.
4696         (NTE_*): Define.
4697
4698 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4699
4700         * include/commctrl.h (ListView_*):  Define and correct.
4701         (LVM_*): Define.
4702
4703 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4704
4705         * include/winuser.h (WM_IME_*): Define (DWORD type).
4706         (EM_*IMESTATUS): Define.
4707         (WM_*): Define.
4708         (XBUTTON*): Define.
4709         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4710
4711 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4712
4713         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4714         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4715
4716 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4717
4718         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4719         version conditional.
4720
4721 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4722
4723         * include/winspool.h (JOB_INFO_3): Add structure.
4724         (PROVIDOR_INFO_*{AW}): Add structure.
4725         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4726         (PRINTER_ENUM_VALUES{AW}): Add structure.
4727         (PRINTPROCESSOR_CAPS): Add structure.
4728
4729 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4730
4731         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4732         (PRINTER_INFO_7A): Correct definition.
4733
4734 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4735
4736         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4737         (DRIVER_INFO_*{AW}): Add structure.
4738         (PRINTER_INFO_*{AW}): Add structure.
4739         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4740
4741 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4742
4743         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4744         (DRIVER_*MODE): Define (DWORD type).
4745         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4746
4747 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4748
4749         * include/wincon.h (GetConsoleProcessList): Declare.
4750
4751 2006-03-27  Hansres Engel  <engel@node.ch>
4752
4753         * include/mlang.h: New file.
4754
4755 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4756
4757         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4758
4759 2006-03-26  Hansres Engel  <engel@node.ch>
4760
4761          Add Uniscribe API for typography and for complex scripts.
4762         * include/usp10.h: New file.
4763         * lib/usp10.def: New file.
4764
4765         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4766
4767         * include/imm.h (IMECHARPOSITION): Add structure.
4768         (RECONVERTSTRING): Likwise.
4769
4770         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4771
4772         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4773         (IMLangFontLink2): Likewise.
4774         (IMultiLanguage): Likewise.
4775
4776 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4777
4778         * include/wincon.h  (ENABLE_*): Add more defines.
4779
4780 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4781
4782         * include/winnt.h (INHERITED_ACE): Define.
4783         (VALID_INHERIT_FLAGS): Correct definition.
4784
4785 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4786
4787          * lib/wtsapi32.def: New file.
4788
4789 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4790
4791         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4792         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4793
4794 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4795
4796         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4797         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4798         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4799         (DSPRINT_*): Define (DWORD type).
4800         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4801
4802 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4803
4804         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4805         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4806
4807 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4808
4809         * include/shellapi.h [_WIN32_IE >= 0x0600]
4810         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4811         Windows XP SP1 and Windows XP respectively.
4812
4813 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4814
4815         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4816         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4817         * include/shellapi.h [_WIN32_IE >= 0x0500]
4818         (NIS_*): Introduced in Version 5.0.
4819
4820 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4821
4822         * include/wingdi.h (CS_*): Correct WINVER guard on
4823         Image Color Matching colour definitions.
4824
4825 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4826
4827         * include/shlobj.h (SFGAO_ISSLOW): Define.
4828         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4829         attribute constants.
4830
4831 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4832
4833         * include/wingdi.h [WINVER >= 0x0500]
4834         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4835         Thanks to: David A. Capello <dacap at users dot sf dot net>
4836
4837 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4838
4839         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4840         (INTERNET_STATE_*): Define flags.
4841         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4842
4843 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4844
4845         * include/sddl.h: New file.
4846
4847 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4848
4849         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4850         last change.
4851         Remove file level #pragma pack(push,4)/#pragma pop.
4852
4853 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4854
4855         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4856         value to force correct alignment.
4857
4858 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4859
4860         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4861         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4862         (PNM_CACHEHINT): Add backward compatibilty define.
4863         (LPNM_CACHEHINT): Likewise.
4864
4865 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4866
4867         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4868
4869 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4870
4871         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4872         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4873         * lib/shell32.def (PathResolve): Define.
4874
4875 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4876
4877         * include/shlobj.h (PathResolve): Fix typo.
4878
4879 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4880
4881         * include/shlobj.h (PathResolve): Define.
4882         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4883         PRF_DONTFINDLNK): Ditto.
4884         * lib/shell32.def (PathResolve): Define.
4885
4886 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4887
4888         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4889
4890 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4891
4892         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4893         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4894         (NotifyRouteChange@8): Define.
4895
4896 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4897
4898         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4899         prototypes.
4900
4901 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4902
4903         * include/winnt.h (FORCEINLINE): Define.
4904
4905 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4906
4907         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4908
4909 2006-01-26  Filip Navara  <xnavara@volny.cz>
4910
4911         * include/winnt.h (DECLSPEC_ALIGN): Define.
4912
4913 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4914
4915         * include/commctrl.h: Correct spelling of 'compatibility' in
4916         comments.
4917         * include/setupapi.h: Likewise.
4918         * include/ws2tcpip.h: Likewise.
4919
4920 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4921
4922         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4923
4924 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4925
4926         WATCOM compatibility changes.
4927         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4928         rather than __attribute__.
4929         (DECL_EXPORT): Likewise.
4930         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4931         (DDKFASTAPI): Likewise.
4932         (DDKCDECLAPI): Likwise.
4933         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4934
4935 2006-01-23  Brandon Sneed  <brandon@redf.net>
4936
4937         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4938         to exports.
4939
4940 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4941
4942         * include/w32api.h: Increment version to 3.6.
4943         * Makefile.in: Ditto.
4944
4945 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4946
4947         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4948         advapi32.dll functions.
4949
4950 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4951
4952         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4953         names for padding size constants.
4954
4955 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4956
4957         * include/aclapi.h (WINADVAPI): Add to prototypes.
4958         * include/winreg.h (WINADVAPI): Likewise.
4959         * include/winsvc.h (WINADVAPI): Likewise.
4960
4961 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4962
4963         * include/winbase.h (WINADVAPI): Define.
4964
4965 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4966
4967         * include/winuser.h (CreateWindowStation): Correctly identify first
4968         argument as constant.
4969         (CreateWindowStation@): Ditto.
4970
4971 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4972
4973         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4974         (TMT_*, BT_*): Add constants.
4975
4976 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4977
4978         * include/winsock2.h: Don't define struct sockaddr_storage when
4979         building Cygwin.
4980
4981 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4982
4983         * lib/ws2_32.c: New file, defining IPv6 constants.
4984         * lib/Makefile.in (SOURCES): Add ws2_32.c
4985         (EXTRA_OBJS): Add ws2_32.o.
4986
4987 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4988
4989         * lib/user32.def (PrivateExtractIconsA@32,
4990         PrivateExtractIconsW@32): Define.
4991         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4992
4993 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4994
4995         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4996
4997 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4998
4999         * lib/kernel32.def (CreateFiberEx): Correct suffix.
5000
5001 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
5002             Danny Smith <dannysmith@users.sourceforge.net>
5003
5004         * lib/msxml-uuid.c: New file to generate UUIDs for
5005         MSXML interfaces.
5006         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
5007
5008 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5009
5010         * include/winbase.h (GetDevicePowerState): Add prototype.
5011         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
5012
5013 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
5014
5015         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
5016         Define as macro if !_WIN64.
5017         (SetClassLongPtr{AW}): Likewise.
5018         (GCLP_*): Add GetClassLongPtr defines.
5019         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
5020         (SetClassLongPtr{AW}): Likewise.
5021
5022 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
5023
5024         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
5025         (SetClassLongPtr{AW}): Likewise.
5026         (GCLP_*): Add GetClassLongPtr defines.
5027         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
5028         (SetClassLongPtr{AW}): Likewise.
5029
5030 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5031
5032         * include/commdlg.h (OPENFILENAMEW): Add members for
5033         _WIN32_WINNT >= 0x0500.
5034         Thanks to Ricardo Dalcorsso Fodra.
5035         (OPENFILENAMEA): Modify whitespace. Ansify comment.
5036
5037 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5038
5039         * include/wingdi.h (GetICMProfileA): Correct prototype.
5040         (GetICMProfileW): Likewise.
5041         Thanks to: Paul J Lucas
5042
5043 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
5044
5045         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
5046
5047 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
5048
5049         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
5050         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
5051         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
5052         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
5053
5054 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5055
5056         * include/objbase.h: Fix typo.
5057         * include/w32api.h: Increment version to 3.5.
5058         * Makefile.in: Ditto.
5059
5060 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5061
5062         * include/w32api.h: Increment version to 3.4.
5063         * Makefile.in: Ditto.
5064
5065 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
5066
5067         * include/winbase.h (GetProcessId): Remove duplicate declaration.
5068         Use _WIN32_WINNT >= 0x0501 guard.
5069
5070 2005-10-11  Christopher Faylor  <cgf@timesys.com>
5071
5072         * include/winbase.h (GetProcessId): Declare.
5073
5074 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5075
5076         * lib/ddk/newdev.def: Added.
5077         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
5078
5079 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5080
5081         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
5082         component.
5083         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
5084
5085 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5086
5087         * lib/shell32.def (SHILCreateFromPath): Add stub.
5088         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
5089
5090 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5091
5092         * include/winbase.h (RegisterWaitForSingleObject,
5093         RegisterWaitForSingleObjectEx): Define.
5094         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
5095         (RegisterWaitForSingleObject@16): Changed to
5096         RegisterWaitForSingleObject@24.
5097         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
5098
5099 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
5100
5101         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
5102         Thanks to: Gisle Vanem  <giva at bgnett dot no>
5103
5104 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5105
5106         * include/reason.h [_WIN32_WINNT >= 0x0501]
5107         (SHTDN_REASON_*): New file.
5108         * include/objbase.h: Avoid double header guard.
5109
5110 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
5111
5112         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
5113         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
5114         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
5115
5116 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5117
5118         * include/shlobj.h (IContextMenu3): Define.
5119         * include/shlguid.h (IID_IContextMenu3): Declare.
5120         * lib/shell32.c (IID_IContextMenu3): Define.
5121
5122 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5123
5124         * include/shlobj.h (SHFormatDrive): Declaration of function
5125         and associated constants.
5126
5127 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5128
5129         * include/ddk/hidsdi.h:  New file.
5130         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
5131         functions declared in hidsdi.h.
5132         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
5133
5134 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5135
5136         * lib/imm32.def (ImmDisableIME): Add stub.
5137         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
5138
5139 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5140
5141         * include/w32api.h: Increment version to 3.3.
5142         * Makefile.in: Ditto.
5143
5144 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
5145
5146         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
5147         Correct their values.
5148         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
5149
5150 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5151
5152         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
5153
5154 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5155
5156         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
5157         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
5158
5159 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5160
5161         * include/richedit.h (SETTEXTEX): Define structure and
5162         associated constants.
5163         (GT_SELECTION): Define GETTEXTEX flag constant.
5164
5165 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5166
5167         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
5168
5169 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5170
5171         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
5172         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
5173         prototypes.
5174
5175 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5176
5177         * include/commctrl.h (RBBS_USECHEVRON): Define.
5178         (RBBS_*): Use hex notation, group together.
5179
5180 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5181
5182         * lib/kernel32.def (GetUserGeoID): Correct suffix.
5183         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
5184
5185 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5186
5187         * include/commctrl.h (TreeView_SetItemState): Initilise
5188         _tvi.hItem.
5189         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
5190
5191 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
5192
5193         * include/commctrl.h (NMLVFINDITEM): Add structure.
5194
5195 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5196
5197         * include/wininet.h (WININET_API_FLAG_*): Add defines.
5198
5199 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
5200
5201         * include/winnt.h (VER_SET_CONDITION): Define.
5202
5203 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5204
5205         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
5206         (ATTACH_PARENT_PROCESS): Define.
5207         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
5208         documentation.
5209
5210 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5211
5212         * include/winbase.h (QueueUserWorkItem): Add prototype.
5213
5214 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5215
5216         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
5217         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
5218         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
5219         CM_CMYK_COLOR): Define.
5220
5221 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
5222
5223         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
5224         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
5225         Thanks to: Christian  <chhd at users dot sf dot net>
5226
5227 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5228
5229         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
5230         field.
5231         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
5232
5233 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5234
5235         * include/winbase.h (GlobalDiscard): Define as macro.
5236         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5237
5238 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5239
5240         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5241         (WNetGetResourceParentW): Ditto.
5242         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5243         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5244
5245 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5246
5247         * include/wininet.h (FtpGetFileSize): Add prototype.
5248         (FtpCommand[AW]): Correct prototypes.
5249         Reported by: <siger at users dot sf dot net>
5250
5251 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5252
5253         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5254         (capGetDriverDescription[AW]): Likewise.
5255
5256 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5257
5258         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5259         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5260         (SE_IMPERSONATE_NAME TEXT): Ditto.
5261         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5262         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5263
5264 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5265
5266         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5267         change.
5268
5269 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5270
5271         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5272         Thanks to:
5273         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5274
5275 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5276
5277         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5278         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5279         (gai_strerror[AW]): Put into #if 0 block.
5280
5281 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5282
5283         * include/basetyps.h (__int16): Correct define.
5284
5285 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5286             Danny Smith  <dannysmith@users.sourceforge.net>
5287
5288         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5289         define for Open Watcom portability.
5290         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5291         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5292         of local c_rgodfDI* objects. Replace .rdata section attribute
5293         with 'const' keyword in definition of global c_dfDI* objects.
5294
5295 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5296
5297         * include/winioctl.h (IOCTL_VOLUME_BASE,
5298         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5299         Copy defines from include/ddk/ntdddvol.h.
5300         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5301
5302 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5303
5304         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5305
5306 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5307
5308         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5309         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5310
5311 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5312
5313         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5314
5315 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5316
5317         * lib/user32.def (MonitorFromPoint): Correct suffix.
5318
5319 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5320
5321         * include/wininet.h (InternetCheckConnectionA,
5322         InternetCheckConnectionW) Add prototypes.
5323         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5324         INTERNET_CONNECTION_CONFIGURED): Add defines.
5325
5326 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5327
5328         * include/commctrl.h (ComboBox_SetMinVisible,
5329         ComboBox_GetMinVisible): Added Macros.
5330         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5331         Added definitions.
5332
5333 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5334
5335         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5336         assembly code conditional on _X86_.
5337
5338 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5339
5340         * include/w32api.h: Increment version to 3.2.
5341         * Makefile.in: Ditto.
5342         * include/afxres.h: Remove the \r from the line ending.
5343         * include/errorrep.h: Ditto.
5344         * include/shldisp.h: Ditto.
5345         * include/tschema.h: Ditto.
5346         * lib/dhcpcsvc.def: Ditto.
5347         * lib/uxtheme.def: Ditto.
5348         * lib/wldap32.def: Ditto.
5349
5350 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5351
5352         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5353         Correct typo.
5354         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5355
5356 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5357
5358         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5359         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5360         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5361         SPI_GETFOREGROUNDLOCKTIMEOUT,
5362         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5363         *include/imm.h (WM_IME_REQUEST): Added definition.
5364         *include/shlobj.h (SLGP_RAWPATH,
5365         SLGP_UNCPRIORITY): Added definition.
5366
5367 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5368
5369         *include/winuser.h (HSHELL_FLASH): Added definition.
5370
5371 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5372
5373         * include/shldisp.h (IAutoComplete): Added interface definiton.
5374         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5375         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5376         * include/shlobj.h (IObjMgr): Added interface definiton.
5377         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5378         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5379         CLSID_ACListISF, IID_IACList): Added GUIDs.
5380         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5381         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5382         CLSID_ACListISF, IID_IACList): Added GUIDs.
5383
5384 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5385
5386         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5387         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5388         (CDRF_*): Use hex notation for constants.
5389
5390 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5391
5392         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5393         Reported by Eric Sharkey <sharkey at netrics dot com>
5394
5395 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5396
5397         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5398         TokenGroupsAndPrivileges, TokenSessionReference,
5399         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5400         Reformat.
5401         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5402         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5403
5404 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5405
5406         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5407         ImageList_Duplicate): Add stubs.
5408
5409 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5410
5411         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5412         Thanks to "Pete" <pross@xvid.org>
5413
5414 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5415
5416         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5417         AC_DST_NO_ALPHA, ...): Add defines.
5418         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5419         ULW_OPAQUE): Add defines.
5420
5421 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5422
5423         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5424         guard.
5425         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5426         suffix.
5427         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5428
5429 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5430
5431         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5432         (CreateProcessWithLogonW): Declare.
5433         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5434         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5435
5436 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5437
5438         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5439         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5440
5441 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5442
5443         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5444         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5445
5446 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5447
5448         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5449
5450 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5451
5452         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5453         Add defines.
5454         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5455
5456 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5457
5458         * include/shellapi.h (NIF_GUID): Add another define.
5459
5460 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5461
5462         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5463         Changed it twice due to inconsistent MSDN documentation.
5464         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5465
5466 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5467
5468         * include/shlobj.h (SHGFP_TYPE): Add enum.
5469
5470 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5471
5472         * include/winuser.h (WM_THEMECHANGED): Add define.
5473
5474 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5475
5476         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5477         ExFreeToPagedLookasideList): Guard inline versions with
5478         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5479         external functions for earlier _WIN32_WINNT.
5480
5481 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5482
5483         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5484
5485 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5486
5487         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5488         if  undefined and __W32API_USE_DLLIMPORT__.
5489         Add WINBASEAPI token to prototypes, throughout.
5490
5491 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5492
5493         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5494         (GetFiberData): Likewise.
5495         (NtCurrentTeb): Likewise.
5496
5497 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5498
5499         * include/shellapi.h (NIF_INFO): Add define.
5500         (NIIF_*) Add defines..
5501         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5502         (NIF_*): Convert constants to hex.
5503
5504 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5505
5506         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5507         GetGlyphIndicesW): Declare.
5508         (GGI_MARK_NONEXISTING_GLYPHS): Define
5509         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5510         GetGlyphIndicesW): Add stubs.
5511
5512 2004-10-24  Dan Aloni  <da-x@colinux.org>
5513
5514         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5515         ZwQueryFullAttributesFile): Declare.
5516         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5517         Declare.
5518         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5519         ZwQueryVolumeInformationFile): Add stubs.
5520
5521 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5522
5523         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5524         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5525
5526 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5527             Danny Smith  <dannysmith@users.sourceforge.net>
5528
5529         * include/winbase.h (InitializeSListHead, Interlocked*):
5530         Guard with !__USE_NTOSKRNL__.
5531
5532         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5533         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5534         Guard with  __USE_NTOSKRNL__.
5535         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5536         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5537         && _WIN32_WINNT >= 0x0501
5538         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5539         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5540         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5541         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5542
5543         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5544         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5545         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5546         ExWindowStationObjectType, IoAdapterObjectType,
5547         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5548         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5549         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5550         Uncomment stubs.
5551
5552 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5553
5554         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5555         definition
5556         (IoReleaseRemoveLock): Add definition.
5557
5558 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5559
5560         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5561         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5562         Add prototypes.
5563         * include/winddk.h (ExInterlockedAddUlong,
5564         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5565         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5566         ExInterlockedPushEntryList): Change calling convention to
5567         DDKAPI.
5568         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5569         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5570         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5571         Add prototypes for DDKFASTAPI versions.
5572         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5573         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5574         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5575         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5576         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5577         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5578         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5579         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5580         Add fastcall stubs.
5581         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5582         Exi386InterlockedIncrementLong); Add stdcall stubs.
5583
5584 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5585
5586         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5587          if __W32API_USE_DLLIMPORT__ is defined.
5588         * include/winuser.h (WINUSERAPI): Likewise.
5589
5590 2004-09-29  Filip Navara  <xnavara@volny.cz>
5591
5592         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5593         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5594         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5595         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5596         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5597         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5598         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5599         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5600         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5601         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5602         winnt4.h, ws2san.h): Fixed packing.
5603         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5604         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5605         HID_INTERFACE_NOTIFY_PNP): Likewise.
5606         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5607         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5608         <ayerkes@speakeasy.net>.
5609         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5610         declaration.
5611         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5612         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5613         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5614         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5615         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5616         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5617         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5618         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5619         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5620         (SYNCH_LEVEL): Added definition.
5621         (KPCR, KPCR_TIB): Fixed declaration.
5622         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5623         included and _WIN32_WINNT >= 0x0501.
5624         (RtlEqualLuid): Fixed macro definition.
5625         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5626         KeRaiseIrql on i386 architectures.
5627
5628 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5629
5630         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5631         declaration.
5632         (IHTMLSelectionObject): Correct get_type declaration.
5633         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5634         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5635         IHTMLBodyElement2): Add interfaces.
5636         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5637         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5638         typedefs.
5639         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5640         Add IIDs.
5641
5642 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5643
5644         * include/w32api.h: Increment version to 3.1.
5645         * Makefile.in: Ditto.
5646
5647 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5648
5649         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5650         MonitorFromWindow): Add prototypes.
5651         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5652         MonitorFromWindowMonitorFromWindow): Add stubs.
5653         * include/shellapi.h (DuplicateIcon): Add prototype.
5654
5655 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5656
5657         * include/winuser.h (WINUSERAPI): New define.
5658         Use it to mark user32.dll imports, throughout.
5659
5660 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5661
5662         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5663         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5664         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5665         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5666         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5667         HidD_GetPreparsedData, HidD_GetProductString,
5668         HidD_GetSerialNumberString, HidD_SetConfiguration,
5669         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5670         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5671
5672 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5673
5674         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5675         Add XP defines.
5676         (PCOORD): Add typedef.
5677         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5678
5679 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5680
5681         * include/winldap.h: Don't check value of UNICODE.
5682         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5683
5684 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5685
5686         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5687
5688 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5689
5690         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5691         guard.
5692
5693 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5694
5695         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5696
5697 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5698
5699         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5700
5701 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5702
5703         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5704
5705 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5706
5707         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5708
5709 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5710
5711         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5712         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5713         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5714         Add defines.
5715         (CALG_SHA1): Add define.
5716         (HP_HMAC_INFO): Add define.
5717         (HMAC_INFO): Add struct.
5718         (BLOBHEADER): Add typedef.
5719
5720 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5721
5722         * include/commctrl.h (TreeView_SetItemState): Define macro.
5723
5724 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5725
5726         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5727         macros together.
5728
5729 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5730
5731         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5732         (FILEGROUPDESCRIPTOR): LIkewise.
5733
5734 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5735
5736         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5737
5738 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5739
5740         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5741         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5742         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5743         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5744         (IMAGE_ORDINAL): Map to ...
5745         (IMAGE_ORDINAL{32,64}: New defines.
5746         (IMAGE_THUNK_DATA):  Map to ...
5747         (IMAGE_THUNK_DATA{32,64}: New structures.
5748         (IMAGE_THUNK_DATA): Map to ...
5749         (IMAGE_THUNK_DATA{32,64}: New structures.
5750         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5751         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5752         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5753         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5754
5755 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5756
5757         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5758         _WIN32_WINNT >= 0x0500.
5759
5760 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5761
5762         * include/winbase.h (GetWriteWatch): Correct prototype.
5763         (WRITE_WATCH_FLAG_RESET): Define.
5764         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5765
5766 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5767
5768         * include/commctrl.h (Animate_OpenEx): Define.
5769         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5770         (ListView_GetNumberOfWorkAreas): Correct macro.
5771         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5772         ListView_SetItemCountEx, ListView_GetISearchString,
5773         TreeView_GetLastVisible, Header_CreateDragImage,
5774         Header_SetImageList, Header_GetImageList): Define.
5775         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5776         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5777         TBSTATE_ELLIPSES): Define.
5778         (MonthCal_SetRange): Correct macro.
5779         (ImageList_Duplicate): Declare.
5780
5781 2004-05-29  Filip Navara  <xnavara@volny.cz>
5782
5783         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5784
5785 2004-05-25  Al Slater  <al.slater@scluk.com>
5786
5787         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5788         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5789
5790 2004-05-15  Filip Navara  <xnavara@volny.cz>
5791
5792         * include/ddk/kbdmou.h: New file.
5793         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5794         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5795         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5796         _vsnwprintf, sprintf, swprintf): Export.
5797
5798 2004-05-15  Filip Navara  <xnavara@volny.cz>
5799
5800         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5801         headers.
5802
5803 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5804
5805         * include/wingdi.h: Correct non-unicode typedefs of
5806         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5807
5808 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5809
5810         * include/winsock.h (IN_CLASSA): Fix macro.
5811         * include/winsock2.h (IN_CLASSA): Fix macro.
5812
5813 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5814
5815         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5816         * include/aclui.h: Remove '\r', throughout.
5817         * include/msacm.h: Likewise.
5818         * lib/aclui.def: Likewise.
5819
5820 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5821
5822         * lib/comctl32.def (SetWindowSubclass): Add stub.
5823         Thanks to Eugene <egladysh@users.sourceforge.net>.
5824
5825 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5826
5827         * include/winbase.h (EXECUTION_STATE): Add typedef.
5828         (SetThreadExecutionState): Declare.
5829         * include/wingdi.h (_WINGDI_): Define.
5830         * include/objbase.h (_OBJBASE_H_): Define.
5831
5832 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5833
5834         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5835         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5836         (SM_CMETRICS): Adjust value.
5837         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5838         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5839         Add defines.
5840         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5841
5842 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5843
5844         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5845         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5846         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5847         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5848         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5849         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5850
5851 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5852
5853         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5854         DNSREC_ADDITIONAL): Add defines.
5855
5856 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5857
5858         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5859
5860 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5861
5862         * include/aclui.h: New file.
5863         * lib/aclui.def: New file.
5864         * lib/test.c: Add aclui.h to includes.
5865
5866 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5867
5868         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5869         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5870         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5871
5872 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5873
5874         * include/wingdi.h: Protect non-unicode case of below.
5875
5876 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5877
5878         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5879         LPENUMLOGFONTEXDV with appropriate version check.
5880
5881 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5882
5883         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5884         DSPROPSETID_DirectSoundDevice): Add defines.
5885
5886 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5887
5888         * include/msacm.h: New file.
5889
5890 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5891
5892         * include/objbase.h (STGFMT): Declare enum.
5893         (STGOPTIONS): Declare structure.
5894         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5895         (STGOPTIONS_VERSION): Define.
5896         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5897
5898 2004-04-13  Filip Navara  <xnavara@volny.cz>
5899
5900         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5901         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5902         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5903         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5904         HELP_SETWINPOS): Define.
5905         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5906         (SPI_*): Add new definitions for WINVER >= 0x500.
5907         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5908         (InternalGetWindowText, SetWindowsHookW): Declare.
5909         * include/winbase.h (InitializeSListHead): Avoid conflicting
5910         definition with DDK headers.
5911
5912 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5913
5914         * include/winuser.h (GetLastError): Move from here...
5915         * include/winbase.h: ... to here.
5916
5917 2004-04-13  Filip Navara  <xnavara@volny.cz>
5918
5919         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5920
5921 2004-04-13  Filip Navara  <xnavara@volny.cz>
5922
5923         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5924         WINVER >= 0x400.
5925         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5926         (ENUMLOGFONTEXW): Fix definition.
5927         (ENUMLOGFONTEXDV[AW]): Declare.
5928
5929 2004-04-13  Filip Navara  <xnavara@volny.cz>
5930
5931         * include/wingdi.h: Declare the DirectDraw structures only if
5932         the DirectDraw kernel mode headers aren't included.
5933         (EMFINFO): Declare.
5934         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5935         STROBJ_bEnumPositionsOnly): Correct prototypes.
5936
5937 2004-04-13  Filip Navara  <xnavara@volny.cz>
5938
5939         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5940         * include/rpc.h (RPCRTAPI): Define.
5941         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5942         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5943         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5944         (I_RpcBindingSetAsync): Correct prototype.
5945         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5946         to w2kReserved.
5947         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5948         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5949         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5950         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5951         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5952         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5953         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5954         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5955         NdrUserMarshalFree): Declare.
5956         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5957         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5958
5959 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5960
5961         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5962         LPC_MESSAGE_BASE_SIZE): Define.
5963         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5964
5965 2004-04-13  Filip Navara  <xnavara@volny.cz>
5966
5967         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5968         Declare.
5969
5970 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5971
5972         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5973         MONITORINFO when compiling as C++.
5974
5975 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5976
5977         * README.w32api: List separate copyright conditions for some headers.
5978         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5979
5980 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5981
5982         * include/wingdi.h (RGB): Correct macro.
5983
5984 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5985
5986         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5987
5988 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5989
5990         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5991
5992 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5993
5994         * lib/Makefile.in: Add directx to .PHONY target.
5995         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5996         Don't include stdio.h or tchar.h.
5997         Replace _T() macro with TEXT() macro, throughout.
5998         Replace _stprintf with wsprintf, throughout.
5999
6000 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
6001
6002         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
6003         Add define.
6004         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
6005         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
6006         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
6007
6008 2004-03-27  Filip Navara  <xnavara@volny.cz>
6009
6010         * include/directx: New subdir.
6011         * lib/directx: Ditto.
6012         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
6013         dxerr9.h): New files.
6014         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
6015         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
6016         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
6017         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
6018         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
6019         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
6020         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
6021         strmiids.c, test.c): Ditto.
6022         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
6023         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
6024
6025 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6026
6027         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
6028         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
6029         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
6030
6031 2004-03-24  Filip Navara  <xnavara@volny.cz>
6032
6033         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
6034         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
6035
6036 2004-03-24  Filip Navara  <xnavara@volny.cz>
6037
6038         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
6039         TaggedQueueing to TaggedQueuing.
6040         (_HW_INITIALIZATION_DATA): Likewise.
6041
6042 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6043
6044         * include/docobj.h (IOleDocumentView::GetDocument): Correct
6045         prototype.
6046         Thanks to Buster Copley  <consequent@users.sourceforge.net>
6047
6048 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6049
6050         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
6051         (MmMapIoSpace): Likewise.
6052         Thanks to Dan Aloni  <da-x@colinux.org>
6053
6054 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
6055
6056         * include/shellapi.h (NIM_* NIS_*): Define constants for
6057         notification icons with _WIN32_IE >= 0x0500.
6058         (NOTIFYICONDATA): Add new structure members for notification
6059         icons with _WIN32_IE >= 0x0500.
6060
6061 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
6062
6063         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
6064         Add defines.
6065         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
6066         (GROUPID) Add typedef.
6067         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
6068         (CreateUrlCacheGroup): Add prototype.
6069         (DeleteUrlCacheGroup): Add prototype.
6070         (FindFirstUrlCacheGroup): Add prototype.
6071         (FindNextUrlCacheGroup): Add prototype.
6072         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
6073         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
6074
6075 2004-03-10  Al Slater  <al.slater@scluk.com>
6076
6077         * include/winsock2.h: Add missing LPFN_ typdefs for
6078         function pointers.
6079         Clean up whitespace.
6080
6081 2004-03-05  Filip Navara  <xnavara@volny.cz>
6082
6083         * include/ddk/scsi.h: Replace assert with ASSERT.
6084         * include/ddk/video.h: Ditto.
6085         * include/ddk/winddk.h: Ditto. Remove the assert macro.
6086         * include/ddk/tdi.h: Correct packing.
6087
6088 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
6089
6090         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
6091         NONAMELESSUNION case.
6092
6093 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
6094
6095         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
6096         __VARIANT_NAME_ constants.
6097
6098 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6099
6100         * include/uxtheme.h: Include <commctrl.h>
6101
6102 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6103
6104         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
6105
6106 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
6107
6108         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
6109         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
6110         together.
6111         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
6112         (V_I8, V_I8REF): Correct macros.
6113         (V_DECIMAL): Correct macro definitions.
6114         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
6115         constants.
6116         (VTBIT_*): Define constants.
6117         (UDATE): Add structure definition.
6118         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
6119         functions.
6120         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
6121         (SafeArrayCreateVectorEx): Declare function.
6122         (Var*): declare VARIANT manipulation functions.
6123         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
6124         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
6125         macros.
6126
6127 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
6128
6129         * include/oaidl.h (FADF_*): Define missing constants.
6130         (IDispatch_*): Define COBJ macros.
6131         (VARIANT): Add missing union members llVal and ullVal.
6132         (wireVARIANT): Likewise.
6133         (ITypeinfo_*): Define COBJ macros.
6134         * include/oleauto.h (Var*FromDisp): Correct parameter type from
6135         LPDISPATCH* to LPDISPATCH.
6136         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
6137         VAR_CALENDAR_*): Add missing constants.
6138         (SafeArray[Get/Set]*): Add prototypes.
6139         (Var*From*):  Add missing prototypes.
6140         (NUMPRS_*): Add defines.
6141         (NUMPARSE): Define structure.
6142         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
6143         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
6144         * include/winuser.h (COLOR_*): Define missing constants.
6145         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
6146         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
6147
6148 2004-02-23  Filip Navara  <xnavara@volny.cz>
6149
6150         * include/ddk/video.h: Corrected packing.
6151
6152 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6153
6154         * include/GL/glu.h (GLU_ERROR): Define.
6155         Thanks to Philip Lamb  <phil at rave dot co dot nz>
6156
6157 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6158
6159         * include/GL/glu.h: Include <stddef.h>.
6160         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
6161
6162 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
6163
6164         * include/w32api.h: Increment version to 3.0.
6165         * Makefile.in: Ditto.
6166         * README.win32api: Modify license to Public Domain per agreement as
6167         found in the mingw-dvlpr list archive.
6168
6169 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
6170
6171         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
6172         (DIRECTORY_TRAVERSE): Ditto.
6173         (DIRECTORY_CREATE_OBJECT): Ditto.
6174         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
6175         (DIRECTORY_ALL_ACCESS): Ditto.
6176         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
6177
6178 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
6179
6180         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
6181
6182         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
6183         Thanks to Mike Nordell <tamlin at algonet dot se>.
6184
6185 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6186
6187         * lib/dnsapi.def: New file.
6188         * lib/test.c: Include windns.h.
6189
6190 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
6191
6192         * include/windns.h: New file.
6193
6194 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6195
6196         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
6197         defines.
6198         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
6199         (SQLSetDescFieldW): Correct prototype.
6200         (SQLSetDescFieldA): Add prototype.
6201         (SQLGetDescFieldW): Add prototype.
6202
6203 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
6204
6205         * include/winuser.h (DFC_POPUPMENU): Add define.
6206
6207 2004-02-07  Dan Aloni  <da-x@gmx.net>
6208
6209         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
6210         suffix.
6211
6212 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6213
6214         * include/oleacc.h (LIBID_Accessibility): Declare.
6215         * lib/uuid.c (LIBID_Accessibility): Define.
6216
6217 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6218
6219         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
6220         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
6221
6222 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6223
6224         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
6225         defines.
6226
6227 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
6228
6229         * include/winuser.h (RT_MANIFEST): Make conditional on
6230         RC_INVOKED.
6231         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
6232         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
6233         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6234         defines.
6235
6236 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6237
6238         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6239
6240 2004-01-15  Filip Navara  <xnavara@volny.cz>
6241
6242         * include/ddk/mcd.h: Don't care about value of DBG define.
6243         * include/ddk/srb.h: Ditto.
6244         * include/ddk/storport.h: Ditto.
6245         * include/ddk/video.h: Ditto.
6246         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6247         GetAddressByNameW): Correct protoype.
6248         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6249
6250 2004-01-05  Filip Navara  <xnavara@volny.cz>
6251
6252         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6253         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6254         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6255         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6256         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6257         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6258         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6259         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6260         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6261         SSF_*): Add defines.
6262         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6263         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6264         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6265         Correct.
6266         (IEnumIDList): Add COBJMACROS.
6267         * include/winuser.h (MIM_*): Add define.
6268
6269 2004-01-04  Filip Navara  <xnavara@volny.cz>
6270
6271         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6272         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6273         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6274         PERSIST_FOLDER_TARGET_INFO): Define structures.
6275         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6276         IPersistFolder2, IPersistFolder3): Add COM interface
6277         definitions.
6278         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6279         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6280         Add COBJMACROS.
6281         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6282         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6283         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6284
6285 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6286
6287         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6288         declarations.
6289         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6290
6291 2004-01-03  Filip Navara  <xnavara@volny.cz>
6292
6293         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6294         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6295         declare IID's.
6296         (IErrorInfo): Add COBJMACROS.
6297         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6298         (CoGetPSClsid): Add protototype,
6299         (CoRegisterPSClsid): Likewise.
6300         * include/objidl.h (IMarshal): Correct methods.
6301         (IMallocSpy): Likewise,
6302         (LPPSFACTORYBUFFER): Add typedef.
6303         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6304         IID.
6305         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6306         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6307         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6308         structures.
6309         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6310         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6311         IQuickActivate): Define interfaces. Declare IID's.
6312         (IPersistPropertyBag2): Add COBJMACROS.
6313         (LPOLEUNDOMANAGER): Add typedef.
6314         (LPPROPERTYBAG2): Likewise.
6315         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6316         (BINDSPEED): Add definition.
6317         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6318         IDropTarget): Add COBJMACROS.
6319         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6320         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6321         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6322         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6323         Add IID definitions.
6324
6325 2004-01-02  Filip Navara  <xnavara@volny.cz>
6326
6327         * include/ddk/winddk.h: Don't care about value of
6328         DBG define.
6329
6330 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6331             Filip Navara  <xnavara@volny.cz>
6332
6333         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6334         _DDK_DUMMYUNION_N_MEMBER): New macros.
6335         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6336         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6337         Use them.
6338
6339 2004-01-01  Filip Navara  <xnavara@volny.cz>
6340
6341         * include/objbase.h: Don't care about value of DBG define.
6342         * include/objidl.h: Add some COBJMACROS.
6343         * include/ocidl.h: Ditto.
6344         * include/oleidl.h: Ditto.
6345         * include/servprov.h: Ditto.
6346         * include/shlobj.h: Ditto.
6347         * include/shlobj.h (IContextMenu2): Correct parent in
6348         DECLARE_INTERFACE.
6349         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6350         Define interfaces.
6351         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6352         Add new constants for _SETUPAPI_VER >= 0x501.
6353
6354 2004-01-01  Filip Navara  <xnavara@volny.cz>
6355
6356         * include/winnt.h (NtCurrentTeb): Add inline definition.
6357
6358 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6359
6360         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6361         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6362
6363 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6364
6365         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6366         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6367         * include/ddk/cfg.h (DN_*): Add defines.
6368
6369 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6370
6371         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6372
6373 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6374
6375         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6376         (NMTVGETINFOTIP): Add structure.
6377
6378 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6379
6380         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6381         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6382         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6383
6384 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6385
6386         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6387         Add macros.
6388         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6389         constants.
6390         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6391         (SHCOLUMNDAT): Likwise.
6392         (SHCOLUMNID): Likewise.
6393         (SHCOLUMNINFO): Likewise.
6394         (SHCOLSTATE): Add enum.
6395         (IColumnProvider): Add COM interface.
6396         (IQueryInfo): Likewise.
6397         (IShellIconOverlayIdentifier): Likewise.
6398         * include/shlguid.h (IID_IColumnProvider) Declare.
6399         (IID_IQueryInfo): Likweise.
6400         (IID_IShellIconOverlayIdentifier): Likwise.
6401         * lib/shell32.c (IID_IColumnProvider) Define.
6402         (IID_IQueryInfo): Likweise.
6403         (IID_IShellIconOverlayIdentifier): Likwise.
6404
6405 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6406
6407         * include/winuser.h (RT_MANIFEST): Add define.
6408
6409 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6410
6411         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6412
6413 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6414
6415         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6416         (GetFiberData): Likewise.
6417         (GetCurrentFiber): Change volatile to __volatile__.
6418         (GetFiberData): Likewise.
6419
6420 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6421
6422         * lib/Makefile.in: Use make function to locate .mri file to allow
6423         building in directory other than source directory.
6424
6425 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6426
6427         * lib/vfw32.def: Remove, replacing with ...
6428         * lib/msvfw32.def: New file.
6429         * lib/avicap32.def: New file.
6430         * lib/avifil32.def: New file.
6431         * lib/vfw32.mri: New file.
6432         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6433         import libs with multiple dll's.
6434         (LIBS): Add MIMPLIBS.
6435         (DISTFILES): Add MRI_FILES.
6436         (libvfw32.a): Build using mri script.
6437
6438 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6439
6440         * include/winnt.h (PAGE_*): Group defines together. Change
6441         constants to hex notation.
6442
6443 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6444
6445         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6446
6447 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6448
6449         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6450         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6451         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6452         Add prototypes.
6453         * lib/shell32.def: Add stubs.
6454
6455         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6456         compiler warnings.
6457
6458 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6459
6460         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6461
6462 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6463
6464         * include/windows.h (CopyCursor): Define as macro.
6465
6466 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6467
6468         * include/winnt.h (CONTAINING_RECORD): Add macro.
6469
6470 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6471
6472         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6473         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6474         defines.
6475
6476 2003-10-13  Filip Navara  <xnavara@volny.cz>
6477
6478         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6479         defines for Dynamic Storage Arrays.
6480         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6481         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6482         and defines for Flat ScrollBars.
6483         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6484         DefSubclassProc): Add prototypes for subclassing.
6485         (DrawShadowText): Add prototype.
6486         (COMCTL32_VERSION): Define.
6487
6488 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6489
6490         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6491         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6492
6493 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6494
6495         * include/winnt.h (SM_REMOTESESSION): Add define.
6496         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6497
6498 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6499
6500         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6501         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6502         duplicate definitions.
6503         (KP_X, KP_Y): Correct typos.
6504
6505 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6506
6507         * include/afxres.h: New file.
6508
6509         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6510         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6511         ENM_SCROLLEVENTS): Add constants.
6512
6513         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6514
6515 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6516
6517         * include/errorep.h: New file.
6518
6519         * lib/faultrep.def: New file.
6520
6521 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6522
6523         * include/winbase.h (AddVectoredExceptionHandler): Define if
6524         _WIN32_WINNT >= 0x0500.
6525
6526         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6527         _WIN32_WINNT >= 0x0500.
6528
6529 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6530
6531         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6532         _WIN32_WINNT >= 0x0501.
6533
6534 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6535
6536         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6537         UnregisterWaitEx): Add functions.
6538
6539         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6540         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6541         or guard function. The MSDN says it is available on Windows XP and
6542         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6543         Huh?
6544
6545         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6546         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6547         ZombifyActCtx, QueryActCtxW): Add functions.
6548
6549         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6550         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6551         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6552         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6553
6554         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6555         SetFirmwareEnvironmentVariable[AW]): Add functions.
6556
6557         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6558         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6559         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6560         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6561         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6562
6563         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6564         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6565
6566         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6567         (ACTIVATION_CONTEXT_INFO_CLASS,
6568         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6569         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6570         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6571         Add structures.
6572
6573         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6574         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6575         SetFileShortName[AW], SetFileValidData,
6576         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6577         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6578
6579 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6580
6581         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6582         ResetWriteWatch): Add function.
6583
6584         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6585         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6586         Add functions.
6587
6588         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6589         (GetSystemWow64Directory[AW], HeapQueryInformation,
6590         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6591         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6592         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6593         RemoveVectoredExceptionHandler): Add functions.
6594
6595         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6596         Add enumeration.
6597
6598         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6599         Add function.
6600
6601         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6602         Add function. The MSDN Magazine of June 2003 reads:
6603                 RestoreLastError is an enigma. It's code is identical to
6604                 SetLastError. It's unclear to me why it was made into a
6605                 separate API.
6606
6607         * lib/user32.def (GetSystemWindowsDirectory[AW],
6608         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6609         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6610         InterlockedFlushSList, InterlockedPopEntrySList,
6611         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6612         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6613         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6614         RestoreLastError): Add functions.
6615
6616 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6617
6618         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6619         GetProcessIoCounters): Add functions.
6620
6621         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6622         Move around, needed by GetComputerNameEx.
6623
6624         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6625         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6626         Add functions.
6627
6628         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6629         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6630
6631         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6632         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6633         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6634         Windows XP SP1 and better.
6635
6636         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6637         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6638         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6639         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6640         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6641         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6642         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6643         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6644         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6645
6646         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6647         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6648         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6649         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6650         Add functions.
6651
6652 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6653
6654         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6655         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6656         DebugSetProcessKillOnExit): Add functions.
6657
6658         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6659         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6660         DnsHostnameToComputerName[AW]): Add functions.
6661
6662         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6663         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6664         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6665
6666 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6667
6668         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6669         on Windows XP and later.
6670
6671 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6672
6673         * include/commctrl.h (TreeView_Select): Returns BOOL.
6674
6675 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6676
6677         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6678
6679         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6680         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6681
6682         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6683         CreateTimerQueueTimer): Add function.
6684
6685         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6686         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6687
6688         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6689         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6690
6691         * include/winnt.h (WT_*): Add constants.
6692
6693         * lib/user32.def (CancelDeviceWakeupRequest,
6694         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6695         DeactivateActCtx): Add functions.
6696
6697 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6698
6699         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6700         Add function. Sometimes I don't understand MSDN. This function is
6701         available on Windows XP and Server 2003, but the SDK is supposed to
6702         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6703         Mmmh...
6704
6705         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6706         Guard function. Same remark as above.
6707
6708         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6709         Add functions.
6710
6711 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6712
6713         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6714         Add constants.
6715
6716         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6717         structures.
6718
6719         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6720         function. MSDN says the first argument is HACTCTX but I'm not sure
6721         where such a specialized handle is defined, so use HANDLE instead.
6722
6723         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6724         CheckNameLegalDOS8Dot3[AW]): Add functions.
6725
6726         * lib/user32.def (ActivateActCtx, AttachConsole,
6727         CheckNameLegalDOS8Dot3[AW]): Add functions.
6728
6729         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6730         Unfortunately I don't know which header to put the declarations in.
6731
6732 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6733
6734         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6735         Add constants.
6736
6737         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6738         constants for National Language Support.
6739
6740         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6741         Language Support.
6742
6743         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6744         Language Support.
6745
6746         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6747         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6748         Add functions.
6749
6750         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6751         functions. Strange... I am unable to find which library contains
6752         these functions. Can't find anything with pexports. Any clue?
6753
6754         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6755         SetUserGeoID): Add functions.
6756
6757 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6758
6759         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6760         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6761
6762         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6763         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6764         value for constants.
6765
6766 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6767
6768         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6769         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6770         the algorithms.
6771
6772 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6773
6774         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6775
6776 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6777
6778         * include/wincrypt.h (KP_*): Add constants. Needed by
6779         CryptSetKeyParam() and other functions.
6780
6781 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6782
6783         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6784         Add constants, related to Console Accessibility.
6785
6786 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6787
6788         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6789         wrong value for constant.
6790
6791 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6792
6793         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6794
6795         * include/uxtheme.h: Cleanup.
6796         * include/tmschema.h: Cleanup.
6797
6798 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6799
6800         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6801         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6802
6803 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6804
6805         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6806
6807 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6808
6809         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6810         both winuser.h and dbt.h.
6811         * include/dbt.h (BSF_*, BSM_*): Likewise.
6812
6813         * include/winuser.h (struct tagRAWINPUT): Remove
6814         _ANONYMOUS_UNION tag from named union.
6815         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6816
6817 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6818
6819         * include/dhcpcdsk.h: New file.
6820         Note that MSDN is confused about whether it should start constant
6821         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6822         experience suggests it's DHCPCAPI with `C'.
6823
6824         * lib/dhcpcsvc.def: New file.
6825
6826 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6827
6828         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6829         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6830
6831         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6832         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6833         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6834         for use in RAWINPUTDEVICE.
6835
6836         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6837         (GetRawInputDeviceInfo[AW]): Ooops... there are
6838         ANSI/Unicode versions of this function.
6839
6840         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6841         are ANSI/Unicode versions of this function.
6842
6843 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6844
6845         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6846         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6847         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6848         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6849         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6850         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6851         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6852         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6853         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6854         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6855         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6856         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6857         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6858         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6859         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6860         RIDI_DEVICEINFO): Add constants.
6861
6862         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6863         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6864         RAWINPUTDEVICELIST): Add structures.
6865
6866         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6867         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6868         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6869
6870         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6871         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6872         GetRegisteredRawInputDevices): Add functions.
6873
6874 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6875
6876         * include/winable.h (BlockInput): Add function.
6877
6878         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6879         For use with WINDOWINFO structure.
6880
6881         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6882         Add function.
6883
6884         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6885         Add function.
6886
6887         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6888         Add function...
6889
6890         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6891         ...and duplicate.
6892
6893         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6894         Guard function...
6895
6896         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6897         ...and duplicate.
6898
6899         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6900         Guard function...
6901
6902         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6903         ...and duplicate.
6904
6905         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6906         HARDWAREINPUT, INPUT): Guard structures...
6907
6908         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6909         HARDWAREINPUT, INPUT): ...and duplicate.
6910
6911         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6912         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6913
6914         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6915         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6916
6917         * include/winuser.h: Move around some lines. Reformat according
6918         to recommended or dominant style. Remove FAR keyword.
6919
6920         * include/winable.h: Move around some lines.
6921
6922         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6923         LockWorkStation, UnhookWinEvent): Add functions.
6924
6925 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6926
6927         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6928         PW_CLIENTONLY): Add function and constant.
6929
6930         * lib/user32.def (PrintWindow): Add function.
6931
6932 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6933
6934         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6935
6936         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6937
6938 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6939
6940         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6941         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6942         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6943
6944         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6945
6946 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6947
6948         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6949         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6950         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6951
6952         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6953         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6954         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6955
6956         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6957         Add function.
6958
6959         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6960         Add functions.
6961
6962 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6963
6964         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6965         ACE_OBJECT_TYPE_PRESENT): Add constants.
6966         For use with OBJECTS_AND_NAME structure.
6967
6968 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6969
6970         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6971         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6972         void* instead.
6973
6974         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6975         PINHERITED_FROM[AW]): Add structures.
6976
6977         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6978
6979 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6980
6981         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6982
6983 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6984
6985         * lib/version.def (LIBRARY): Quote name.
6986
6987 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6988
6989         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6990         and constants.
6991
6992         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6993         GR_USEROBJECTS): Add functions and constants.
6994
6995         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6996         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6997
6998         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6999         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
7000         constants.
7001
7002         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
7003         GetMouseMovePointsEx, InSendMessageEx): Add functions.
7004
7005 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7006
7007         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
7008         BroadcastSystemMessageW, BroadcastSystemMessageEx,
7009         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7010         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
7011         BSF_RETURNHDESK): Add functions and constants.
7012
7013         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
7014         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
7015
7016         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
7017         GetProcessDefaultLayout, SetProcessDefaultLayout,
7018         RealChildWindowFromPoint, SetProcessDefaultLayout,
7019         SwitchToThisWindow): Add functions.
7020
7021         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
7022         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7023         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
7024         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
7025         RealChildWindowFromPoint, SetProcessDefaultLayout,
7026         SwitchToThisWindow): Add function.
7027
7028 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7029
7030         * include/winuser.h (DeregisterShellHookWindow): Add function.
7031
7032         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
7033
7034         * lib/user32.def (EndTask): Add function.
7035
7036         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
7037         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
7038
7039         * include/winable.h: Reorder target macros.
7040
7041         * lib/*.def: Cleanup.
7042
7043 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7044
7045         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
7046         function.
7047
7048         * lib/user32.def (AnimateWindow): Add function. By the way
7049         there are ~ 140 symbols missing from this file when comparing
7050         to user32.dll on Windows XP.
7051
7052 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7053
7054         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
7055         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
7056         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
7057         AnimateWindow().
7058
7059 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7060
7061         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
7062         LPGUITHREADINFO): Add function and associated typedef...
7063
7064         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
7065         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
7066         seems to be required on older versions of Windows.
7067
7068 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7069
7070         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
7071         function. MSDN suggests using gluErrorUnicodeStringWIN
7072         instead of gluErrorString, as it allows both ANSI and Unicode
7073         error strings.
7074
7075         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
7076         returned pointer const for consistency reasons.
7077
7078 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7079
7080         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
7081         Function exists in glu32.def but is undocumented on MSDN.
7082         A Google search came up with this declaration.
7083
7084 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7085
7086         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
7087         headers from OpenGL Sample Implementation. Windows ships with
7088         GLU 1.2 so some constants and functions were removed. Then some
7089         typedef's and function declarations were reworked to look like
7090         the previous GL/glu.h.
7091
7092 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7093
7094         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
7095         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
7096         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
7097
7098         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
7099         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
7100         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
7101         and `enum THEMESIZE'.
7102
7103 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7104
7105         * include/uxtheme.h: New file.
7106         * include/tmschema.h: New file.
7107         * include/uxtheme.def: New file.
7108         * lib/test.c: Include uxtheme.h, tmschema.h.
7109
7110 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7111
7112         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
7113         Add defines.
7114
7115 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7116
7117         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7118         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
7119         <winable.h> as seems to be required on older versions of
7120         Windows.
7121
7122 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7123
7124         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
7125         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7126         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
7127         Add defines, the last one only on Windows XP...
7128
7129         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
7130         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7131         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
7132         them in <winable.h> as seems to be required on older
7133         versions of Windows.
7134
7135 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7136
7137         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
7138         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7139         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7140         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
7141         back into <winuser.h>...
7142
7143         * include/winable.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): ...and
7147         comment out in <winable.h>. MSDN may say <winable.h> but this
7148         breaks many programs. It seems it used to be <winable.h> on
7149         older versions of Windows.
7150
7151 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
7152
7153         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
7154         Thanks to Will Levine  <willll@users.sourceforge.net>
7155
7156 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7157
7158         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
7159         const struct sockaddr*.
7160         (LPWSPCONNECT): Likewise.
7161         (LPWSPJOINLEAF): Likewise.
7162         (LPWSPSENDTO): Likewise.
7163         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
7164
7165 2003-09-15  Filip Navara  <xnavara@volny.cz>
7166
7167         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
7168         Add definitions.
7169
7170 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
7171
7172         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
7173         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
7174         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
7175         DISPLAY_DEVICE_MODESPRUNED): Define constants.
7176         (ChangeDisplaySettingsEx[A,W]): Add prototype.
7177
7178         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
7179         (EnumDisplayDevices[A,W]): Likewise.
7180
7181 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7182
7183         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
7184         throughout.
7185
7186 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7187
7188         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7189         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7190         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7191         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7192         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
7193         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7194         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7195         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
7196         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7197         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7198         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7199         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7200         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
7201         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7202         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7203         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
7204         with documentation.
7205         * include/olectl.h: Do #include <ocidl.h>.
7206         * include/ocidl.h: Don't #include <olectl.h>.
7207
7208 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7209
7210         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
7211         Change guards to use numeric constants, throughout.
7212
7213 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
7214
7215         * include/w32api.h: Increment version to 2.5.
7216         * Makefile.in: Ditto.
7217
7218 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
7219
7220         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
7221         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
7222
7223 2003-09-08  Filip Navara  <xnavara@volny.cz>
7224
7225         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
7226         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
7227
7228 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
7229
7230         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
7231         * include/winbase.h (_NT5, etc): Ditto.
7232
7233 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7234
7235         * lib/snmpapi.def (LIBRARY) Add library name.
7236         Remove '\r', throughout.
7237         * lib/wsnmp32.def: Remove '\r', throughout.
7238         * lib/igmpagnt.def: Likewise.
7239
7240 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7241
7242         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7243         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7244         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7245         (MWMO_*): Add flags.
7246
7247         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7248         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7249         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7250         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7251
7252 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7253
7254         * lib/test.c: Add vfw.h to includes.
7255         * include/mmsystem.h: Add #ifndef guard to definition of
7256         mmioFOURCC macro.
7257         * include/vfw.h: Protect __OBJC__ from COM declarations.
7258
7259 2003-08-26  Filip Navara  <xnavara@volny.cz>
7260
7261         * include/vfw.h: New file.
7262
7263 2003-08-26  Filip Navara  <xnavara@volny.cz>
7264
7265         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7266         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7267         PIO_COMPLETION_ROUTINE.
7268
7269 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7270
7271         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7272         includes.
7273
7274 2003-08-26  Filip Navara  <xnavara@volny.cz>
7275
7276         * include/snmp.h: New file.
7277         * include/winsnmp.h: New file.
7278         * include/mgmtapi.h: New file.
7279         * lib/snmpapi.def: New file.
7280         * lib/wsnmp32.def: New file.
7281         * lib/igmpagnt.def: New file.
7282         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7283         (SnmpMgrGetTrapEx): Ditto.
7284         (SnmpMgrMIB2Disk): Remove.
7285         (dbginit): Remove.
7286
7287 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7288
7289         * include/ddk/ntifs.h: Change all C++ style comments to C.
7290         * include/GL/gl.h: Ditto.
7291
7292 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7293
7294         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7295         (SFGAO_HIDDEN): Add define.
7296
7297 2003-08-25  Filip Navara  <xnavara@volny.cz>
7298
7299         * include/commctrl.h (ILCF_*): Add defines.
7300         (ILD_*): Ditto.
7301         (HDS_*): Ditto.
7302         (IPN_FIRST, IPN_LAST): Cast to UINT.
7303         (SBN_FIRST, SBN_LAST): Add defines.
7304         (PGN_*): Ditto.
7305         (HDF_JUSTIFYMASK): Fix typo.
7306         (HDM_*): Add defines.
7307         (HICF_*): Ditto.
7308         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7309         (TBSTATE_MARKED): Add define.
7310         (TBSTYLE_EX_*): Add defines.
7311         (TBCDRF_*): Ditto.
7312         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7313         (TB_*): Ditto.
7314         (TBN_*): Ditto.
7315         (TBNRF_*): Ditto.
7316         (TTF_*): Ditto.
7317         (TBCD_*): Ditto.
7318         (TBDDRET_*): Ditto.
7319         (TBIMHT_*): Ditto.
7320         (TTM_*): Ditto.
7321         (UDM_*): Ditto.
7322         (TBIF_BYINDEX): Define as hex constant.
7323         (CDIS_*): Add defines.
7324         (CDDS_SUBITEM): Add define.
7325         (LVIF_*): Add defines.
7326         (LVM_*): Ditto.
7327         (LVGIT_UNFOLDED): Add define.
7328         (TVM_): Add defines.
7329         (TVE_EXPANDPARTIAL): Add define.
7330         (TVGN_LASTVISIBLE): Ditto.
7331         (TVN_*): Add defines.
7332         (TVNRET_*): Add defines.
7333         (TCIF_STATE): Add define.
7334         (NM_TOOLTIPSCREATED): Ditto.
7335         (CCM_*): Add defines.
7336         (INFOTIPSIZE): Add numeric value.
7337         (ODT_LISTVIEW): Ditto.
7338         (MCM_GETMAXTODAYWIDTH): Ditto.
7339         (MCHT_*): Add defines.
7340         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7341         (PGF_*): Add defines.
7342         (PGM_*): Ditto.
7343         (TBINSERTMARK): Add structure.
7344         (LPIMAGEINFO) Add typedef.
7345         (LPHDHITTESTINFO): Ditto.
7346         (NMLVGETINFOTIP[AW]: Add structures.
7347         (NMTBCUSTOMDRAW): Add structure.
7348         (TTTOOLINFOA_V*_SIZE): Add macros.
7349         (TTTOOLINFOW_V1_SIZE): Ditto.
7350         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7351         (LVITEM[AW]: Ditto.
7352         (TCITEM[AW]):Ditto.
7353         (CCSIZEOF_STRUCT): Correct macro definition.
7354         (ListView_*): Add new macros.
7355         (HIMAGELIST): Correct typedef.
7356         (HTREEITEM): Ditto.
7357
7358 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7359
7360         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7361         TCHITTESTINFO for backward compatibility.
7362         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7363         compatibility.
7364
7365 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7366
7367         * include/objidl.h (COBJMACROS): Define macros only
7368         if using C interace.
7369         * include/unknwn.h: Ditto.
7370         * include/comcat.h: Ditto.
7371
7372 2003-08-24  Filip Navara  <xnavara@volny.cz>
7373
7374         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7375         PSH_NOCONTEXTHELP): Define.
7376         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7377         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7378         (LPDLGTEMPLATE[AW]): Add typedefs.
7379
7380 2003-08-22  Filip Navara  <xnavara@volny.cz>
7381
7382         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7383         Add prototypes.
7384         BuildImpersonateTrustee[AW]): Add prototypes.
7385         GetMultipleTrustee[AW]): Add prototypes.
7386         GetMultipleTrusteeOperation[AW]): Add prototypes.
7387
7388 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7389
7390         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7391
7392 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7393
7394         * include/shlobj.h (IPersistFolder::GetClassID):
7395         Correct declaration.
7396         (CMF_*) Add missing defines.
7397
7398 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7399
7400         * include/winuser.h (DC_BUTTONS): Add define.
7401
7402 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7403
7404         * include/winuser.h (DC_GRADIENT): Add define.
7405
7406 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7407
7408         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7409         older TBSTYLE_* constants.
7410
7411 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7412
7413         * include/commctrl.h (TB_*) Group defines together.
7414
7415 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7416
7417         * include/winuser.h (ICON_SMALL2): Define.
7418         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7419         Define.
7420         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7421         (IDragSourceHelper) Define interface.
7422         (IDropTargetHelper): Likewise.
7423         (IExtractIcon): Unicode it.
7424         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7425         OnStateChange and IncludeObject methods.
7426
7427 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7428
7429         * include/commctrl.h (TreeView_GetScrollTime,
7430         TreeView_SetScrollTime): Define macros.
7431         * include/winuser.h (GetShellWindow): Add prototype.
7432         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7433
7434 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7435
7436         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7437         IID_IDragSourceHelper): Declare.
7438         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7439         IID_IDragSourceHelper): Define.
7440
7441 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7442
7443         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7444         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7445         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7446
7447 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7448
7449         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7450         CGID_ShellServiceObject): Remove definitions.
7451         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7452
7453 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7454
7455         * include/shlobj.h (SHELLSTATE): Add structure.
7456         (SHGetSetSettings): Add prototype.
7457         (SHGetSettings): Add prototype.
7458         * lib/shell32.def (SHGetSetSettings): Add stub.
7459
7460 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7461
7462         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7463         (Header_OrderToIndex): Add macro.
7464         (Header_GetOrderArray): Add macro.
7465
7466         * include/commdlg.h (FR_MATCHALEFHAMZA,
7467         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7468
7469 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7470
7471         * include/commctrl.h (TVM_GETSCROLLTIME,
7472         TVM_SETSCROLLTIME): Add defines.
7473
7474 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7475
7476         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7477         (SHGetInstanceExplorer): Correct return type.
7478         (SHGetFolderPath[AW]): Likewise.
7479         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7480         for report.
7481
7482 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7483
7484         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7485
7486 2003-08-01  Filip Navara  <xnavara@volny.cz>
7487
7488         * include/winldap.h: New file.
7489         * include/ntldap.h: New file.
7490         * include/winber.h: New file.
7491         * lib/winldap32.def: New file.
7492
7493 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7494
7495         * include/ddk/atm.h: Remove stray '.';
7496
7497 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7498
7499         * include/ddk/winddk.h: Remove trailing ';' from macros,
7500         throughout. Add () around defines with cast returns, throughout.
7501
7502 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7503
7504         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7505         (SFGAOF, SHGDNF): Add typedef's.
7506         (SHCONTF): Extend enum.
7507
7508 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7509
7510         * include/shellapi.h: Include all structs within pshpack2.h/
7511         poppack.h block.
7512
7513 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7514
7515         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7516         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7517         _WIN32_WINDOWS, not WINVER.
7518         (AllowSetForegroundWindow,LockSetForegroundWindow,
7519         SetLayeredWindowAttributes): Likewise.
7520         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7521         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7522         Add stubs.
7523
7524 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7525
7526         * include/objidl.h (IMalloc): Fix typo.
7527
7528 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7529
7530         * include/dkk/ntifs.h: Fix typo in guard for
7531         #pragma GCC system_header.
7532
7533 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7534
7535         * include/objidl.h (PropVariant): Add CHAR cVal field
7536         to union.
7537         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7538         FMTID_UserDefinedProperties): Declare.
7539
7540 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7541
7542         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7543
7544 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7545
7546         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7547         DUPLICATE_SAME_ACCESS): Remove defines.
7548         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7549         ddk/ntapi.h defines.
7550         (SEM_*) : Likewise.
7551         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7552         ddk/ntifs.h defines.
7553         (FILE_*): Likewise.
7554         (MEM_IMAGE, SEC_*): Likewise.
7555         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7556         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7557         (TOKEN_*): Sync with ddk/ntifs.h defines.
7558         * include/ddk/ntapi.h: Add comments noting definitions in
7559         winbase.h.
7560         * include/ddk/ntifs.h: Add comments noting definitions in
7561         winnt.h.
7562         * include/ddk/winddk.h: Add comments noting definitions in
7563         winnt.h.
7564
7565 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7566
7567         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7568         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7569
7570 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7571
7572         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7573
7574 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7575
7576         Clean up warnings in ddk.
7577
7578         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7579         conditional on  __cplusplus.
7580         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7581         defines, throughout.
7582         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7583         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7584         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7585         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7586         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7587         defines, throughout.
7588         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7589         defines, throughout. Remove trailing semicolon from *_S 'structure'
7590         macro expansion, throughout. Remove trailing semicolon from
7591         DECLARE_UNKNOWN_STRUCT macro expansion.
7592         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7593         _ANONYMOUS_UNION.
7594         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7595         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7596         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7597         Add _ANONYMOUS_UNION.
7598         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7599         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7600         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7601         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7602         match proto in ntapi.h.
7603         (ZwSetInformationObject): Likewise.
7604         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7605         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7606         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7607         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7608         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7609         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7610         last comma.
7611         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7612         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7613         trailing semicolon when expanding macro.
7614         (GENERAL_LOOKASIDE_S): Likewise.
7615         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7616         Change inline to __inline, throughout.
7617         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7618
7619 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7620
7621         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7622         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7623         KPRIORITY.
7624         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7625         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7626         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7627         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7628         to anonymous structs.
7629
7630 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7631
7632         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7633
7634         * include/winuser.h (mouse_event): Correct type of fifth param,
7635         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7636
7637 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7638
7639         * include/winnt.h (HANDLE): Define based on STRICT filter.
7640         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7641         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7642
7643 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7644
7645         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7646         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7647         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7648         for report.
7649
7650 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7651
7652         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7653
7654 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7655
7656         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7657         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7658         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7659         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7660         (TPM_RECURSE): Add guard for Win98/Win2K.
7661         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7662
7663 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7664
7665         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7666         avoid user namespace conflicts.
7667
7668 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7669
7670         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7671         _IE3, _IE4, _IE5, _IE6): Add definitions.
7672         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7673         >= Win98.
7674         Change existing guards to use the above macro names as appropriate.
7675         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7676         Note: Also added to mingw/include/_mingw.h.
7677
7678 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7679
7680         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7681         PathFindSuffixArrayA, PathFindSuffixArrayW,
7682         PathFindExtensionA, PathFindExtensionW, StrStrW
7683         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7684         explicit type.
7685
7686 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7687
7688         * include/richedit.h (PARAFORMAT2): Add definition.
7689         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7690         missing constants.
7691
7692 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7693
7694         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7695         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7696         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7697         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7698
7699 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7700
7701         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7702         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7703         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7704         that these are obsolete no-ops.
7705
7706 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7707
7708         * include/winbase.h (GetProcessWorkingSetSize,
7709         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7710         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7711         Correct prototypes.
7712
7713 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7714
7715         * include/winuser.h (TPM_RECURSE): Add define.
7716
7717 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7718
7719         * lib/test.c: #include <powrprof.h>.
7720
7721 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7722
7723         * include/powerprof.h: New file.
7724         * lib/powerprof.def: New file.
7725
7726 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7727
7728         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7729         protection.
7730
7731 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7732
7733         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7734         hInstance members to HINSTANCE.
7735         Thanks to: Brenden T. <brenden@rcsis.com>
7736
7737 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7738
7739         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7740         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7741
7742 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7743
7744         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7745         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7746         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7747         Remove.
7748         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7749
7750 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7751
7752         * lib/oleacc.def: New file.
7753         * include/winable.h: New file.
7754         * include/oleacc.h: Add extern "C" guard.
7755         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7756         (AccessibleChildren, AccessibleObjectFromEvent,
7757         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7758         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7759         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7760         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7761         * include/winuser.h (NotifyWinEvent): Add prototype.
7762         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7763         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7764         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7765         OBJID_SOUND): Move from here to...
7766         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7767         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7768         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7769         OBJID_SOUND): Here, as per documentation.
7770         * lib/test.c: Include winable.h.
7771         * lib/user32.def (NotifyWinEvent): Add missing export.
7772
7773 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7774
7775         * include/winbase.h (HeapCompact): Correct prototype.
7776         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7777         SLIST_HEADER): Add.
7778
7779 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7780
7781         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7782
7783 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7784
7785         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7786
7787 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7788
7789         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7790         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7791
7792 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7793
7794         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7795         lpGlyphs field to LPWSTR.
7796
7797 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7798
7799         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7800         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7801         (PP_*): Add defines.
7802         (CryptContextAddRef): Add prototype.
7803         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7804
7805 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7806
7807         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7808
7809 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7810
7811         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7812         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7813         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7814         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7815         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7816         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7817         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7818         readability.
7819         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7820         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7821
7822 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7823
7824         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7825         Unname anonymous unions if NONAMELESSUNION not defined.
7826
7827 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7828
7829         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7830
7831 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7832
7833         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7834         anonymous unions as GCC extension.
7835
7836 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7837
7838         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7839         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7840         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7841         commented out).
7842         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7843
7844 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7845
7846         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7847         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7848         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7849
7850 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7851
7852         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7853         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7854         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7855         IProvideClassInfo2,IConnectionPointContainer,
7856         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7857         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7858         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7859         IPicture,IPictureDisp): Move from here to...
7860         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7861         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7862         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7863         IProvideClassInfo2,IConnectionPointContainer,
7864         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7865         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7866         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7867         IPicture,IPictureDisp): Here, as per documentation.
7868
7869 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7870
7871         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7872         * include/winbase.h (TerminateJobObject,
7873         AssignProcessToJobObject): Likewise.
7874         * include/servprov.h: New header.
7875         * lib/test.c: Include servprov.h.
7876
7877 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7878
7879         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7880         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7881         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7882         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7883         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7884         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7885
7886 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7887
7888         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7889         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7890         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7891
7892 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7893
7894         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7895         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7896         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7897         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7898         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7899         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7900         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7901
7902 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7903
7904         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7905
7906 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7907
7908         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7909         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7910
7911 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7912
7913         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7914         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7915         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7916
7917 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7918
7919         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7920
7921 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7922
7923         * include/oaidl.h (ITypeMarshal): Add interface.
7924
7925 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7926
7927         * include/winioctl.h: Clean up formatting.
7928         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7929         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7930         (DISK_CACHE_INFORMATION): Likewise.
7931         (DISK_DETECTION_INFO): Likewise.
7932         (DISK_PARTITION_INFO): Likewise.
7933         (PARTITION_INFORMATION_EX): Likewise.
7934         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7935
7936 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7937
7938         * include/winbase.h (DeleteVolumeMountPoint[AW],
7939         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7940         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7941         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7942         SetVolumeMountPoint[AW]): Add prototypes.
7943         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7944         IOCTL_DISK_SET_PARTITION_INFO_EX,
7945         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7946         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7947         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7948         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7949         IOCTL_DISK_GET_CACHE_INFORMATION,
7950         IOCTL_DISK_SET_CACHE_INFORMATION,
7951         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7952         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7953         FSCTL_MOVE_FILE): Define.
7954         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7955         DISK_CACHE_INFORMATION,
7956         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7957         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7958         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7959         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7960         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7961         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7962         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7963         MOVE_FILE_DATA,
7964         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7965         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7966         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7967         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7968         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7969         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7970         F3_240M_512, and F3_32M_512.
7971         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7972         stubs.
7973
7974 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7975
7976         * include/wingdi.h (DM_SPECVERSION): Define.
7977         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7978         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7979         appropriate _WIN32_WINNT values.
7980
7981 2003-04-15  Chris January  <chris@atomice.net>
7982
7983         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7984         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7985
7986 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7987
7988         * include/winuser.h (VK_*): Add missing defines.
7989
7990 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7991
7992         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7993         documented typedefs for struct _NM_UPDOWN.
7994         Add defines for backward comapatibility.
7995         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7996         * include/wininet.h (IRF_*): Add missing defines.
7997
7998 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7999
8000         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
8001
8002 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
8003
8004         * include/sspi.h: Add comment for FreeCredentialsHandle.
8005
8006 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
8007
8008         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
8009
8010 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
8011
8012         * include/olectl.h (OleLoadPicturePath): Correct prototype.
8013
8014 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
8015
8016         * lib/uuid.c (IID_IHTML*): Move definitions to...
8017         * lib/mshtml-uuid.c: New file.
8018         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
8019
8020 2003-03-30  Michael Sazonov  <traip@comset.net>
8021
8022         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
8023         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
8024         IHTMLImgElement): Add interface definitions.
8025
8026 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
8027
8028         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
8029         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
8030         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
8031         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
8032         RC_INVOKED guard.
8033         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
8034         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
8035
8036 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
8037
8038         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
8039
8040 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
8041
8042         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
8043         TranslateName[AW]): Add prototypes.
8044         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
8045         TranslateName[AW]): Add stubs.
8046         * lib/test.c: Include secext.h.
8047
8048 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
8049
8050         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
8051         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
8052         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
8053         _SpinLock.
8054
8055 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
8056
8057         * include/w32api.h: Increment version to 2.4.
8058         * Makefile.in: Ditto.
8059
8060 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
8061
8062         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
8063         Move structure from here...
8064         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
8065
8066         * include/ddk/ntapi.h (JOBOBJECT_*):
8067         Remove structures and enums definitions.
8068         (JOB_OBJECT*): Move defines from here...
8069         * include/winnt.h (JOB_OBJECT* ): To here.
8070
8071         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
8072         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8073         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8074         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8075         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8076         SYSTEM_POWER_CAPABILITIES): Move enums, structures
8077         and associated defines from here ...
8078         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
8079         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8080         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8081         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8082         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8083         SYSTEM_POWER_CAPABILITIES):To here.
8084
8085         * include/ddk/winddk.h (DEVICE_POWER_STATE,
8086         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
8087         from here...
8088         * include/winnt.h (DEVICE_POWER_STATE,
8089         SYSTEM_POWER_STATE, POWER_ACTION): To here.
8090
8091 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
8092
8093         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
8094         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
8095         (NdisUpdateSharedMemory): Likewise.
8096         (NdisMFreeSharedMemory: Likewise.
8097         (NdisMMapIoSpace: Likewise.
8098
8099 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
8100
8101         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
8102         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
8103         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
8104
8105 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
8106
8107         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
8108         (EnumResourceNames[AW]): Ditto.
8109         (EnumResourceTypes[AW]): Ditto.
8110         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
8111
8112 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
8113
8114         * include/winuser.h (SendInput): Add prototype.
8115         * lib/user32.def (SendInput): Add stub.
8116
8117 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
8118
8119         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
8120         (FSCTL_DELETE_REPARSE_POINT): Likewise.
8121
8122 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
8123
8124         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
8125         (JOBOBJECT_*): Define corresponding structures.
8126
8127 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
8128
8129         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
8130         typedef.
8131
8132 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
8133
8134         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
8135         (Process32{First,Next}{,W}): Ditto.
8136         (Thread32{First,Next}): Ditto.
8137         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
8138
8139 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
8140
8141         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
8142         Thanks to Jim Barton <jmbarton@users.sf.net>.
8143
8144 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
8145
8146         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
8147         member SectionAlignment.
8148
8149 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
8150
8151         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
8152         warnings.
8153         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
8154         * Makefile.in (bindist): Correct process.
8155         * lib/Makefile.in (install): Ditto.
8156         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
8157
8158 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
8159
8160         * include/rasdlg.h: New file.
8161         * lib/rasdlg.def: New file.
8162         * lib/test.c: Include rasdlg.h.
8163
8164 2003-03-06  Christopher January  <chris@atomice.net>
8165
8166         * include/winbase.h (FindFirstVolume): Add declaration.
8167         (FindNextVolume): Add declaration.
8168         (FindVolumeClose): Add declaration.
8169         (GetSystemTimes): Add declaration.
8170         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
8171
8172 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
8173
8174         *lib/kernel32.def (GetSystemTimes): Add stub.
8175
8176 2003-03-04  Heiko Gerdau  <hg@technosis.de>
8177
8178         * oleidl.h (IOleObject): Correct GetUserType prototype.
8179         (IViewObject2): Correct GetExtent prototype.
8180         * olectl.h (DISPIP_): Add new defines
8181         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
8182
8183 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8184
8185         * include/olectl.h (OleLoadPictureEx) Add prototype.
8186         (OleLoadPictureFile): Ditto.
8187         (OleLoadPictureFileEx): Ditto.
8188         (OleLoadPicturePath): Ditto.
8189         (OleSavePictureFile): Ditto.
8190
8191 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8192
8193         * include/objbase.h (CoAddRefServerProcess): Add prototype.
8194         (CoAddReleaseServerProcess): Ditto.
8195         (CoResumeClassObjects): Ditto.
8196         (CoSuspendClassObjects): Ditto.
8197         * include/oleauto.h (V_I1): Define.
8198         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
8199
8200 2003-03-01  Heiko Gerdau  <hg@technosis.de>
8201
8202         * include/oleidl.h (USERCLASSTYPE): Add enum.
8203         * include/ocidl.h (IObjectWithSite): Add interface.
8204
8205 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
8206
8207         Fixup UNICODE thinko in 2003-02-22 patch.
8208         * include/wingdi.h (AddFontMemResourceEx): Add.
8209         (RemoveFontMemResourceEx): Ditto.
8210         (AddFontMemResourceEx[AW]): Remove.
8211         (RemoveFontMemResourceEx[AW]): Ditto
8212         * lib/gdi32.def: (AddFontResourceEx): Add.
8213         (RemoveFontMemResourceEx): Ditto.
8214         (AddFontMemResourceEx[AW]): Remove.
8215         (RemoveFontResourceEx[AW]): Ditto.
8216
8217 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
8218
8219         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
8220         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
8221
8222 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
8223
8224         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
8225         (RemoveFontMemResourceEx[AW]): Ditto
8226         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
8227         (RemoveFontMemResourceEx[AW]): Ditto.
8228
8229 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
8230
8231         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
8232         (NtCurrentTeb): Remove.
8233
8234 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8235
8236         * include/wsahelp.h: Remove ';' after closing
8237         #ifdef __cplusplus brace.
8238         * include/ws2spi.h: Likewise.
8239
8240 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8241
8242         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8243         (GlobalMemoryStatusEx): Add prototype.
8244         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8245
8246 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8247
8248         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8249
8250 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8251
8252         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8253         (RemoveFontResourceEx[AW]): Ditto
8254         (FR_PRIVATE): Define.
8255         (FR_NOT_ENUM): Define.
8256         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8257         (RemoveFontResourceEx[AW]): Ditto.
8258
8259 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8260
8261         * include/w32api.h: Increment version to 2.3.
8262         * Makefile.in: Ditto.
8263
8264 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8265
8266         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8267         (Ke386QueryToAccessMap): Ditto.
8268         (Ke386SetIoAccessMap): Ditto.
8269         Thanks to Marcel Telka <telka@users.sf.net>
8270         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8271         * include/security.h: Include secext.h.
8272         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8273         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8274         * include/GL/gl.h: Remove include of glext.h.
8275         Thanks to Greg Couch <gregcouch@users.sf.net>
8276
8277 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8278
8279         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8280         using GUID_DEFINED instead.
8281         * include/sqltypes.h: Ditto.
8282         * include/winnt.h: Ditto.
8283         * include/ddk/scsiwmi.h: Ditto.
8284
8285 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8286
8287         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8288         prototypes.
8289         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8290
8291 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8292
8293         * include/commctrl.h (TCM_*): Add missing defines.
8294
8295 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8296             Danny Smith  <dannysmith@users.sourceforge.net>
8297
8298         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8299         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8300         for (_WIN32_IE >= 0x0400).
8301         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8302         fields for (_WIN32_IE >= 0x0400).
8303
8304 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8305
8306         * include/winbase.h (CreateFiber): Change first parameter
8307         to SIZE_T.
8308         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8309         if (_WIN32_WINNT >= 0x0500).
8310
8311 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8312
8313         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8314         Add missing typedefs.
8315         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8316         prototypes.
8317         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8318
8319 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8320
8321         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8322         define.
8323         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8324
8325 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8326
8327         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8328         define.
8329         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8330         definition.
8331         (WAIT_FAILED): Cast to DWORD.
8332         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8333         definition.
8334
8335 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8336
8337         * include/winerror.h: Protect against multiple
8338         definition of WSA* error codes.
8339         * include/winsock.h: Likewise.
8340         * include/winsock2.h: Likewise.
8341
8342 2003-01-27  Bang Dong-Heui
8343             Bang Jun-Young  <junyoung@netbsd.org>
8344
8345         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8346         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8347         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8348
8349
8350 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8351
8352         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8353         (WINVER >= 0x501).
8354
8355 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8356
8357         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8358         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8359         fields for (WINVER >= 0x501).
8360
8361 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8362
8363         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8364         Add stubs.
8365         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8366         options.
8367
8368 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8369
8370         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8371         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8372
8373 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8374
8375         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8376         SE_REGISTRY_WOW64_32KEY.
8377         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8378
8379 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8380
8381         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8382         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8383         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8384
8385 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8386
8387         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8388
8389 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8390
8391         * lib/dxguid.c: Don't #include <objbase.h>.
8392         * include/unknwn.h: Partially revert change of 2002-12-26.
8393         Don't include <ole2.h>.
8394
8395 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8396
8397         * lib/dinput.c: Don't #include <objbase.h>.
8398
8399 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8400
8401         * include/windows.h (ole2.h):Do #include for
8402         __WATCOMC__.
8403
8404 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8405
8406         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8407         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8408         definition.
8409         (WHEEL_PAGESCROLL): Likewise.
8410         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8411
8412 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8413
8414         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8415         (WHEEL_PAGESCROLL): Add define.
8416
8417 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8418
8419         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8420         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8421         compatability. Add RECT field. Add UNICODE mappings for new
8422         names.
8423         (tagNMREBARCHEVRON): Add struct and typedefs for
8424         _WIN32_IE >= 0x0500.
8425
8426 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8427
8428         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8429         (LVHITTESTINFO): Likewise.
8430
8431         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8432         (GRADIENT_RECT): Likewise.
8433
8434 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8435
8436         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8437         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8438         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8439         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8440         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8441         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8442         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8443         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8444         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8445         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8446         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8447         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8448         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8449         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8450         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8451         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8452         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8453         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8454         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8455         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8456         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8457         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8458         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8459         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8460         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8461         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8462         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8463         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8464         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8465         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8466         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8467         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8468         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8469         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8470         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8471         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8472         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8473         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8474         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8475         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8476         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8477         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8478         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8479         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8480         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8481         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8482         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8483         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8484         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8485         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8486         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8487         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8488         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8489         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8490         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8491         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8492         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8493         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8494         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8495         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8496         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8497         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8498         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8499         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8500         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8501         Add missing error codes.
8502
8503 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8504
8505         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8506         asm code.
8507         (GetFiberData): Likewise.
8508
8509 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8510
8511         * include/winnt.h (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/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8518         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8519         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8520         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8521         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8522         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8523         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8524         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8525         error codes.
8526         Re-sort codes.
8527
8528 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8529
8530         * include/winspool.h (PRINTER_INFO_6): Add.
8531         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8532
8533 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8534
8535         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8536
8537         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8538         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8539         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8540         Add stubs.
8541
8542 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8543
8544         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8545         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8546
8547 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8548
8549         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8550
8551 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8552
8553         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8554         VIETNAMESE_CHARSET): Remove duplicate defines.
8555         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8556
8557 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8558
8559         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8560         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8561
8562 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8563
8564         * include/unknwn.h: Include windows.h and ole2.h before header
8565         guard to avoid circular inclusion of COM headers.
8566
8567 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8568
8569         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8570         ReuseDDElParam): Use __WIN64 compatible typedefs.
8571
8572 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8573
8574         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8575         lpInheritProperty member const.
8576         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8577         const.
8578
8579 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8580
8581         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8582         COM_NO_WINDOWS_H.
8583         * include/unknwn.h: Ditto.
8584
8585 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8586
8587         * include/imm.h (ImmGetCompositionFont[AW],
8588         ImmSetCompositionFont[AW]): Add NOGDI guard.
8589
8590 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8591
8592         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8593         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8594         before using.
8595         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8596         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8597         definition.
8598         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8599         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8600         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8601         definition.
8602         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8603         (LPCGUID): Likewise.
8604         * include/ddk/tdi.h: Close "Listen flags" comment.
8605         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8606         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8607         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8608         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8609         * include/ddk/win2k.h: Likewise.
8610         * include/ddk/winddi.h: Likewise.
8611         * include/ddk/winddk.h: Likewise.
8612         * include/ddk/winnt4.h: Likewise.
8613         * include/ddk/ws2san.h: Likewise.
8614         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8615         * include/ddk/video.h: Don't process rest of file ifdef
8616         __WINDDI_H.
8617         * include/ddk/winddi.h: Don't process rest of file ifdef
8618         __VIDEO_H.
8619         * include/ddk/usb.h: Don't process rest of file ifdef
8620         __USBDI_H.
8621         * include/ddk/usbdi.h: Don't process rest of file ifdef
8622         __USB_H.
8623         * include/ddk/usbcamdi.h: Don't process rest of file if
8624         !defined(__USB_H) && !defined(__USBDI_H)
8625
8626 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8627
8628         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8629         prototypes.
8630         * include/winuser.h (GetAncestor) Add prototype.
8631         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8632         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8633         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8634         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8635         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8636         defines.
8637         * lib/user32.def (GetAncestor@8): Add stub.
8638
8639 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8640
8641         * include/windows.h: Guard inclusion of wingdi.h,
8642         commdlg.h, winspool.h, ole2.h with NOGDI.
8643         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8644         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8645         Guard with NOGDI.
8646
8647 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8648
8649         * include/oleacc.h (SELFLAG_*): Change to enum.
8650
8651 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8652
8653         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8654         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8655
8656 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8657
8658         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8659         to UINT.
8660         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8661
8662 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8663
8664         * include/winuser.h (AllowSetForegroundWindow,
8665         LockSetForegroundWindow): Add prototypes.
8666         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8667         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8668         * lib/winuser.def (AllowSetForegroundWindow,
8669         LockSetForegroundWindow): Add stubs.
8670
8671 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8672
8673         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8674         UNICODE mappings.
8675         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8676         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8677         compatability. Add lParam field. Add UNICODE mappings for new
8678         names.
8679
8680 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8681
8682         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8683         Wrap with pshpack2.h/poppack.h to correct alignment.
8684
8685 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8686
8687         * include/commctrl.h (LVBKIF_*): Add defines.
8688         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8689         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8690         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8691         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8692         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8693         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8694         (ListView_GetBkImage): Add define.
8695         (ListView_SetBkImage): Add define.
8696         (LVBKIMAGE): Add structures and typedefs.
8697
8698 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8699
8700         * include/w32api.h: Increment to version 2.2
8701         * Makefile.in: Ditto.
8702
8703 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8704
8705         * lib/Makefile.in (dist, install): Correct the install destinations.
8706         * lib/ddk/Makefile.in (dist, install): Ditto.
8707
8708 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8709
8710         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8711         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8712         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8713         in definitions.
8714         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8715         IID_IOleControlSite89): Remove.
8716
8717 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8718
8719         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8720         (IID_IStdMarshalInfo): Ditto.
8721
8722 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8723
8724         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8725         (IID_IPersistStorage): Ditto.
8726
8727 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8728
8729         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8730         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8731         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8732         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8733         Correct definitions.
8734
8735 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8736
8737         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8738         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8739         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8740         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8741         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8742         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8743         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8744         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8745         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8746         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8747         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8748         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8749         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8750         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8751         xfilter.h): Change comment to refer w32api package, not MinGW.
8752
8753 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8754
8755         * include/ddk/ntddk.h: Include winnt.h as system header.
8756
8757 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8758
8759         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8760         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8761         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8762         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8763         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8764         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8765         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8766         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8767         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8768         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8769         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8770         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8771         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8772         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8773         xfilter.h): Fix typo in disclaimer comment.
8774
8775 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8776
8777         * include/exdisp.h: Include oaidl.h as system header.
8778
8779 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8780
8781         * include/w32api.h (__W32API_VERSION): Fix.
8782
8783 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8784
8785         * lib/uuid.c (IID_ICatInformation): Correct definition.
8786
8787 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8788
8789         * include/oleauto.h (DeregisterTypeLib): Remove.
8790         (UnRegisterTypeLib): Add prototype.
8791
8792 2002-11-07  Christopher January  <chris@atomice.net>
8793
8794         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8795
8796 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8797
8798         * include/winnt.h (VerSetConditionMask): Add prototype.
8799         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8800
8801 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8802
8803         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8804         definitions and ANSI/UNICODE mappings.
8805         Cleanup whitespace.
8806
8807 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8808
8809         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8810         * configure.in: Ditto.
8811         * lib/Makefile.in: Ditto.
8812         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8813         autoconf-2.53.
8814         * configure: Regenerate.
8815
8816 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8817
8818         * include/windows.h: Don't include basetyps.h.
8819         * include/objfwd.h: Do include basetyps.h.
8820
8821 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8822
8823         * include/objbase.h: Include rpc.h and rpcndr.h
8824         before header guard.
8825
8826 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8827
8828         * include/olectl.h (PROPPAGEINFO): Change type of
8829         field cb to ULONG.
8830
8831 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8832
8833         * lib/ntdll.def (RtlAcquireResourceExclusive,
8834         RtlAcquireResourceShared, RtlDeleteResource,
8835         RtlInitializeResource, RtlReleaseResource,
8836         RtlTimeToSecondsSince1970) : Added missing exports.
8837
8838 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8839
8840         * include/oleacc.h: New file.
8841         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8842         (OBJID_*) Add defines.
8843         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8844         * lib/test.c: Include oleacc.h.
8845
8846 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8847
8848         * include/ddk: New subdir.
8849         * lib/ddk: Ditto.
8850         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8851         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8852         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8853         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8854         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8855         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8856         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8857         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8858         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8859         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8860         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8861         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8862         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8863         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8864         xfilter.h): New files.
8865         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8866         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8867         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8868         win32k.def): Ditto.
8869
8870 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8871
8872         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8873         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8874         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8875         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8876         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8877         RtlAddAccessAllowedAce, RtlCreateAcl,
8878         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8879         RtlGetAce, RtlGetControlSecurityDescriptor,
8880         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8881         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8882         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8883         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8884         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8885         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8886         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8887         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8888         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8889         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8890         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8891         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8892         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8893
8894 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8895
8896         *include/windef.h (WPARAM): Update typedef.
8897         (LPARAM): Ditto.
8898         (LRESULT): Ditto.
8899
8900 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8901
8902         * include/shlobj.h (CSIDL_*): Add defines.
8903
8904 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8905
8906         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8907         has been included first.
8908
8909 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8910
8911         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8912         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8913         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8914
8915 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8916
8917         * include/winuser.h (DS_SHELLFONT): Define.
8918
8919 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8920
8921         * include/winnt.h (VER_SUITE_BLADE): Define.
8922
8923 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8924
8925         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8926         Add _WIN32_IE guard. Correct prototype for wide version.
8927         (SHGetFolderPath): Add comment on shfolder.dll.
8928         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8929         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8930
8931 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8932
8933         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8934         * lib/shfolder.def: New file.
8935
8936 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8937
8938         * include/winsock.h (timeval): Guard struct and associated
8939         macros with _TIMEVAL_DEFINED.
8940         * include/winsock2.h (timeval): Likewise.
8941
8942 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8943
8944         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8945         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8946         SHCreateShellItem,SHEmptyRecycleBin[AW],
8947         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8948         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8949         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8950         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8951         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8952         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8953         SHLoadNonloadedIconOverlayIdentifiers,
8954         SHOpenFolderAndSelectItems,SHParseDisplayName,
8955         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8956         SHSetLocalizedName,SHSetUnreadMailCountW,
8957         SHUpdateRecycleBinIcon: Add missing stubs.
8958
8959 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8960
8961         * include/windef.h (WINVER): Add documentation.
8962         (_WIN32_WINNT): Ditto.
8963         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8964
8965 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8966
8967         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8968
8969 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8970
8971         * include/winbase.h (AllocateUserPhysicalPages,
8972         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8973         FreeUserPhysicalPages): Add prototypes.
8974         * lib/kernel32.def: Add function stubs for above.
8975
8976 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8977
8978         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8979         Add WINVER guards for dialog box command id defines.
8980
8981 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8982
8983         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8984
8985 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8986
8987         * include/wincon.h: Define GetConsoleWindow(void).
8988
8989 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8990
8991         * include/w32api.h: Increment version to 2.1.
8992         * Makefile.in: Ditto.
8993
8994 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8995
8996         * include/winsock2.h (SOCKET_ADDRESS): Define if
8997         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8998         (CSADDR_INFO): Ditto.
8999         (nspapi.h) : Don't include. Removed FIXME comment.
9000         * include/nspapi.h (SOCKET_ADDRESS) Only define if
9001         __CSADDR_T_DEFINED is not defined.
9002         (CSADDR_INFO): Ditto.
9003         (BLOB): Add structure and typedef if not already defined.
9004         (NS_*): Add defines.
9005         (SERVICE_*): Ditto.
9006         (SERVICE_ADDRESS): Add structure and typedefs.
9007         (SERVICE_ADDRESSES): Ditto.
9008         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
9009         (LPSERVICE_ASYNC_INFO): Add typedef.
9010         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
9011         mappings.
9012         * include/wsipx.h: New file.
9013         * include/svcguid.h: New file.
9014         * lib/test.c: Include wspix.h and svcguid.h.
9015
9016 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9017
9018         * include/wsahelp.h: New file.
9019         * lib/test.c: Include wsahelp.h.
9020
9021 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
9022
9023         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
9024         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
9025
9026 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9027
9028         * include/ws2spi.h: Modify comment about being part of
9029         mingw32 package.
9030         (winsock2.h): Change "" to <>.
9031
9032 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9033
9034         * include/ws2spi.h: New file.
9035         * lib/test.c: Include ws2spi.h.
9036
9037 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9038
9039         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
9040         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
9041         functions.
9042
9043 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9044
9045         * include/winuser.h (CURSOR_SHOWING) Add define.
9046         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
9047
9048 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9049
9050         * include/winerror.h: Cast OLE error codes to HRESULT.
9051         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
9052
9053 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9054
9055         * include/wincrypt.h (ALG_*): Add defines.
9056         (CALG_*): Ditto.
9057         (CRYPT_*): Ditto.
9058         (PP_*): Ditto.
9059         (PROV_*): Ditto.
9060         (PRIVATEKEYBLOB): Add define.
9061
9062 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
9063
9064         * include/shlobj.h (SHGetFolderPath): Add define.
9065         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
9066         (SHGetFolderPath): Ditto.
9067
9068 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9069
9070         * include/commdlg.h: Don't include COM headers or use
9071         COM-dependent symbols if __OBJC__.
9072
9073 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9074
9075         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
9076         Add prototypes.
9077
9078 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
9079
9080         * include/shellapi.h (FOF_NOERRORUI): Add define.
9081
9082 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
9083
9084         * include/objidl.h (IEnumMoniker): Put 'interface' back.
9085
9086 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
9087
9088         * include/objidl.h (IEnumMoniker): Correct declaration.
9089
9090 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
9091
9092         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
9093
9094 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
9095
9096         * include/commctrl.h: Whitespace change.
9097
9098 2002-08-09  Lars Munch  <lars@segv.dk>
9099
9100         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
9101         struct name _TVHITTESTINFO and typedefs and add defines for
9102         backward compatability.
9103         (ListView_SetExtendedListViewStyleEx): Add macro.
9104
9105 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
9106
9107         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
9108         Add prototypes.
9109         * lib/msimg32.def: New file, with stubs for above.
9110
9111 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
9112
9113         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
9114         GetFileSizeEx, SetFilePointerEx): Add prototypes.
9115         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
9116         and UNICODE mappings.
9117
9118 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9119
9120         * include/winbase.h (ReadFileScatter, WriteFileGather):
9121         Change second parameter to pointer.
9122
9123 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
9124
9125         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
9126         UNICODE mappings.
9127         * lib/wininet.def: Regenerate.
9128
9129 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9130
9131         * include/windef.h (PVOID): Move typedef to...
9132         * include/winnt: ...here.
9133         (PVOID64): New typedef.
9134
9135         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
9136         * include/winbase.h (ReadFileScatter, WriteFileGather):
9137         Add prototypes.
9138
9139         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
9140         (PROCESSOR_INTEL_IA64): Add define.
9141
9142 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9143
9144         * include/oleidl.h (MK_ALT): Define.
9145
9146 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9147
9148         * include/exdisp.h: New file.
9149         * include/exdispid.h: New file.
9150         * include/mshtml.h: New file.
9151         * lib/test.c: #include exdisp.h and mshtml.h
9152         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
9153         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
9154         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
9155         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
9156         New GUIDs.
9157
9158 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9159
9160         * include/docobj.h: New file.
9161         * include/idispids.h: New file.
9162         * include/objidl.h (IID_IMoniker): Declare.
9163         * include/ocidl.h (READYSTATE): New enum.
9164         (IOleInPlaceSiteEx): New interface.
9165         * include/olectlid.h (IID_IEnumSTATSTG): New interface
9166         identifier.
9167         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
9168         IOleInPlaceSite): New interfaces.
9169         * lib/test.c: #include docobj.h,idispids.h,
9170
9171 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9172
9173         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
9174         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
9175
9176 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
9177
9178         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
9179         * include/commdlg.h: Likewise.
9180
9181 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
9182
9183         * include/oleauto.h (V_UNION): Correct definition for case of
9184         NONAMELESSUNION:
9185         (V_VT): Likewise.
9186
9187 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
9188
9189         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
9190         not bool, for C as well as C++.
9191
9192 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
9193
9194         * include/shlwapi.h: New file.
9195         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
9196         Victor Porton  <porton@narod.ru> for contributions.
9197         * lib/shlwapi.def: New file.
9198         * lib/test.c: #include shlwapi.h.
9199
9200 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
9201
9202         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
9203         character.
9204         * include/winsock2.h (struct sockaddr): Use __int64 instead of
9205         long long.
9206         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
9207         does not need external *Fiber library functions.
9208
9209 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9210
9211         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
9212         definition.
9213         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
9214         avoid compile error when already defined.
9215
9216 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
9217
9218         * include/winuser.h (WM_MENURBUTTONUP): Add define.
9219
9220 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9221
9222         * include/commdlg.h: Define CDN_* notification message constants
9223         as UINT.
9224
9225 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
9226
9227         * include/commctrl.h: Define notification message constants for
9228         NMHDR.code as UINT.
9229
9230 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
9231
9232         * include/ddeml.h (MH_*) Add defines.
9233         (MONHSZSTRUCT): Add structure and typedefs.
9234         (MONLINKSTRUCT): Ditto.
9235         (MONCONVSTRUCT): Ditto.
9236         (MONCBSTRUCT): Ditto.
9237         (MONERRSTRUCT): Ditto.
9238         (MONMSGSTRUCT): Ditto.
9239         * include/windef.h: Don't define __cdecl or _cdecl for
9240         __WATCOM__.
9241         Don't define _export or __export for __WATCOM__.
9242         * include/windows.h (imm.h): #include.
9243         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9244
9245 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9246
9247         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9248         rpcndr.h.
9249
9250 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9251
9252         * include/winbase.h (OpenThread): Add prototype.
9253         * lib/kernel32.def (OpenThread): Add symbol.
9254
9255 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9256
9257         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9258
9259 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9260
9261         * include/rpc.h: Conditionally include <windows.h> before
9262         header guard.
9263         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9264         header guard.
9265
9266 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9267
9268         * include/commctrl.h (WC_*): Remove some duplicate defines.
9269
9270 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9271
9272         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9273         UNICODE mappings.
9274         (IPM*): Add defines.
9275         (IPN_*): Add defines.
9276         (NMIPADDRESS): Add structure and typedefs.
9277         (MAKEIPADDRESS): Add macro.
9278         (MAKEIPRANGE): Add macro.
9279         (FIRST_IPADDRESS): Add macro.
9280         (SECOND_IPADDRESS): Add macro.
9281         (THIRD_IPADDRESS): Add macro.
9282         (FOURTH_IPADDRESS): Add macro.
9283
9284 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9285
9286         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9287
9288 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9289
9290         * include/winbase.h (WINBASEAPI): Don't define if prior
9291         definition.
9292
9293         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9294         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9295         PARTITION_UNIX): Add defines.
9296         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9297         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9298         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9299         (IsContainerPartition): Add macro.
9300
9301 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9302
9303         * include/commctrl.h: (CBEIF_*): Add defines.
9304         (CBEN_*): Add defines and UNICODE mappings
9305         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9306         (CBEMAXSTRLEN): Add define.
9307         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9308         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9309         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9310         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9311
9312 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9313
9314         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9315         union member _VARIANT_BOOL bool.
9316
9317 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9318
9319         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9320
9321 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9322
9323         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9324         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9325         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9326         Add typedefs.
9327         (CCHAR): Correct typedef.
9328         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9329         Add defines.
9330
9331 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9332
9333         * README.w32api: Correct spelling error.
9334
9335 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9336
9337         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9338         INPUT_HARDWARE): Add defines.
9339         (HDEVNOTIFY): Add typedef.
9340         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9341         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9342         typedefs.
9343         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9344         GetClassInfoEx[AW],GetKeyboardLayoutList,
9345         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9346         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9347         RegisterClassEx[AW]): Correct prototypes.
9348
9349 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9350
9351         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9352         prototypes.
9353         * include/winsvc.h (StartServiceW): Correct prototype.
9354         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9355         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9356         GetTickCount,InterlockedExchangeAdd,
9357         WritePrivateProfileStruct[AW]: Correct prototypes.
9358         (GetEnvironmentStrings): Correct mapping to
9359         GetEnvironmentStringsA.
9360         * include/winver.h (VerQueryValueA,VerQueryValueW):
9361         Correct prototypes.
9362         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9363         prototype.
9364         * include/winreg.h (RegQueryMultipleValues[AW],
9365         RegQueryValueEx[AW]):Correct prototypes.
9366         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9367         PPOLYTEXTW): Add typedefs.
9368         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9369         structures and typedefs.
9370         (MM_MAX_NUMAXES): Add define.
9371         (EnumFontsW,GetEnhMetaFilePixelFormat,
9372         wglGetLayerPaletteEntries): Correct prototypes.
9373         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9374         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9375         RPC_S_SEND_INCOMPLETE): Add defines.
9376
9377 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9378
9379         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9380         Add defines.
9381
9382 2002-06-16  Egor Duda  <deo@logos-m.ru>
9383
9384         * include/ntdll.h: New file.
9385         * lib/ntdll.def: Add NtShutdownSystem.
9386
9387 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9388
9389         * lib/dinput.def (DirectInputCreateEx): Add stub.
9390         * lib/ntdll.def: New file.
9391
9392 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9393
9394         * include/w32api.h: Change to version 2.0 to reflect the change
9395         in the license.
9396         * README: Renamed.
9397         * README.w32api: Renamed from README.  Modified license to remove
9398         the restriction of notifying the author based on the fact that the
9399         author is unreachable at the notified address.
9400         * Makefile.in (VERSION): Change to 2.0.
9401
9402 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9403
9404         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9405         * Makefile.in (bindist): Correct the MinGW distribution.
9406
9407 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9408
9409         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9410         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9411
9412 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9413
9414         * lib/test.c: #include comcat.h.
9415
9416 2002-06-13  John K. Hohm  <jhohm@acm.org>
9417
9418         * include/comcat.h: New file.
9419
9420 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9421
9422         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9423         (GETTEXTEX): Add structure definition.
9424
9425 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9426
9427         * include/windows.h (ole2.h): #include if !__OBJC__ and
9428         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9429
9430 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9431
9432         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9433
9434 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9435
9436         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9437         PACCESS_DENIED_ACE): Add typedefs.
9438
9439 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9440
9441         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9442
9443 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9444
9445         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9446
9447 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9448
9449         * include/windef.h: Fix typo in last change.
9450
9451 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9452
9453         * include/windef.h: Add no-op __try, __except, __finally
9454         defines from ...
9455         * include/excpt.h: Remove file.
9456         * include/windows.h: Don't include excpt.h.
9457
9458 2002-05-30  Christopher January  <chris@atomice.net>
9459
9460         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9461         Add missing typedefs.
9462
9463 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9464
9465         * include/w32api.h: Increment version to 1.5
9466         * Makefile.in: Ditto.
9467
9468
9469 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9470
9471         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9472         LP[W]STR with LPC[W]STR.
9473         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9474         Clean up whitespace.
9475
9476 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9477
9478         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9479
9480 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9481
9482         * Makefile.in: Increment VERSION to 1.4.
9483         (conf_prefix): New variable.
9484         (bindist): Modify target to use $(conf_prefix).
9485
9486 2002-05-20  Philip Aston  <philipa@mail.com>
9487
9488         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9489
9490 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9491
9492         * include/lmaccess.h: (NetAccess*, NetGroup*,
9493         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9494         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9495
9496 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9497
9498         * include/commctrl.h (ImageList_DragShowNolock): Remove
9499         conflicting redeclaration.
9500
9501 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9502
9503         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9504         STRICT and related defines to ...
9505         * include/windef.h: Here.
9506
9507 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9508
9509         * include/winsock2.h (int32): Remove typedef.
9510         (SERVICETYPE): Add typedef.
9511         (struct _flowspec):Revise struct definition,  Comment
9512         on types used for members.
9513
9514 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9515
9516         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9517         more defines added in earlier change.
9518         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9519
9520 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9521
9522         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9523         added in last change.
9524
9525 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9526
9527         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9528         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9529
9530 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9531
9532         * include/commctrl.h (SNDMSG): Define and use throughout
9533         in other macros instead of SendMessage.
9534         * include/commdlg.h (SNDMSG): Ditto.
9535
9536 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9537
9538         * include/GL/gl.h: New file.
9539         * include/GL/glext.h: Ditto.
9540         * include/GL/glu.h: Ditto.
9541
9542 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9543
9544         * include/w32api.h: Increment version.
9545         * Makefile.in: Ditto.
9546
9547 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9548
9549         * Makefile.in (bindist): Use * instead of . for file list for tar
9550         command.
9551
9552 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9553
9554         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9555
9556 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9557
9558         * include/objidl.h (IRunningObjectTable.Register): Correct
9559         prototype.
9560         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9561         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9562
9563 2002-03-31  Victor Porton  <porton@narod.ru>
9564
9565         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9566
9567 2002-03-29  David Robinow  <drobinow@yahoo.com>
9568
9569         * include/wingdi.h (SetPixelFormat): Correct prototype.
9570
9571 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9572
9573         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9574
9575 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9576
9577         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9578         Add defines.
9579
9580 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9581
9582         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9583         * include/shlobj.h (IContextMenu2): Put methods in right order.
9584         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9585         CINTERFACE before defining.
9586
9587 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9588
9589         * include/accctrl.h: Add #pragma GCC system_header
9590         if __GNUC__ >= 3.
9591         * include/aclapi.h: Same.
9592         * include/basetsd.h: Same.
9593         * include/basetyps.h: Same.
9594         * include/cderr.h: Same.
9595         * include/cguid.h: Same.
9596         * include/commctrl.h: Same.
9597         * include/commdlg.h: Same.
9598         * include/cpl.h: Same.
9599         * include/cplext.h: Same.
9600         * include/custcntl.h: Same.
9601         * include/dbt.h: Same.
9602         * include/dde.h: Same.
9603         * include/ddeml.h: Same.
9604         * include/dlgs.h: Same.
9605         * include/excpt.h: Same.
9606         * include/httpext.h: Same.
9607         * include/imagehlp.h: Same.
9608         * include/imm.h: Same.
9609         * include/initguid.h: Same.
9610         * include/intshcut.h: Same.
9611         * include/ipexport.h: Same.
9612         * include/iphlpapi.h: Same.
9613         * include/ipifcons.h: Same.
9614         * include/iprtrmib.h: Same.
9615         * include/iptypes.h: Same.
9616         * include/isguids.h: Same.
9617         * include/largeint.h: Same.
9618         * include/lm.h: Same.
9619         * include/lmaccess.h: Same.
9620         * include/lmalert.h: Same.
9621         * include/lmapibuf.h: Same.
9622         * include/lmat.h: Same.
9623         * include/lmaudit.h: Same.
9624         * include/lmbrowsr.h: Same.
9625         * include/lmchdev.h: Same.
9626         * include/lmconfig.h: Same.
9627         * include/lmcons.h: Same.
9628         * include/lmerr.h: Same.
9629         * include/lmerrlog.h: Same.
9630         * include/lmmsg.h: Same.
9631         * include/lmremutl.h: Same.
9632         * include/lmrepl.h: Same.
9633         * include/lmserver.h: Same.
9634         * include/lmshare.h: Same.
9635         * include/lmsname.h: Same.
9636         * include/lmstats.h: Same.
9637         * include/lmsvc.h: Same.
9638         * include/lmuse.h: Same.
9639         * include/lmuseflg.h: Same.
9640         * include/lmwksta.h: Same.
9641         * include/lzexpand.h: Same.
9642         * include/mapi.h: Same.
9643         * include/mciavi.h: Same.
9644         * include/mcx.h: Same.
9645         * include/mmsystem.h: Same.
9646         * include/mswsock.h: Same.
9647         * include/nb30.h: Same.
9648         * include/nddeapi.h: Same.
9649         * include/nspapi.h: Same.
9650         * include/ntdef.h: Same.
9651         * include/ntsecapi.h: Same.
9652         * include/ntsecpkg.h: Same.
9653         * include/oaidl.h: Same.
9654         * include/objbase.h: Same.
9655         * include/objfwd.h: Same.
9656         * include/objidl.h: Same.
9657         * include/odbcinst.h: Same.
9658         * include/ole.h: Same.
9659         * include/ole2.h: Same.
9660         * include/ole2ver.h: Same.
9661         * include/oleauto.h: Same.
9662         * include/olectl.h: Same.
9663         * include/olectlid.h: Same.
9664         * include/oledlg.h: Same.
9665         * include/oleidl.h: Same.
9666         * include/pbt.h: Same.
9667         * include/prsht.h: Same.
9668         * include/psapi.h: Same.
9669         * include/rapi.h: Same.
9670         * include/ras.h: Same.
9671         * include/raserror.h: Same.
9672         * include/rassapi.h: Same.
9673         * include/regstr.h: Same.
9674         * include/richedit.h: Same.
9675         * include/richole.h: Same.
9676         * include/rpc.h: Same.
9677         * include/rpcdce.h: Same.
9678         * include/rpcdce2.h: Same.
9679         * include/rpcdcep.h: Same.
9680         * include/rpcndr.h: Same.
9681         * include/rpcnsi.h: Same.
9682         * include/rpcnsip.h: Same.
9683         * include/rpcnterr.h: Same.
9684         * include/rpcproxy.h: Same.
9685         * include/schannel.h: Same.
9686         * include/schnlsp.h: Same.
9687         * include/scrnsave.h: Same.
9688         * include/security.h: Same.
9689         * include/setupapi.h: Same.
9690         * include/shellapi.h: Same.
9691         * include/shlguid.h: Same.
9692         * include/shlobj.h: Same.
9693         * include/sql.h: Same.
9694         * include/sqlext.h: Same.
9695         * include/sqltypes.h: Same.
9696         * include/sqlucode.h: Same.
9697         * include/sspi.h: Same.
9698         * include/subauth.h: Same.
9699         * include/tlhelp32.h: Same.
9700         * include/unknwn.h: Same.
9701         * include/userenv.h: Same.
9702         * include/w32api.h: Same.
9703         * include/winbase.h: Same.
9704         * include/wincon.h: Same.
9705         * include/wincrypt.h: Same.
9706         * include/windef.h: Same.
9707         * include/windows.h: Same.
9708         * include/windowsx.h: Same.
9709         * include/winerror.h: Same
9710         * include/wingdi.h: Same.
9711         * include/wininet.h: Same.
9712         * include/winioctl.h: Same.
9713         * include/winnetwk.h: Same.
9714         * include/winnls.h: Same.
9715         * include/winnt.h: Same.
9716         * include/winperf.h: Same.
9717         * include/winreg.h: Same.
9718         * include/winresrc.h: Same.
9719         * include/winsock.h: Same.
9720         * include/winsock2.h: Same.
9721         * include/winspool.h: Same.
9722         * include/winsvc.h: Same.
9723         * include/winuser.h: Same.
9724         * include/winver.h: Same.
9725         * include/ws2tcpip.h: Same.
9726         * include/wsnetbs.h: Same.
9727         * include/wtypes.h: Same.
9728         * include/zmouse.h: Same.
9729         * include/mapi.h: Change header guard name to _MAPI_H  for
9730         consistency.
9731
9732 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9733
9734         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9735         Remove unnecessary inclusion of <wtypes.h>.
9736         * ChangeLog: Fix omission of name in recent entries.
9737
9738 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9739
9740         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9741
9742 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9743
9744         * include/mswsock.h: Group winsock2 dependants
9745         together and protect with #ifdef _WINSOCK2_H.
9746         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9747         has been included.
9748
9749 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9750
9751         * include/mswsock.h (TP_*): Add new defines.
9752         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9753         (WSAMSG): Likewise.
9754         (WSACMSGHDR): Likewise.
9755         (DisconnectEx): Add new prototype.
9756         (WSARecvMsg): Likewise.
9757         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9758
9759 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9760
9761         * ChangeLog: Fix typo in last entry.
9762         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9763         * include/ws2tcpip.h: (IP_*): Add new defines.
9764         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9765         (NI_*): Add getnameinfo constants and bitmasks.
9766         (AI_*): Add getaddrinfo flags.
9767         (EAI_*): Add getaddrinfo error codes.
9768         (ip_mreq_source): Add new structure.
9769         (ip_msfilter): Add new structure.
9770         (IP_MSFILTER_SIZE): Add new macro.
9771         (in_pktinfo): Add new structure.
9772         Add preliminary IPv6 support.
9773         (in6_addr): Add new structure and some defines.
9774         (sockaddr_in6): Add new structure.
9775         (in6addr_any, in6addr_loopback): Declare extern structures.
9776         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9777         initialization macros for above.
9778         (IN6_ARE_ADDR_EQUAL): Define macro.
9779         (IN6_IS_ADDR_*): Define address testing macros.
9780         (socklen_t) Add new typedef.
9781         (ipv6_mreq): Add new structure.
9782         (in6_pktinfo): Same.
9783         (addrinfo): Same.
9784         (freeaddrinfo):Add new prototype.
9785         (getaddrinfo): Same.
9786         (gai_strerror[AW]): Same.
9787         (getnameinfo): Same.
9788         (sockaddr_in6_old): Add structure.
9789         (sockaddr_gen): Add union definition.
9790         (INTERFACE_INFO): Use sockaddr_gen as members.
9791         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9792         with INTERFACE_INFO on NT4 prior to sp4.
9793
9794 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9795
9796         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9797         when selecting winsock interface.
9798         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9799         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9800         Expand FIXME comment.
9801         (WSACOMPLETIONTYPE): Add enum.
9802         (WSACOMPLETION): Add structure and typedefs.
9803         (WSANSPIoctl): Add function prototpe and callback typedef.
9804         (SIO_NSP_NOTIFY_CHANGE): Add define.
9805         (sockaddr_storage): Add structure and typedefs.
9806
9807 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9808
9809         * include/winuser.h (OIC_*): Add resource constants.
9810
9811 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9812
9813         * include/ntsecpkg.h: New file.
9814         * include/schannel.h: New file.
9815         * include/schnlsp.h: New file.
9816         * include/security.h: New file.
9817         * include/sspi.h: New file.
9818         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9819         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9820         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9821         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9822         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9823         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9824         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9825         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9826         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9827         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9828         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9829         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9830         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9831         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9832         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9833         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9834         CERT_CHAIN_CONTEXT): Add missing structures.
9835         (CertCloseStore, CertGetCertificateChain,
9836         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9837         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9838         CertFindCertificateInStore, CertFreeCertificateContext,
9839         CertGetIssuerCertificateFromStore,
9840         CertFindChainInStore): Add missing functions.
9841         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9842         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9843         * lib/crypt32.def: New file.
9844         * lib/secur32.def: Add mising stubs.
9845         * lib/test.c: Include new headers.
9846
9847 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9848
9849         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9850         parameter.
9851
9852 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9853
9854         * lib/test.c: Include mapi.h.
9855         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9856         Thanks to: "Ron"  <ron@debian.org>
9857
9858 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9859
9860         * include/mapi.h: New file.
9861         * lib/mapi.def: Add missing function stubs.
9862
9863 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9864
9865         * include/winuser.h (GetWindowLongPtr[AW],
9866         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9867
9868 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9869
9870         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9871         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9872         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9873         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9874
9875 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9876
9877         * lib/test.c: Include wsnetbs.h.
9878
9879 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9880
9881         * include/wsnetbs.h: New file.
9882
9883 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9884
9885         * include/winnt.h: Remove merge conflict.
9886
9887 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9888
9889         * include/winnt.h (_TCHAR): Add typedefs.
9890
9891 2002-01-25  Tim Hughes  <tjh@delcam.com>
9892
9893         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9894         defines.
9895
9896 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9897
9898         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9899         Add defines.
9900         (LPACCESSTIMEOUT): Add typedef.
9901
9902 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9903
9904         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9905
9906 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9907
9908         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9909         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9910         backward compatability with old names. Update UNICODE mappings.
9911         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9912         for struct _HD_LAYOUT and add defines for backward
9913         compatability with old names.
9914         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9915         parallel chages to typedefs. Add defines for backward
9916         compatability with old names.
9917         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9918
9919 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9920
9921         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9922         hex for readability.
9923
9924 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9925
9926         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9927         and typedefs.
9928         (SPI_SETSCREENSAVERRUNNING): Add define.
9929         (LLKHF_ALTDOWN): Add define.
9930         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9931         PFD_DEPTH_DONTCARE): Add defines.
9932
9933 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9934
9935         * include/objbase.h (CoGetObject): Add prototype.
9936
9937 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9938
9939         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9940         ENUM_REGISTRY_SETTINGS): Add defines.
9941
9942 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9943
9944         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9945         (FILE_ATTRIBUTE_DEVICE): Add define.
9946
9947 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9948
9949         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9950
9951 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9952
9953         * ChangeLog: correct date in last entry.
9954
9955 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9956
9957         * include/winuser.h (MONITORENUMPROC): Add typedef.
9958         (EnumDisplayMonitors): Add prototype.
9959         * lib/user32.def (EnumDisplayMonitors): Add stub.
9960
9961 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9962
9963         * include/ntsecapi.h:  Fixed missing void parameter type in some
9964         prototypes.
9965         * include/objbase.h: Ditto.
9966         * include/rapi.h: Ditto.
9967         * include/rpc.h: Ditto.
9968         * include/rpcdce.h: Ditto.
9969         * include/rpcdcep.h: Ditto.
9970         * include/rpcndr.h: Ditto.
9971         * include/rpcnsip.h: Ditto.
9972         * include/rpcproxy.h: Ditto.
9973         * include/windef.h: Ditto.
9974
9975 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9976
9977         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9978
9979 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9980
9981         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9982          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9983         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9984         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9985         WS_EX_NOINHERITLAYOUT): Add defines.
9986         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9987         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9988         MEM_WRITE_WATCH): Add defines.
9989
9990
9991 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9992
9993         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9994         Add prototype.
9995         (SetCriticalSectionSpinCount): Likewise.
9996
9997 2001-12-30  Guido Serassio  <serassio@libero.it>
9998
9999         * include/winsvc.h: Add EnumServiceStatusEx(),
10000         QueryServiceStatusEx()
10001         & RegisterServiceCtrlHandlerEx()
10002
10003 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
10004
10005         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
10006
10007 2001-12-20  Christopher Faylor  <cgf@redhat.com>
10008
10009         * lib/Makefile.in: Revert inst_installdir definitions to working
10010         versions.
10011
10012 2001-12-17  Guido Serassio  <serassio@libero.it>
10013
10014         * include/winsvc.h: Add ChangeServiceConfig2() &
10015         QueryServiceConfig2() definition
10016
10017 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
10018
10019         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
10020         on MSDN documentation for XP.
10021
10022 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
10023
10024         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
10025         mappings.
10026
10027 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
10028
10029         * include/commctrl.h (ACS_*): Add new defines.
10030         (PGS_*): Ditto.
10031         (CBES_*): Ditto.
10032         (TBSTYLE_*): Ditto.
10033         (TB_*): Ditto.
10034         (TTS_*): Ditto.
10035         (UDS_HOTTRACK): Add define.
10036         (SBT_TOOLTIPS): Ditto.
10037         (TBS_*): Add new defines.
10038         (HDS_*): Ditto.
10039         (LVS_EX_*) Ditto.
10040         (LVKF_*): Ditto.
10041         (TCM_GETEXTENDEDSTYLE): Add define.
10042         (TVS_NOHSCROLL): Ditto.
10043         (TVIF_INTEGRAL): Ditto.
10044         (DTS_SHORTDATECENTURYFORMAT): Ditto.
10045         (TCS_*): Add new defines.
10046         (CBEM_*): Add defines.
10047         (tagNMITEMACTIVATE): Add structure definition and typedefs.
10048         (tagTVITEMEX[AW]: Ditto.
10049         (tagTVINSERTSTRUCT[AW]: Add union member.
10050         * include/winbase.h (VirtualAllocEx): Add prototype.
10051         * include/winuser.h (SS_*): Add new defines.
10052
10053 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10054
10055         * Makefile.in: Increment VERSION.
10056         * include/w32api.h: Ditto.
10057
10058 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10059
10060         * Makefile.in: Increment VERSION.
10061         * include/w32api.h: Ditto.
10062
10063 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
10064
10065         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
10066         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
10067         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
10068         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
10069         SetupDiOpenDevRegKey): Correct function names.
10070
10071 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
10072
10073         * include/winuser.h (IDC_STATIC): Don't define.
10074
10075 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
10076
10077         Cleanup merge between SourceForge and winsup CVS.
10078         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
10079         definitions.
10080         * include/winnt.h (VER_NT*): Remove duplicate defines.
10081         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
10082
10083 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
10084
10085         * include/accctrl.h: Change \r\n to \n.
10086
10087 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
10088
10089         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
10090         Add structure definition.
10091         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
10092         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
10093         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
10094         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
10095         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
10096         UnenableRouter) Declare functions.
10097         * lib/iphlpapi.def: Add function names to import lib.
10098
10099 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
10100
10101         * include/winnt.h (PACCESS_MASK): Add typedef.
10102         * include/aclapi.h: New file.
10103         * include/acctrl.h: New file.
10104         * lib/advapi32.def: Add missing symbols.
10105         * lib/test.c: Add #include <aclapi.h>.
10106
10107 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
10108
10109         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
10110         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
10111         here ...
10112         * include/winnt.h: ... to here.
10113         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
10114         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
10115         and typedefs.
10116         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
10117         Add defines.
10118
10119 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10120
10121         * w32api/include/winnt.h: prepare SSE register support.
10122         (CONTEXT_EXTENDED_REGISTERS): Add new define.
10123         (MAXIMUM_SUPPORTED_EXTENSION): New define.
10124         (struct CONTEXT): ExtendedRegisters field added.
10125
10126 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
10127
10128         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
10129         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
10130         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
10131         tagLASTINPUTINFO ): Define new structures.
10132         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
10133         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
10134         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
10135         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
10136         SetMenuInfo): Add new prototypes.
10137         * lib/user32.def: Add import stubs for above functions.
10138
10139         * include/winuser.h (IDC_STATIC): Protect against prior
10140         definition.
10141
10142 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
10143
10144         * include/winbase.h (OSVERSIONINFOEX): Add definition.
10145         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
10146
10147 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
10148
10149         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
10150         warnings with _AUTHORITY #defines.
10151
10152 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10153
10154         * include/winnt.h (GetCurrentFiber): Create a prototype before the
10155         implementation.
10156         (GetFiberData): Ditto.
10157
10158 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10159
10160         * include/winnt.h: Backout last change.
10161
10162 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
10163
10164         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
10165         GetCurrentFiber: Create a prototype before the implementation.
10166         GetFiberData: Ditto.
10167
10168 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
10169
10170         * include/winuser.h (IDC_STATIC): Add define.
10171         Thanks to: Benoit Laniel.
10172
10173 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
10174
10175         * include/commdlg.h: Include <unknwn.h> rather than local
10176         definition of LPUKNOWN.
10177         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
10178         Emit warning.
10179
10180 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
10181
10182         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
10183         for Watcom.
10184         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
10185         functions of the form 'type * function(...)' in a way compatible
10186         with both Watcom and GCC.
10187         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
10188         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
10189         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
10190         * include/windows.h: Watcom can use anonymous structs/unions.
10191         * include/winnt.h: Watcom can use 64 bit ints.
10192         (GetCurrentFiber): Add another inline definition using
10193         Watcom inline assembly syntax.
10194         (GetFiberData): Likewise.
10195         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
10196         (gethostbyname): Likewise.
10197         (gethostbyaddr}: Likewise.
10198         (getservbyport}: Likewise.
10199         (getservbyname}: Likewise.
10200         (getprotobynumber}: Likewise.
10201         (getprotobyname}: Likewise.
10202         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
10203         (gethostbyname}: Likewise.
10204         (gethostbyaddr}: Likewise.
10205         (getservbyport}: Likewise.
10206         (getservbyname}: Likewise.
10207         (getprotobynumber}: Likewise.
10208         (getprotobyname}: Likewise.
10209         * lib/diinut.c: Correction for Watcom.
10210         * lib/kernel32.c (GetCurrentFiber): Add another definition
10211         using Watcom inline assembly syntax.
10212         (GetFiberData): Likewise.
10213         * lib/scrnsave.c (WinMain): Add break after default:
10214         clause.
10215
10216 2001-11-04  "stefan"  <stefan@lkcc.org>
10217
10218         * include/winnt.h (GetCurrentFiber): Add prototype.
10219         (GetFiberData): Likewise.
10220
10221 2001-11-04  Christopher Faylor  <cgf@redhat.com>
10222
10223         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
10224         parallel invocations.
10225
10226 2001-11-03  Christopher Faylor  <cgf@redhat.com>
10227
10228         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
10229
10230 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10231
10232         * include/basetyps.h (DECLARE_INTERFACE): Don't add
10233         __attribute__((com_interface)) for __GNUC__ >= 3.
10234
10235 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10236
10237         * include/commdlg.h (PRINTPAGERANGE): Add structure
10238         definition.
10239         (PRINTDLGEX[AW]): Likewise.
10240         (PrintDlgEx[AW]): Add function declaration.
10241         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10242         * ChangeLog: Fix typo in last entry.
10243
10244 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10245
10246         * include/objbase.h (CoGetClassObject): Change third parameter
10247         to COSERVERINFO*.
10248
10249 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10250
10251         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10252         Thanks to: Kim Saunders.
10253         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10254         Thanks to: Pat Thoyts.
10255         * include/winnt.h: Change C++ style comment to C style.
10256         * include/shlobj.h: Ditto.
10257         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10258         list.
10259         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10260         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10261         (enum not limited to range of int).
10262         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10263         (struct with no named members), ifndef NONAMELESSUNION.
10264
10265 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10266
10267         * include/winuser.h (CREATESTRUCT): UNICODE it.
10268         (CBT_CREATEWND): Likewise.
10269
10270 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10271
10272         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10273         (WNetGetResourceInformationW): Ditto.
10274         (WNetGetResourceInformation): Add define.
10275
10276 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10277
10278         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10279         before extracting words.
10280
10281 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10282
10283         * include/winnt.h: Add PF_* defines.
10284         Thanks to: "Wizord"  <wizord@argoslabs.com>
10285
10286 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10287
10288         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10289         field as _ANONYMOUS_STRUCT.
10290         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10291         for UNICODE.
10292         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10293         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10294         test.
10295
10296 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10297
10298         * include/commctrl.h: Add some ListView constants.
10299
10300 2001-09-17  Earnie Boyd  <earnie@sf.net>
10301
10302         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10303         portion of the directory from the install.
10304         (inst_libdir): Ditto.
10305         * Makefile.in (VERSION): Increment.
10306         * include/w32api.h: Increment version.
10307
10308 2001-09-13  Earnie Boyd  <earnie@SF.net>
10309
10310         * lib/Makefile.in (inst_includedir): Change to always use w32api
10311         subdirectory for target == cygwin.
10312         (inst_libdir): Ditto.
10313
10314 2001-09-13  Earnie Boyd  <earnie@SF.net>
10315
10316         * lib/Makefile.in (config_prefix): New variable.
10317         (inst_includedir): Manipulate special value only if target == cygwin
10318         and build == target and prefix != config_prefix.
10319         (inst_libdir): Ditto.
10320
10321 2001-09-12  Earnie Boyd  <earnie@SF.net>
10322
10323         * Makefile.in (TARFLAGS): New variable.
10324         (TARFILEEXT): Ditto.
10325
10326 2001-09-12  Earnie Boyd  <earnie@SF.net>
10327
10328         * Makefile.in: Increment version.
10329         * include/w32api.h: Ditto.
10330         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10331
10332 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10333
10334         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10335         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10336         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10337
10338 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10339
10340         * include/wininet.h (InternetAutodial): Add prototype.
10341         (InternetAutodialHangup): Ditto.
10342         (InternetDial): Ditto.
10343         (InternetGetConnectedState): Ditto.
10344         (InternetGoOnline): Ditto.
10345         (InternetHangUp): Ditto.
10346         (InternetSetDialState): Ditto.
10347         Add associated INTERNET_* auto dial flags.
10348         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10349
10350 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10351
10352         * lib/Makefile.in: Move the setting of variable libdir to after the
10353         setting of exec_prefix since the value of libdir is dependant on it.
10354
10355 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10356
10357         * include/winbase.h: Add missing closing parentheses to
10358         InterlockedExchangePointer declaration.
10359
10360 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10361
10362         * include/shlobj.h (CFSTR_* ): Add new defines.
10363         Thanks to: "Ron" <ron@debian.org> .
10364         Unicode them.
10365
10366 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10367
10368         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10369         anonymous structs are available rather than just testing preprocessor
10370         variable directly.
10371
10372 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10373
10374         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10375         with new `LARGE_INTEGER' definition.
10376
10377 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10378
10379         * include/winsock2.h: Remove "extra token" after #endif.
10380
10381 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10382
10383         * config.guess: Remove the \r from the end of line.
10384         * config.sub: Ditto.
10385
10386 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10387
10388         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10389         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10390
10391 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10392
10393         * config.guess: Add the MSYS system.
10394         * config.sub: Ditto.
10395         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10396         * incldue/winsock2.h: Ditto.
10397
10398 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10399
10400         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10401         non-anonymous (Xxx.u.LowPart) access to HighPart and
10402         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10403
10404 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10405
10406         * include/wingdi.h (HANGUL_CHARSET): Add define.
10407
10408 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10409
10410         * include/setupapi.h: Formatting.
10411
10412 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10413
10414         * include/shlobj.h: Remove \r from the line endings.
10415
10416 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10417
10418         * include/setupapi.h : New file.
10419         * lib/setupapi.def:New file.
10420         * lib/test.c: Include setupapi.h.
10421
10422 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10423         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10424
10425 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10426
10427         * include/richedit.h (ENLINK): Add structure definition.
10428         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10429
10430 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10431
10432         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10433         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10434         (GCS_*): Make UNICODE.
10435         (CSIDL_*): Add more defines.
10436         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10437         (_DISK_GEOMETRY): Ditto.
10438         (_DISK_PERFORMANCE): Ditto.
10439         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10440
10441 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10442
10443         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10444         of block protected by #ifndef VOID.
10445         (This reverts 1998-12-01 Anders Norlander change.)
10446         * include/odbcinst.h: End file with newline.
10447         * include/raserror.h: Ditto.
10448
10449 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10450
10451         * include/winsock2.h (#include <wtypes.h): Don't.
10452         (_BLOB): Define instead, if not already done.
10453         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10454         * include/wtypes.h (_BLOB): Guard against prior definition.
10455
10456 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10457
10458         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10459         as __extension__.
10460         (tagTYPEDESC): Ditto.
10461         (_wireBRECORD): Add structure definition.
10462         (_wireSAFEARR_BRECORD): Ditto.
10463         (_wireSAFEARR_HAVEIID): Ditto.
10464         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10465         SAFEARR_HAVEIID HaveIidStr.
10466         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10467         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10468         pparray to wirePSAFEARRAY*.
10469         (_wireVARIANT): Add field wireBRECORD brecVal.
10470         (wireVARIANT): Change typedef to struct _wireVariant*.
10471         (IRecordInfo): Add interface definition.
10472         (LPRECORDINFO): Add typedef for IRecordInfo*.
10473         (IID_IRecordInfo): Add forward decalaration.
10474
10475 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10476
10477         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10478         * include/nddeapi.h: Likewise.
10479
10480 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10481
10482         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10483         Add more includes of w32api headers.
10484
10485 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10486
10487         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10488         Swap asm code with that of GetFiberData.
10489         (GetFiberData): Ditto.
10490         * lib/kernel32.c: New file, containing library versions of
10491         GetCurrentFiber and GetFiberData.
10492         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10493
10494 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10495
10496         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10497         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10498
10499 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10500
10501         * lib/oleaut32.def: Regenerate.
10502
10503 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10504
10505         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10506
10507 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10508
10509         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10510         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10511         * include/oaidl.h: ... to here.
10512         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10513         (IErrorInfo::GetGUID): Change arg to GUID.
10514         (LPSUPPORTERRORINFO): Add typedef.
10515         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10516
10517 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10518
10519         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10520         defines.
10521
10522 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10523
10524         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10525
10526 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10527
10528         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10529         Thanks to: Jason Craig  <jacraig@softhome.net>
10530
10531 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10532
10533         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10534         and UNICODE mappings, if _WIN32_IE >= 0x400.
10535         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10536         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10537         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10538         (tagNMLVCUSTOMDRAW): Likewise.
10539         (tagNMTVCUSTOMDRAW): Likewise.
10540         (tagNMLVCACHEHINT): Likewise.
10541
10542 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10543
10544         * include/basetsd.h (#include <_mingw.h>): Remove.
10545         (__int64): Define.
10546
10547 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10548
10549         * include/wingdi.h (AC_SRC_OVER): Add define.
10550         (struct _BLENDFUNCTION): Add.
10551
10552 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10553
10554         * include/shlobj.h:  Add BIF_* defines.
10555
10556 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10557
10558         * include/winerror.h (E_PENDING): Add error code define.
10559
10560 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10561
10562         * include/basetsd.h (#include <_mingw.h>): Add directive.
10563
10564 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10565
10566         * include/winbase.h (InterlockedCompareExchange): Change args
10567         and return value from PVOID to LONG.
10568         (InterlockedExchange): Change first arg to LPLONG.
10569         (InterlockedCompareExchangePointer): New macro.
10570         (InterlockedExchangePointer): New macro.
10571
10572 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10573
10574         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10575         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10576
10577 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10578
10579         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10580         (IMalloc::Free()): Ditto.
10581
10582 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10583
10584         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10585         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10586         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10587
10588 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10589
10590         * include/shlobj.h (struct _browseinfo): UNICODE it.
10591         (SHBrowseForFolder): Ditto.
10592         (SHGetPathFromIDList): Ditto.
10593
10594 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10595
10596         * include/basetsd.h: RC_INVOKED protection and realignment.
10597         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10598
10599 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10600
10601         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10602         line.
10603
10604 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10605
10606         * lib/mapi32.def: Add MAPISendMail.
10607
10608 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10609
10610         * include/w32api.h: Update version.
10611         * Makefile.in: Ditto.
10612
10613 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10614
10615         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10616         compiler warnings.
10617
10618 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10619
10620         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10621         previous definition in include/ntsecapi.h.
10622         * include/ntsecapi.h: Vice versa.
10623
10624 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10625
10626         * include/winnt.h: Add defines for group attributes.
10627         Add define for SYSTEM_LUID.
10628         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10629         `PTOKEN_PRIMARY_GROUP'.
10630
10631 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10632
10633         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10634         for cygwin.
10635
10636 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10637
10638         * include/winsock2.h: Protect one *more* newlib defines when compiling
10639         cygwin.
10640
10641 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10642
10643         * include/winsock2.h: Protect some more newlib defines when compiling
10644         cygwin.
10645
10646 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10647
10648         * include/winsock.h: Protect some more newlib defines when compiling
10649         cygwin.
10650
10651 2001-04-17  Egor Duda  <deo@logos-m.ru>
10652
10653         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10654         as __extenstion__ when appropriate.
10655         * include/mmsystem.h: Mark anonymous structs and unions as
10656         __extension__ to prevent compiler warning when invoked with
10657         -pedantic
10658         * include/oaidl.h: Ditto.
10659         * include/objidl.h: Ditto.
10660         * include/olectl.h: Ditto.
10661         * include/prsht.h: Ditto.
10662         * include/shlobj.h: Ditto.
10663         * include/winbase.h: Ditto.
10664         * include/winnt.h: Ditto.
10665         * include/wtypes.h: Ditto.
10666
10667 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10668
10669         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10670         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10671
10672 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10673
10674         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10675
10676 2001-04-11  John Fortin  <fortinj@attglobal.net>
10677
10678         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10679         (*LPBOOL): Ditto.
10680
10681 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10682
10683         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10684         code will be included in every module which includes this header.
10685         (GetFiberData): Ditto.
10686
10687 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10688
10689         * include/winnt.h (GetCurrentFiber): Fix typo.
10690
10691 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10692
10693         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10694         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10695         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10696         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10697         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10698
10699         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10700         (GetCurrentFiber): Ditto.
10701         Thanks to: Andy Younger  <AndyY@redlemon.com>
10702
10703         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10704         DirectX 8 from complaining.
10705         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10706
10707 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10708
10709         * include/commctrl.h Updated TreeView and ListView defines and macros.
10710
10711 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10712
10713         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10714         and above.
10715
10716 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10717         * include/winuser.h (VK_KANA): New definition.
10718         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10719
10720 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10721
10722         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10723         (RT_FONT): Ditto.
10724         * include/basetsd.h (INT32): Ditto.
10725         * include/windef.h (ATOM): Ditto.
10726         (BOOL): Ditto.
10727         (BYTE): Ditto.
10728         * include/winbase.h (FreeResource): Ditto.
10729         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10730
10731 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10732
10733         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10734         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10735         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10736         macro now defined in newlib sys/types.h.  Emit warning if defined.
10737         * include/winsock2.h: Ditto.
10738         * include/windows.h (Win32_Winsock): Replace with new macros
10739         __USE_W32_SOCKETS and warn of deprecation.
10740
10741 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10742
10743         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10744         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10745
10746 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10747
10748         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10749         (TB_GETBUTTONSIZE): Ditto.
10750         (TCS_HOTTRACK): Ditto.
10751         Thanks to: Chris Hansen <popeofpop@softhome.net>
10752
10753 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10754
10755         * Makefile.in: (snapshot): Add target.
10756         * lib/Makefile.in: (install-headers): Use installdir variable.
10757         (installdir): Set value based on target-alias.
10758
10759 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10760
10761         * include/w32api.h: (_W32API_VERSION): Remove.
10762         (__W32API_VERSION): Add.
10763         (__W32API_MAJOR_VERSION): Ditto.
10764         (__W32API_MINOR_VERSION): Ditto.
10765
10766 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10767
10768         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10769         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10770         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10771         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10772
10773 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10774
10775         * include/mswsock.h: New file.
10776         * include/ws2tcpip.h: New file.
10777         * include/winsock.h (IPPROTO_IGMP): New define.
10778         (IPPROTO_GGP): Correct value.
10779         (SO_* macros): Remove mswsock defines.
10780         (TCP_BSDURGENT): Likewise.
10781         (IP_* macros): Add comment warning of WinSock2 incompatibility
10782         (WSARecvEx): Remove mswsock prototype.
10783         (TransmitFile): Likewise.
10784         (AcceptEx): Likewise.
10785         (GetAcceptExSockaddrs): Likewise.
10786         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10787         (#include <mswsock.h>): Add directive and explanatory comment
10788         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10789         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10790         (#include <winsock.h>): Replace directive with winsock.h file content
10791         The following changes apply to the merged file:
10792         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10793         (SOMAXCONN): Likewise
10794         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10795         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10796         in ws2tcpip.h)
10797         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10798         (FD_*_BIT and FD_* defines): Place together and extend to
10799         FD_MAX_EVENTS 10
10800         (AF* defines): Extend to AF_MAX 10
10801         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10802         (WSAUnhookBlockingHook): Likewise.
10803         (WSASetBlockingHook): Likewise.
10804         (WSACancelBlockingCall): Likewise.
10805         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10806         (#include <mswsock.h>): Delete directive inherited from winsock.h
10807         (WSA_QOS* defines): Add QualityOfService error codes.
10808         (SIO_* defines): Add new macros
10809         * include/ipexport.h (IP_STATUS flags): Add definitions.
10810         (IP_FLAG_DF): Likewise.
10811         (IP_OPT_* ): Likewise.
10812         (struct ip_option_information): Likewise.
10813         (struct icmp_echo_reply): Likewise.
10814
10815 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10816
10817         * include/commctrl.h: Revert TEXT change.
10818         * include/lmalert.h: Ditto.
10819         * include/lmcons.h: Ditto.
10820         * include/lmsname.h: Ditto.
10821         * include/lmsvc.h: Ditto.
10822         * include/ntsecapi.h: Ditto.
10823         * include/oledlg.h: Ditto.
10824         * include/ras.h: Ditto.
10825         * include/regstr.h: Ditto.
10826         * include/richedit.h: Ditto.
10827         * include/wininet.h: Ditto.
10828         * include/winnt.h: Ditto.
10829
10830 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10831
10832         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10833         * include/lmalert.h: Ditto.
10834         * include/lmcons.h: Ditto.
10835         * include/lmsname.h: Ditto.
10836         * include/lmsvc.h: Ditto.
10837         * include/ntsecapi.h: Ditto.
10838         * include/oledlg.h: Ditto.
10839         * include/ras.h: Ditto.
10840         * include/regstr.h: Ditto.
10841         * include/richedit.h: Ditto.
10842         * include/wininet.h: Ditto.
10843         * include/w32api.h: New File.
10844
10845 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10846
10847         * include/shlobj.h: Add missing SLR_* flags.
10848
10849 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10850
10851         * lib/Makefile.in: (host_alias): Add variable.
10852         (host_build): Ditto:
10853         (xinstall): Removed
10854         (xinstall-libraries): Ditto.
10855         (xinstall-headers): Ditto.
10856         (xuninstall): Ditto.
10857         (xuninstall-libraries): Ditto.
10858         (xuninstall-headers): Ditto.
10859         * Makefile.in: (host_alias): Add variable.
10860         (build_alias): Ditto.
10861
10862 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10863
10864         * include/winnt.h: (__TEXT): Add private macro.
10865         (_TEXT): Modify definition to use __TEXT.
10866         (_T): Ditto.
10867         This change allows the passing of a MACRO as an argument and have that
10868         MACRO resolved first.
10869         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10870
10871 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10872
10873         * Makefile.in: Increment VERSION to 0.5
10874         * include/winnt.h: Change TEXT to _TEXT throughout.
10875         (SID_RELEASE): Define.
10876         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10877
10878 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10879
10880         * Apply Phil Krylov patches.
10881         2001-01-19  Phil Krylov  <phil@mail.ru>
10882         * include/commctrl.h: (HDI_IMAGE) New definition.
10883         (HDI_DI_SETITEM) Ditto.
10884         (HDI_ORDER) Ditto.
10885         (HDI_FILTER) Ditto.
10886         (HDF_BITMAP_ON_RIGHT) Ditto.
10887         (HDF_IMAGE) Ditto.
10888         (HDM_SETORDERARRAY) Ditto.
10889         (Header_SetOrderArray) Ditto.
10890         (ICC_BAR_CLASSES) Ditto.
10891         (struct _HD_ITEMA) Change definition.
10892         (struct _HD_ITEMW) Ditto.
10893         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10894         (InitCommonControlsEx()) Ditto.
10895         2001-01-23  Phil Krylov  <phil@mail.ru>
10896         * include/richedit.h: Many Richedit 2.0 definitions.
10897
10898 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10899
10900         * include/winuser.h: (IDC_HAND)  New resource identifier.
10901         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10902
10903 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10904
10905         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10906         Fix typo's.
10907
10908 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10909
10910         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10911         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10912         Thanks To: <bge@users.sourceforge.net>
10913
10914 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10915
10916         * Apply Danny Smith patch 102386
10917         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10918         * lib/rasapi32.def: add symbols available in NT4 and W2k
10919
10920 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10921
10922         * Apply Danny Smith patch 102382
10923         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10924         * lib/mswsock.def: remove leading underscores from symbol names
10925
10926 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10927
10928         * Apply Danny Smith patch 102446
10929         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10930         * include/sql.h (ODBCVER): change default to 0x0351.
10931         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10932         (SQLColAttributes): likewise.
10933         (SQLBindParam): add prototype for ODBC 3.x function.
10934         (SQLCloseCursor): likewise.
10935         (SQLColAttribute): likewise.
10936         (SQLCopyDesc):likewise.
10937         (SQLEndTran): likewise.
10938         (SQLFetchScroll): likewise.
10939         (SQLGetConnectAttr): likewise.
10940         (SQLGetDescField): likewise.
10941         (SQLGetDescRec): likewise.
10942         (SQLGetDiagField): likewise.
10943         (SQLGetDiagRec): likewise.
10944         (SQLGetEnvAttr): likewise.
10945         (SQLGetStmtAttr): likewise.
10946         (SQLSetConnectAttr): likewise.
10947         (SQLSetDescField):likewise.
10948         (SQLSetDescRec): likewise.
10949         (SQLSetEnvAttr): likewise.
10950         (SQLSetStmtAttr): likewise.
10951         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10952         _WIN64 compatability;
10953         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10954         (SQL_ACTIVE_CONNECTIONS): likewise.
10955         (SQL_ACTIVE_STATEMENTS): likewise.
10956         (SQL_ALL_EXCEPT_LIKE): likewise.
10957         (SQL_API_ALL_FUNCTIONS): likewise.
10958         (SQL_API_LOADBYORDINAL): likewise.
10959         (SQL_API_SQLBINDPARAMETER): likewise.
10960         (SQL_API_SQLBROWSECONNECT): likewise.
10961         (SQL_API_SQLCOLATTRIBUTES): likewise.
10962         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10963         (SQL_API_SQLDESCRIBEPARAM): likewise.
10964         (SQL_API_SQLDRIVERCONNECT): likewise.
10965         (SQL_API_SQLDRIVERS): likewise.
10966         (SQL_API_SQLEXTENDEDFETCH): likewise.
10967         (SQL_API_SQLFOREIGNKEYS): likewise.
10968         (SQL_API_SQLMORERESULTS): likewise.
10969         (SQL_API_SQLNATIVESQL): likewise.
10970         (SQL_API_SQLNUMPARAMS): likewise.
10971         (SQL_API_SQLPARAMOPTIONS): likewise.
10972         (SQL_API_SQLPRIMARYKEYS): likewise.
10973         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10974         (SQL_API_SQLPROCEDURES): likewise.
10975         (SQL_API_SQLSETPOS): likewise.
10976         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10977         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10978         (SQL_ASYNC_ENABLE): likewise.
10979         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10980         (SQL_ASYNC_ENABLE_OFF): likewise.
10981         (SQL_ASYNC_ENABLE_ON): likewise.
10982         (SQL_ATTR_READONLY): likewise.
10983         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10984         (SQL_ATTR_WRITE): likewise.
10985         (SQL_AUTOCOMMIT): likewise.
10986         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10987         (SQL_AUTOCOMMIT_OFF): likewise.
10988         (SQL_AUTOCOMMIT_ON): likewise.
10989         (SQL_BEST_ROWID): likewise.
10990         (SQL_BIGINT): likewise.
10991         (SQL_BINARY): likewise.
10992         (SQL_BIND_BY_COLUMN): likewise.
10993         (SQL_BIND_TYPE): likewise.
10994         (SQL_BIND_TYPE_DEFAULT): likewise.
10995         (SQL_BIT): likewise.
10996         (SQL_BOOKMARK_PERSISTENCE): likewise.
10997         (SQL_BP_CLOSE): likewise.
10998         (SQL_BP_DELETE): likewise.
10999         (SQL_BP_DROP): likewise.
11000         (SQL_BP_OTHER_HSTMT): likewise.
11001         (SQL_BP_SCROLL): likewise.
11002         (SQL_BP_TRANSACTION): likewise.
11003         (SQL_BP_UPDATE): likewise.
11004         (SQL_C_BINARY): likewise.
11005         (SQL_C_BIT): likewise.
11006         (SQL_C_BOOKMARK): likewise.
11007         (SQL_C_CHAR): likewise.
11008         (SQL_C_DATE): likewise.
11009         (SQL_C_DEFAULT): likewise.
11010         (SQL_C_DOUBLE): likewise.
11011         (SQL_C_FLOAT): likewise.
11012         (SQL_C_LONG): likewise.
11013         (SQL_C_SHORT): likewise.
11014         (SQL_C_SLONG): likewise.
11015         (SQL_C_SSHORT): likewise.
11016         (SQL_C_STINYINT): likewise.
11017         (SQL_C_TIME): likewise.
11018         (SQL_C_TIMESTAMP): likewise.
11019         (SQL_C_TINYINT): likewise.
11020         (SQL_C_ULONG): likewise.
11021         (SQL_C_USHORT): likewise.
11022         (SQL_C_UTINYINT): likewise.
11023         (SQL_CB_NON_NULL): likewise.
11024         (SQL_CB_NULL): likewise.
11025         (SQL_CC_CLOSE): likewise.
11026         (SQL_CC_DELETE): likewise.
11027         (SQL_CC_PRESERVE): likewise.
11028         (SQL_CN_ANY): likewise.
11029         (SQL_CN_DIFFERENT): likewise.
11030         (SQL_CN_NONE): likewise.
11031         (SQL_COLATT_OPT_MAX): likewise.
11032         (SQL_COLATT_OPT_MIN): likewise.
11033         (SQL_COLUMN_ALIAS): likewise.
11034         (SQL_COLUMN_AUTO_INCREMENT): likewise.
11035         (SQL_COLUMN_CASE_SENSITIVE): likewise.
11036         (SQL_COLUMN_COUNT): likewise.
11037         (SQL_COLUMN_DISPLAY_SIZE): likewise.
11038         (SQL_COLUMN_DRIVER_START): likewise.
11039         (SQL_COLUMN_LABEL): likewise.
11040         (SQL_COLUMN_LENGTH): likewise.
11041         (SQL_COLUMN_MONEY): likewise.
11042         (SQL_COLUMN_NAME): likewise.
11043         (SQL_COLUMN_NULLABLE): likewise.
11044         (SQL_COLUMN_OWNER_NAME): likewise.
11045         (SQL_COLUMN_PRECISION): likewise.
11046         (SQL_COLUMN_QUALIFIER_NAME): likewise.
11047         (SQL_COLUMN_SCALE): likewise.
11048         (SQL_COLUMN_SEARCHABLE): likewise.
11049         (SQL_COLUMN_TABLE_NAME): likewise.
11050         (SQL_COLUMN_TYPE): likewise.
11051         (SQL_COLUMN_TYPE_NAME): likewise.
11052         (SQL_COLUMN_UNSIGNED): likewise.
11053         (SQL_COLUMN_UPDATABLE): likewise.
11054         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
11055         (SQL_CONCUR_DEFAULT): likewise.
11056         (SQL_CONCUR_LOCK): likewise.
11057         (SQL_CONCUR_READ_ONLY): likewise.
11058         (SQL_CONCUR_ROWVER): likewise.
11059         (SQL_CONCUR_TIMESTAMP): likewise.
11060         (SQL_CONCUR_VALUES): likewise.
11061         (SQL_CONCURRENCY): likewise.
11062         (SQL_CONN_OPT_MAX): likewise.
11063         (SQL_CONN_OPT_MIN): likewise.
11064         (SQL_CONNECT_OPT_DRVR_START): likewise.
11065         (SQL_CONVERT_BIGINT): likewise.
11066         (SQL_CONVERT_BINARY): likewise.
11067         (SQL_CONVERT_BIT): likewise.
11068         (SQL_CONVERT_CHAR): likewise.
11069         (SQL_CONVERT_DATE): likewise.
11070         (SQL_CONVERT_DECIMAL): likewise.
11071         (SQL_CONVERT_DOUBLE): likewise.
11072         (SQL_CONVERT_FLOAT): likewise.
11073         (SQL_CONVERT_FUNCTIONS): likewise.
11074         (SQL_CONVERT_INTEGER): likewise.
11075         (SQL_CONVERT_LONGVARBINARY): likewise.
11076         (SQL_CONVERT_LONGVARCHAR): likewise.
11077         (SQL_CONVERT_NUMERIC): likewise.
11078         (SQL_CONVERT_REAL): likewise.
11079         (SQL_CONVERT_SMALLINT): likewise.
11080         (SQL_CONVERT_TIME): likewise.
11081         (SQL_CONVERT_TIMESTAMP): likewise.
11082         (SQL_CONVERT_TINYINT): likewise.
11083         (SQL_CONVERT_VARBINARY): likewise.
11084         (SQL_CONVERT_VARCHAR): likewise.
11085         (SQL_CORRELATION_NAME): likewise.
11086         (SQL_CR_CLOSE): likewise.
11087         (SQL_CR_DELETE): likewise.
11088         (SQL_CR_PRESERVE): likewise.
11089         (SQL_CUR_DEFAULT): likewise.
11090         (SQL_CUR_USE_DRIVER): likewise.
11091         (SQL_CUR_USE_IF_NEEDED): likewise.
11092         (SQL_CUR_USE_ODBC): likewise.
11093         (SQL_CURRENT_QUALIFIER): likewise.
11094         (SQL_CURSOR_DYNAMIC): likewise.
11095         (SQL_CURSOR_FORWARD_ONLY): likewise.
11096         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
11097         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
11098         (SQL_CURSOR_STATIC): likewise.
11099         (SQL_CURSOR_TYPE): likewise.
11100         (SQL_CURSOR_TYPE_DEFAULT): likewise.
11101         (SQL_CVT_BIGINT): likewise.
11102         (SQL_CVT_BINARY): likewise.
11103         (SQL_CVT_BIT): likewise.
11104         (SQL_CVT_CHAR): likewise.
11105         (SQL_CVT_DATE): likewise.
11106         (SQL_CVT_DECIMAL): likewise.
11107         (SQL_CVT_DOUBLE): likewise.
11108         (SQL_CVT_FLOAT): likewise.
11109         (SQL_CVT_INTEGER): likewise.
11110         (SQL_CVT_LONGVARBINARY): likewise.
11111         (SQL_CVT_LONGVARCHAR): likewise.
11112         (SQL_CVT_NUMERIC): likewise.
11113         (SQL_CVT_REAL): likewise.
11114         (SQL_CVT_SMALLINT): likewise.
11115         (SQL_CVT_TIME): likewise.
11116         (SQL_CVT_TIMESTAMP): likewise.
11117         (SQL_CVT_TINYINT): likewise.
11118         (SQL_CVT_VARBINARY): likewise.
11119         (SQL_CVT_VARCHAR): likewise.
11120         (SQL_DATABASE_NAME): likewise.
11121         (SQL_DATE): likewise.
11122         (SQL_DRIVER_HDBC): likewise.
11123         (SQL_DRIVER_HENV): likewise.
11124         (SQL_DRIVER_HLIB): likewise.
11125         (SQL_DRIVER_HSTMT): likewise.
11126         (SQL_DRIVER_NAME): likewise.
11127         (SQL_DRIVER_ODBC_VER): likewise.
11128         (SQL_DRIVER_VER): likewise.
11129         (SQL_ENSURE): likewise.
11130         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
11131         (SQL_EXT_API_LAST): likewise.
11132         (SQL_EXT_API_START): likewise.
11133         (SQL_FD_FETCH_BOOKMARK): likewise.
11134         (SQL_FD_FETCH_PREV): likewise.
11135         (SQL_FD_FETCH_RESUME): likewise.
11136         (SQL_FETCH_PREV): likewise.
11137         (SQL_FETCH_RESUME): likewise.
11138         (SQL_FILE_NOT_SUPPORTED): likewise.
11139         (SQL_FILE_QUALIFIER): likewise.
11140         (SQL_FILE_TABLE): likewise.
11141         (SQL_FILE_USAGE): likewise.
11142         (SQL_FN_CVT_CONVERT): likewise.
11143         (SQL_FN_NUM_ABS): likewise.
11144         (SQL_FN_NUM_ACOS): likewise.
11145         (SQL_FN_NUM_ASIN): likewise.
11146         (SQL_FN_NUM_ATAN): likewise.
11147         (SQL_FN_NUM_ATAN2): likewise.
11148         (SQL_FN_NUM_CEILING): likewise.
11149         (SQL_FN_NUM_COS): likewise.
11150         (SQL_FN_NUM_COT): likewise.
11151         (SQL_FN_NUM_DEGREES): likewise.
11152         (SQL_FN_NUM_EXP): likewise.
11153         (SQL_FN_NUM_FLOOR): likewise.
11154         (SQL_FN_NUM_LOG): likewise.
11155         (SQL_FN_NUM_LOG10): likewise.
11156         (SQL_FN_NUM_MOD): likewise.
11157         (SQL_FN_NUM_PI): likewise.
11158         (SQL_FN_NUM_POWER): likewise.
11159         (SQL_FN_NUM_RADIANS): likewise.
11160         (SQL_FN_NUM_RAND): likewise.
11161         (SQL_FN_NUM_ROUND): likewise.
11162         (SQL_FN_NUM_SIGN): likewise.
11163         (SQL_FN_NUM_SIN): likewise.
11164         (SQL_FN_NUM_SQRT): likewise.
11165         (SQL_FN_NUM_TAN): likewise.
11166         (SQL_FN_NUM_TRUNCATE): likewise.
11167         (SQL_FN_STR_ASCII): likewise.
11168         (SQL_FN_STR_CHAR): likewise.
11169         (SQL_FN_STR_CONCAT): likewise.
11170         (SQL_FN_STR_DIFFERENCE): likewise.
11171         (SQL_FN_STR_INSERT): likewise.
11172         (SQL_FN_STR_LCASE): likewise.
11173         (SQL_FN_STR_LEFT): likewise.
11174         (SQL_FN_STR_LENGTH): likewise.
11175         (SQL_FN_STR_LOCATE): likewise.
11176         (SQL_FN_STR_LOCATE_2): likewise.
11177         (SQL_FN_STR_LTRIM): likewise.
11178         (SQL_FN_STR_REPEAT): likewise.
11179         (SQL_FN_STR_REPLACE): likewise.
11180         (SQL_FN_STR_RIGHT): likewise.
11181         (SQL_FN_STR_RTRIM): likewise.
11182         (SQL_FN_STR_SOUNDEX): likewise.
11183         (SQL_FN_STR_SPACE): likewise.
11184         (SQL_FN_STR_SUBSTRING): likewise.
11185         (SQL_FN_STR_UCASE): likewise.
11186         (SQL_FN_SYS_DBNAME): likewise.
11187         (SQL_FN_SYS_IFNULL): likewise.
11188         (SQL_FN_SYS_USERNAME): likewise.
11189         (SQL_FN_TD_CURDATE): likewise.
11190         (SQL_FN_TD_CURTIME): likewise.
11191         (SQL_FN_TD_DAYNAME): likewise.
11192         (SQL_FN_TD_DAYOFMONTH): likewise.
11193         (SQL_FN_TD_DAYOFWEEK): likewise.
11194         (SQL_FN_TD_DAYOFYEAR): likewise.
11195         (SQL_FN_TD_HOUR): likewise.
11196         (SQL_FN_TD_MINUTE): likewise.
11197         (SQL_FN_TD_MONTH): likewise.
11198         (SQL_FN_TD_MONTHNAME): likewise.
11199         (SQL_FN_TD_NOW): likewise.
11200         (SQL_FN_TD_QUARTER): likewise.
11201         (SQL_FN_TD_SECOND): likewise.
11202         (SQL_FN_TD_TIMESTAMPadd): likewise.
11203         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
11204         (SQL_FN_TD_WEEK): likewise.
11205         (SQL_FN_TD_YEAR): likewise.
11206         (SQL_FN_TSI_DAY): likewise.
11207         (SQL_FN_TSI_FRAC_SECOND): likewise.
11208         (SQL_FN_TSI_HOUR): likewise.
11209         (SQL_FN_TSI_MINUTE): likewise.
11210         (SQL_FN_TSI_MONTH): likewise.
11211         (SQL_FN_TSI_QUARTER): likewise.
11212         (SQL_FN_TSI_SECOND): likewise.
11213         (SQL_FN_TSI_WEEK): likewise.
11214         (SQL_FN_TSI_YEAR): likewise.
11215         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
11216         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
11217         (SQL_GB_NO_RELATION): likewise.
11218         (SQL_GB_NOT_SUPPORTED): likewise.
11219         (SQL_GD_BLOCK): likewise.
11220         (SQL_GD_BOUND): likewise.
11221         (SQL_GET_BOOKMARK): likewise.
11222         (SQL_GROUP_BY): likewise.
11223         (SQL_INFO_DRIVER_START): likewise.
11224         (SQL_INFO_FIRST): likewise.
11225         (SQL_INFO_LAST): likewise.
11226         (SQL_INTERVAL_DAY): likewise.
11227         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
11228         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
11229         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
11230         (SQL_INTERVAL_HOUR): likewise.
11231         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
11232         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
11233         (SQL_INTERVAL_MINUTE): likewise.
11234         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11235         (SQL_INTERVAL_MONTH): likewise.
11236         (SQL_INTERVAL_SECOND): likewise.
11237         (SQL_INTERVAL_YEAR): likewise.
11238         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11239         (SQL_KEYSET_SIZE): likewise.
11240         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11241         (SQL_KEYWORDS): likewise.
11242         (SQL_LCK_EXCLUSIVE): likewise.
11243         (SQL_LCK_NO_CHANGE): likewise.
11244         (SQL_LCK_UNLOCK): likewise.
11245         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11246         (SQL_LIKE_ONLY): likewise.
11247         (SQL_LOCK_TYPES): likewise.
11248         (SQL_LOGIN_TIMEOUT): likewise.
11249         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11250         (SQL_LONGVARBINARY): likewise.
11251         (SQL_LONGVARCHAR): likewise.
11252         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11253         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11254         (SQL_MAX_DSN_LENGTH): likewise.
11255         (SQL_MAX_LENGTH): likewise.
11256         (SQL_MAX_LENGTH_DEFAULT): likewise.
11257         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11258         (SQL_MAX_OWNER_NAME_LEN): likewise.
11259         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11260         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11261         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11262         (SQL_MAX_ROWS): likewise.
11263         (SQL_MAX_ROWS_DEFAULT): likewise.
11264         (SQL_MODE_DEFAULT): likewise.
11265         (SQL_MODE_READ_ONLY): likewise.
11266         (SQL_MODE_READ_WRITE): likewise.
11267         (SQL_MULT_RESULT_SETS): likewise.
11268         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11269         (SQL_NC_END): likewise.
11270         (SQL_NC_START): likewise.
11271         (SQL_NEED_LONG_DATA_LEN): likewise.
11272         (SQL_NNC_NON_NULL): likewise.
11273         (SQL_NNC_NULL): likewise.
11274         (SQL_NO_TOTAL): likewise.
11275         (SQL_NON_NULLABLE_COLUMNS): likewise.
11276         (SQL_NOSCAN): likewise.
11277         (SQL_NOSCAN_DEFAULT): likewise.
11278         (SQL_NOSCAN_OFF): likewise.
11279         (SQL_NOSCAN_ON): likewise.
11280         (SQL_NUM_EXTENSIONS): likewise.
11281         (SQL_NUM_FUNCTIONS): likewise.
11282         (SQL_NUMERIC_FUNCTIONS): likewise.
11283         (SQL_OAC_LEVEL1): likewise.
11284         (SQL_OAC_LEVEL2): likewise.
11285         (SQL_OAC_NONE): likewise.
11286         (SQL_ODBC_API_CONFORMANCE): likewise.
11287         (SQL_ODBC_CURSORS): likewise.
11288         (SQL_ODBC_KEYWORDS): likewise.
11289         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11290         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11291         (SQL_ODBC_SQL_OPT_IEF): likewise.
11292         (SQL_ODBC_VER): likewise.
11293         (SQL_OPT_TRACE): likewise.
11294         (SQL_OPT_TRACE_DEFAULT): likewise.
11295         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11296         (SQL_OPT_TRACE_OFF): likewise.
11297         (SQL_OPT_TRACE_ON): likewise.
11298         (SQL_OPT_TRACEFILE): likewise.
11299         (SQL_OSC_CORE): likewise.
11300         (SQL_OSC_EXTENDED): likewise.
11301         (SQL_OSC_MINIMUM): likewise.
11302         (SQL_OSCC_COMPLIANT): likewise.
11303         (SQL_OSCC_NOT_COMPLIANT): likewise.
11304         (SQL_OU_DML_STATEMENTS): likewise.
11305         (SQL_OU_INDEX_DEFINITION): likewise.
11306         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11307         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11308         (SQL_OU_TABLE_DEFINITION): likewise.
11309         (SQL_OUTER_JOINS): likewise.
11310         (SQL_OWNER_TERM): likewise.
11311         (SQL_OWNER_USAGE): likewise.
11312         (SQL_PACKET_SIZE): likewise.
11313         (SQL_PC_NOT_PSEUDO): likewise.
11314         (SQL_POS_add): likewise.
11315         (SQL_POS_DELETE): likewise.
11316         (SQL_POS_OPERATIONS): likewise.
11317         (SQL_POS_POSITION): likewise.
11318         (SQL_POS_REFRESH): likewise.
11319         (SQL_POS_UPDATE): likewise.
11320         (SQL_POSITIONED_STATEMENTS): likewise.
11321         (SQL_PROCEDURE_TERM): likewise.
11322         (SQL_PROCEDURES): likewise.
11323         (SQL_PS_POSITIONED_DELETE): likewise.
11324         (SQL_PS_POSITIONED_UPDATE): likewise.
11325         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11326         (SQL_QL_END): likewise.
11327         (SQL_QL_START): likewise.
11328         (SQL_QU_DML_STATEMENTS): likewise.
11329         (SQL_QU_INDEX_DEFINITION): likewise.
11330         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11331         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11332         (SQL_QU_TABLE_DEFINITION): likewise.
11333         (SQL_QUALIFIER_LOCATION): likewise.
11334         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11335         (SQL_QUALIFIER_TERM): likewise.
11336         (SQL_QUALIFIER_USAGE): likewise.
11337         (SQL_QUERY_TIMEOUT): likewise.
11338         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11339         (SQL_QUICK): likewise.
11340         (SQL_QUIET_MODE): likewise.
11341         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11342         (SQL_RD_DEFAULT): likewise.
11343         (SQL_RD_OFF): likewise.
11344         (SQL_RD_ON): likewise.
11345         (SQL_RETRIEVE_DATA): likewise.
11346         (SQL_ROW_NUMBER): likewise.
11347         (SQL_ROW_UPDATES): likewise.
11348         (SQL_ROWSET_SIZE): likewise.
11349         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11350         (SQL_ROWVER): likewise.
11351         (SQL_SC_NON_UNIQUE): likewise.
11352         (SQL_SC_TRY_UNIQUE): likewise.
11353         (SQL_SC_UNIQUE): likewise.
11354         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11355         (SQL_SCROLL_DYNAMIC): likewise.
11356         (SQL_SCROLL_FORWARD_ONLY): likewise.
11357         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11358         (SQL_SCROLL_OPTIONS): likewise.
11359         (SQL_SCROLL_STATIC): likewise.
11360         (SQL_SEARCHABLE): likewise.
11361         (SQL_SIGNED_OFFSET): likewise.
11362         (SQL_SIMULATE_CURSOR): likewise.
11363         (SQL_SO_DYNAMIC): likewise.
11364         (SQL_SO_FORWARD_ONLY): likewise.
11365         (SQL_SO_KEYSET_DRIVEN): likewise.
11366         (SQL_SO_MIXED): likewise.
11367         (SQL_SO_STATIC): likewise.
11368         (SQL_SPEC_MAJOR): likewise.
11369         (SQL_SPEC_MINOR): likewise.
11370         (SQL_SPEC_STRING): likewise.
11371         (SQL_SQ_COMPARISON): likewise.
11372         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11373         (SQL_SQ_EXISTS): likewise.
11374         (SQL_SQ_IN): likewise.
11375         (SQL_SQ_QUANTIFIED): likewise.
11376         (SQL_SQLSTATE_SIZE): likewise.
11377         (SQL_SS_addITIONS): likewise.
11378         (SQL_SS_DELETIONS): likewise.
11379         (SQL_SS_UPDATES): likewise.
11380         (SQL_STATIC_SENSITIVITY): likewise.
11381         (SQL_STMT_OPT_MAX): likewise.
11382         (SQL_STMT_OPT_MIN): likewise.
11383         (SQL_STRING_FUNCTIONS): likewise.
11384         (SQL_SUBQUERIES): likewise.
11385         (SQL_SYSTEM_FUNCTIONS): likewise.
11386         (SQL_TABLE_STAT): likewise.
11387         (SQL_TABLE_TERM): likewise.
11388         (SQL_TIME): likewise.
11389         (SQL_TIMEDATE_add_INTERVALS): likewise.
11390         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11391         (SQL_TIMEDATE_FUNCTIONS): likewise.
11392         (SQL_TIMESTAMP): likewise.
11393         (SQL_TINYINT): likewise.
11394         (SQL_TRANSLATE_DLL): likewise.
11395         (SQL_TRANSLATE_OPTION): likewise.
11396         (SQL_TXN_ISOLATION): likewise.
11397         (SQL_TXN_VERSIONING): likewise.
11398         (SQL_TYPE_DRIVER_END): likewise.
11399         (SQL_TYPE_DRIVER_START): likewise.
11400         (SQL_TYPE_MAX): likewise.
11401         (SQL_TYPE_MIN): likewise.
11402         (SQL_TYPE_NULL): likewise.
11403         (SQL_U_UNION): likewise.
11404         (SQL_U_UNION_ALL): likewise.
11405         (SQL_UB_DEFAULT): likewise.
11406         (SQL_UB_OFF): likewise.
11407         (SQL_UB_ON): likewise.
11408         (SQL_UNICODE): likewise.
11409         (SQL_UNICODE_CHAR): likewise.
11410         (SQL_UNICODE_LONGVARCHAR): likewise.
11411         (SQL_UNICODE_VARCHAR): likewise.
11412         (SQL_UNION): likewise.
11413         (SQL_UNSEARCHABLE): likewise.
11414         (SQL_UNSIGNED_OFFSET): likewise.
11415         (SQL_USE_BOOKMARKS): likewise.
11416         (SQL_VARBINARY): likewise.
11417         (SQL_TRUE): add define for ODBC3.x.
11418         (SQL_FALSE): likewise.
11419         (SQL_AM_CONNECTION): likewise.
11420         (SQL_AM_NONE): likewise.
11421         (SQL_AM_STATEMENT): likewise.
11422         (SQL_API_SQLALLOCHANDLE): likewise.
11423         (SQL_API_SQLBINDPARAM): likewise.
11424         (SQL_API_SQLCLOSECURSOR): likewise.
11425         (SQL_API_SQLCOLATTRIBUTE): likewise.
11426         (SQL_API_SQLCOPYDESC): likewise.
11427         (SQL_API_SQLENDTRAN): likewise.
11428         (SQL_API_SQLFETCHSCROLL): likewise.
11429         (SQL_API_SQLFREEHANDLE): likewise.
11430         (SQL_API_SQLGETCONNECTATTR): likewise.
11431         (SQL_API_SQLGETDESCFIELD): likewise.
11432         (SQL_API_SQLGETDESCREC): likewise.
11433         (SQL_API_SQLGETDIAGFIELD): likewise.
11434         (SQL_API_SQLGETDIAGREC): likewise.
11435         (SQL_API_SQLGETENVATTR): likewise.
11436         (SQL_API_SQLGETSTMTATTR): likewise.
11437         (SQL_API_SQLSETCONNECTATTR): likewise.
11438         (SQL_API_SQLSETDESCFIELD): likewise.
11439         (SQL_API_SQLSETDESCREC): likewise.
11440         (SQL_API_SQLSETENVATTR): likewise.
11441         (SQL_API_SQLSETSTMTATTR): likewise.
11442         (SQL_ARD_TYPE): likewise.
11443         (SQL_AT_add_CONSTRAINT): likewise.
11444         (SQL_ATTR_APP_PARAM_DESC): likewise.
11445         (SQL_ATTR_APP_ROW_DESC): likewise.
11446         (SQL_ATTR_AUTO_IPD): likewise.
11447         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11448         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11449         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11450         (SQL_ATTR_IMP_ROW_DESC): likewise.
11451         (SQL_ATTR_METADATA_ID): likewise.
11452         (SQL_ATTR_OUTPUT_NTS): likewise.
11453         (SQL_CATALOG_NAME): likewise.
11454         (SQL_CODE_DATE): likewise.
11455         (SQL_CODE_TIME): likewise.
11456         (SQL_CODE_TIMESTAMP): likewise.
11457         (SQL_COLLATION_SEQ): likewise.
11458         (SQL_CURSOR_SENSITIVITY): likewise.
11459         (SQL_DATE_LEN): likewise.
11460         (SQL_DATETIME): likewise.
11461         (SQL_DEFAULT): likewise.
11462         (SQL_DESC_ALLOC_AUTO): likewise.
11463         (SQL_DESC_ALLOC_TYPE): likewise.
11464         (SQL_DESC_ALLOC_USER): likewise.
11465         (SQL_DESC_COUNT): likewise.
11466         (SQL_DESC_DATA_PTR): likewise.
11467         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11468         (SQL_DESC_INDICATOR_PTR): likewise.
11469         (SQL_DESC_LENGTH): likewise.
11470         (SQL_DESC_NAME): likewise.
11471         (SQL_DESC_NULLABLE): likewise.
11472         (SQL_DESC_OCTET_LENGTH): likewise.
11473         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11474         (SQL_DESC_PRECISION): likewise.
11475         (SQL_DESC_SCALE): likewise.
11476         (SQL_DESC_TYPE): likewise.
11477         (SQL_DESC_UNNAMED): likewise.
11478         (SQL_DESCRIBE_PARAMETER): likewise.
11479         (SQL_DIAG_ALTER_DOMAIN): likewise.
11480         (SQL_DIAG_ALTER_TABLE): likewise.
11481         (SQL_DIAG_CALL): likewise.
11482         (SQL_DIAG_CLASS_ORIGIN): likewise.
11483         (SQL_DIAG_CONNECTION_NAME): likewise.
11484         (SQL_DIAG_CREATE_ASSERTION): likewise.
11485         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11486         (SQL_DIAG_CREATE_COLLATION): likewise.
11487         (SQL_DIAG_CREATE_DOMAIN): likewise.
11488         (SQL_DIAG_CREATE_INDEX): likewise.
11489         (SQL_DIAG_CREATE_SCHEMA): likewise.
11490         (SQL_DIAG_CREATE_TABLE): likewise.
11491         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11492         (SQL_DIAG_CREATE_VIEW): likewise.
11493         (SQL_DIAG_DELETE_WHERE): likewise.
11494         (SQL_DIAG_DROP_ASSERTION): likewise.
11495         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11496         (SQL_DIAG_DROP_COLLATION): likewise.
11497         (SQL_DIAG_DROP_DOMAIN): likewise.
11498         (SQL_DIAG_DROP_INDEX): likewise.
11499         (SQL_DIAG_DROP_SCHEMA): likewise.
11500         (SQL_DIAG_DROP_TABLE): likewise.
11501         (SQL_DIAG_DROP_TRANSLATION): likewise.
11502         (SQL_DIAG_DROP_VIEW): likewise.
11503         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11504         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11505         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11506         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11507         (SQL_DIAG_GRANT): likewise.
11508         (SQL_DIAG_INSERT): likewise.
11509         (SQL_DIAG_MESSAGE_TEXT): likewise.
11510         (SQL_DIAG_NATIVE): likewise.
11511         (SQL_DIAG_NUMBER): likewise.
11512         (SQL_DIAG_RETURNCODE): likewise.
11513         (SQL_DIAG_REVOKE): likewise.
11514         (SQL_DIAG_ROW_COUNT): likewise.
11515         (SQL_DIAG_SELECT_CURSOR): likewise.
11516         (SQL_DIAG_SERVER_NAME): likewise.
11517         (SQL_DIAG_SQLSTATE): likewise.
11518         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11519         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11520         (SQL_DIAG_UPDATE_WHERE): likewise.
11521         (SQL_FALSE): likewise.
11522         (SQL_FETCH_ABSOLUTE): likewise.
11523         (SQL_FETCH_LAST): likewise.
11524         (SQL_FETCH_PRIOR): likewise.
11525         (SQL_FETCH_RELATIVE): likewise.
11526         (SQL_HANDLE_DBC): likewise.
11527         (SQL_HANDLE_DESC): likewise.
11528         (SQL_HANDLE_ENV): likewise.
11529         (SQL_HANDLE_STMT): likewise.
11530         (SQL_INSENSITIVE): likewise.
11531         (SQL_INTEGRITY): likewise.
11532         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11533         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11534         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11535         (SQL_MAX_IDENTIFIER_LEN): likewise.
11536         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11537         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11538         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11539         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11540         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11541         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11542         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11543         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11544         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11545         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11546         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11547         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11548         (SQL_MAXIMUM_ROW_SIZE): likewise.
11549         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11550         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11551         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11552         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11553         (SQL_NAMED): likewise.
11554         (SQL_NONSCROLLABLE): likewise.
11555         (SQL_NTSL): likewise.
11556         (SQL_NULL_HANDLE): likewise.
11557         (SQL_NULL_HDESC): likewise.
11558         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11559         (SQL_PRED_BASIC): likewise.
11560         (SQL_PRED_CHAR): likewise.
11561         (SQL_PRED_NONE): likewise.
11562         (SQL_ROW_IDENTIFIER): likewise.
11563         (SQL_SCROLLABLE): likewise.
11564         (SQL_SENSITIVE): likewise.
11565         (SQL_SUCCEEDED(rc)): likewise.
11566         (SQL_TIME_LEN): likewise.
11567         (SQL_TIMESTAMP_LEN): likewise.
11568         (SQL_TRANSACTION_CAPABLE): likewise.
11569         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11570         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11571         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11572         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11573         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11574         (SQL_TYPE_DATE): likewise.
11575         (SQL_TYPE_TIME): likewise.
11576         (SQL_TYPE_TIMESTAMP): likewise.
11577         (SQL_UNKNOWN_TYPE): likewise.
11578         (SQL_UNNAMED): likewise.
11579         (SQL_UNSPECIFIED): likewise.
11580         (SQL_XOPEN_CLI_YEAR): likewise.
11581         (SQLAllocConnect): add comment marking as deperecated.
11582         (SQLAllocEnv): likewise.
11583         (SQLAllocStmt): likewise.
11584         (SQLFreeConnect): likewise.
11585         (SQLFreeEnv): likewise.
11586         (SQLGetConnectOption): likewise.
11587         (SQLGetStmtOption): likewise.
11588
11589         * include/sqlext.h (#include <sqlucode.h>): add directive.
11590         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11591         (SQLColAttributes): likewise.
11592         (SQLBulkOperations): add function prototype.
11593         (SQLAllocHandleStd): likewise
11594         (TraceReturn): add Trace API prototype.
11595         (TraceVersion): likewise.
11596         (ODBCGetTryWaitValue):likewise.
11597         (ODBCSetTryWaitValue): likewise.
11598         (SQL_LOCK_RECORD): correct function macro.
11599         (SQL_REFRESH_RECORD): likewise.
11600         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11601         _WIN64 compatability.
11602         move defines for non-core functions from sql.h to sqlext.h (refer
11603         changes for sql.h)
11604         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11605         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11606         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11607         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11608         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11609         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11610         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11611         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11612         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11613         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11614         (SQL_AF_ALL): likewise.
11615         (SQL_AF_AVG): likewise.
11616         (SQL_AF_COUNT): likewise.
11617         (SQL_AF_DISTINCT): likewise.
11618         (SQL_AF_MAX): likewise.
11619         (SQL_AF_MIN): likewise.
11620         (SQL_AF_SUM): likewise.
11621         (SQL_AGGREGATE_FUNCTIONS): likewise.
11622         (SQL_ALL_CATALOGS): likewise.
11623         (SQL_ALL_SCHEMAS): likewise.
11624         (SQL_ALL_TABLE_TYPES): likewise.
11625         (SQL_ALTER_DOMAIN): likewise.
11626         (SQL_AM_CONNECTION): likewise.
11627         (SQL_AM_NONE): likewise.
11628         (SQL_AM_STATEMENT): likewise.
11629         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11630         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11631         (SQL_API_SQLALLOCHANDLESTD): likewise.
11632         (SQL_API_SQLBULKOPERATIONS): likewise.
11633         (SQL_ASYNC_MODE): likewise.
11634         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11635         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11636         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11637         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11638         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11639         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11640         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11641         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11642         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11643         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11644         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11645         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11646         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11647         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11648         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11649         (SQL_ATTR_ACCESS_MODE): likewise.
11650         (SQL_ATTR_ASYNC_ENABLE): likewise.
11651         (SQL_ATTR_AUTOCOMMIT): likewise.
11652         (SQL_ATTR_CONCURRENCY): likewise.
11653         (SQL_ATTR_CONNECTION_POOLING): likewise.
11654         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11655         (SQL_ATTR_CP_MATCH): likewise.
11656         (SQL_ATTR_CURRENT_CATALOG): likewise.
11657         (SQL_ATTR_CURSOR_TYPE): likewise.
11658         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11659         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11660         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11661         (SQL_ATTR_ENLIST_IN_XA): likewise.
11662         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11663         (SQL_ATTR_KEYSET_SIZE): likewise.
11664         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11665         (SQL_ATTR_MAX_LENGTH): likewise.
11666         (SQL_ATTR_MAX_ROWS): likewise.
11667         (SQL_ATTR_NOSCAN): likewise.
11668         (SQL_ATTR_ODBC_CURSORS): likewise.
11669         (SQL_ATTR_ODBC_VERSION): likewise.
11670         (SQL_ATTR_PACKET_SIZE): likewise.
11671         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11672         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11673         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11674         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11675         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11676         (SQL_ATTR_PARAMSET_SIZE): likewise.
11677         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11678         (SQL_ATTR_QUIET_MODE): likewise.
11679         (SQL_ATTR_RETRIEVE_DATA): likewise.
11680         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11681         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11682         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11683         (SQL_ATTR_ROW_NUMBER): likewise.
11684         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11685         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11686         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11687         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11688         (SQL_ATTR_TRACE): likewise.
11689         (SQL_ATTR_TRACEFILE): likewise.
11690         (SQL_ATTR_TRANSLATE_LIB): likewise.
11691         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11692         (SQL_ATTR_TXN_ISOLATION): likewise.
11693         (SQL_ATTR_USE_BOOKMARKS): likewise.
11694         (SQL_BATCH_ROW_COUNT): likewise.
11695         (SQL_BATCH_SUPPORT): likewise.
11696         (SQL_BRC_EXPLICIT): likewise.
11697         (SQL_BRC_PROCEDURES): likewise.
11698         (SQL_BRC_ROLLED_UP): likewise.
11699         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11700         (SQL_BS_ROW_COUNT_PROC): likewise.
11701         (SQL_BS_SELECT_EXPLICIT): likewise.
11702         (SQL_BS_SELECT_PROC): likewise.
11703         (SQL_C_INTERVAL_DAY): likewise.
11704         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11705         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11706         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11707         (SQL_C_INTERVAL_HOUR): likewise.
11708         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11709         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11710         (SQL_C_INTERVAL_MINUTE): likewise.
11711         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11712         (SQL_C_INTERVAL_MONTH): likewise.
11713         (SQL_C_INTERVAL_SECOND): likewise.
11714         (SQL_C_INTERVAL_YEAR): likewise.
11715         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11716         (SQL_C_NUMERIC): likewise.
11717         (SQL_C_SBIGINT): likewise.
11718         (SQL_C_TYPE_DATE): likewise.
11719         (SQL_C_TYPE_TIME): likewise.
11720         (SQL_C_TYPE_TIMESTAMP): likewise.
11721         (SQL_C_UBIGINT): likewise.
11722         (SQL_C_VARBOOKMARK): likewise.
11723         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11724         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11725         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11726         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11727         (SQL_CA_CREATE_ASSERTION): likewise.
11728         (SQL_CA1_ABSOLUTE): likewise.
11729         (SQL_CA1_BOOKMARK): likewise.
11730         (SQL_CA1_BULK_ADD): likewise.
11731         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11732         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11733         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11734         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11735         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11736         (SQL_CA1_LOCK_UNLOCK): likewise.
11737         (SQL_CA1_NEXT): likewise.
11738         (SQL_CA1_POS_DELETE): likewise.
11739         (SQL_CA1_POS_POSITION): likewise.
11740         (SQL_CA1_POS_REFRESH): likewise.
11741         (SQL_CA1_POS_UPDATE): likewise.
11742         (SQL_CA1_POSITIONED_DELETE): likewise.
11743         (SQL_CA1_POSITIONED_UPDATE): likewise.
11744         (SQL_CA1_RELATIVE): likewise.
11745         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11746         (SQL_CA2_CRC_APPROXIMATE): likewise.
11747         (SQL_CA2_CRC_EXACT): likewise.
11748         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11749         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11750         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11751         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11752         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11753         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11754         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11755         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11756         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11757         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11758         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11759         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11760         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11761         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11762         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11763         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11764         (SQL_CATALOG_LOCATION): likewise.
11765         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11766         (SQL_CATALOG_TERM): likewise.
11767         (SQL_CATALOG_USAGE): likewise.
11768         (SQL_CCOL_CREATE_COLLATION): likewise.
11769         (SQL_CCS_COLLATE_CLAUSE): likewise.
11770         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11771         (SQL_CCS_LIMITED_COLLATION): likewise.
11772         (SQL_CDO_COLLATION): likewise.
11773         (SQL_CDO_CONSTRAINT): likewise.
11774         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11775         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11776         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11777         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11778         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11779         (SQL_CDO_CREATE_DOMAIN): likewise.
11780         (SQL_CDO_DEFAULT): likewise.
11781         (SQL_CL_END): likewise.
11782         (SQL_CL_START): likewise.
11783         (SQL_COL_PRED_BASIC): likewise.
11784         (SQL_COL_PRED_CHAR): likewise.
11785         (SQL_COLUMN_DRIVER_START): likewise.
11786         (SQL_COLUMN_IGNORE): likewise.
11787         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11788         (SQL_CONVERT_GUID): likewise.
11789         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11790         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11791         (SQL_CONVERT_WCHAR): likewise.
11792         (SQL_CONVERT_WLONGVARCHAR): likewise.
11793         (SQL_CONVERT_WVARCHAR): likewise.
11794         (SQL_CP_DEFAULT): likewise.
11795         (SQL_CP_MATCH_DEFAULT): likewise.
11796         (SQL_CP_OFF): likewise.
11797         (SQL_CP_ONE_PER_DRIVER): likewise.
11798         (SQL_CP_ONE_PER_HENV): likewise.
11799         (SQL_CP_RELAXED_MATCH): likewise.
11800         (SQL_CP_STRICT_MATCH): likewise.
11801         (SQL_CREATE_ASSERTION): likewise.
11802         (SQL_CREATE_CHARACTER_SET): likewise.
11803         (SQL_CREATE_COLLATION): likewise.
11804         (SQL_CREATE_DOMAIN): likewise.
11805         (SQL_CREATE_SCHEMA): likewise.
11806         (SQL_CREATE_TABLE): likewise.
11807         (SQL_CREATE_TRANSLATION): likewise.
11808         (SQL_CREATE_VIEW): likewise.
11809         (SQL_CS_AUTHORIZATION): likewise.
11810         (SQL_CS_CREATE_SCHEMA): likewise.
11811         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11812         (SQL_CT_COLUMN_COLLATION): likewise.
11813         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11814         (SQL_CT_COLUMN_DEFAULT): likewise.
11815         (SQL_CT_COMMIT_DELETE): likewise.
11816         (SQL_CT_COMMIT_PRESERVE): likewise.
11817         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11818         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11819         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11820         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11821         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11822         (SQL_CT_CREATE_TABLE): likewise.
11823         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11824         (SQL_CT_LOCAL_TEMPORARY): likewise.
11825         (SQL_CT_TABLE_CONSTRAINT): likewise.
11826         (SQL_CTR_CREATE_TRANSLATION): likewise.
11827         (SQL_CU_DML_STATEMENTS): likewise.
11828         (SQL_CU_INDEX_DEFINITION): likewise.
11829         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11830         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11831         (SQL_CU_TABLE_DEFINITION): likewise.
11832         (SQL_CVT_GUID): likewise.
11833         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11834         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11835         (SQL_CVT_WCHAR): likewise.
11836         (SQL_CVT_WLONGVARCHAR): likewise.
11837         (SQL_CVT_WVARCHAR): likewise.
11838         (SQL_DA_DROP_ASSERTION): likewise.
11839         (SQL_DATETIME_LITERALS): likewise.
11840         (SQL_DB_DEFAULT): likewise.
11841         (SQL_DB_DISCONNECT): likewise.
11842         (SQL_DB_RETURN_TO_POOL): likewise.
11843         (SQL_DC_DROP_COLLATION): likewise.
11844         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11845         (SQL_DD_CASCADE): likewise.
11846         (SQL_DD_DROP_DOMAIN): likewise.
11847         (SQL_DD_RESTRICT): likewise.
11848         (SQL_DDL_INDEX): likewise.
11849         (SQL_DELETE_BY_BOOKMARK): likewise.
11850         (SQL_DESC_ARRAY_SIZE): likewise.
11851         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11852         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11853         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11854         (SQL_DESC_BASE_TABLE_NAME): likewise.
11855         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11856         (SQL_DESC_BIND_TYPE): likewise.
11857         (SQL_DESC_CASE_SENSITIVE): likewise.
11858         (SQL_DESC_CATALOG_NAME): likewise.
11859         (SQL_DESC_CONCISE_TYPE): likewise.
11860         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11861         (SQL_DESC_DISPLAY_SIZE): likewise.
11862         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11863         (SQL_DESC_LABEL): likewise.
11864         (SQL_DESC_LITERAL_PREFIX): likewise.
11865         (SQL_DESC_LITERAL_SUFFIX): likewise.
11866         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11867         (SQL_DESC_MAXIMUM_SCALE): likewise.
11868         (SQL_DESC_MINIMUM_SCALE): likewise.
11869         (SQL_DESC_NUM_PREC_RADIX): likewise.
11870         (SQL_DESC_PARAMETER_TYPE): likewise.
11871         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11872         (SQL_DESC_SCHEMA_NAME): likewise.
11873         (SQL_DESC_SEARCHABLE): likewise.
11874         (SQL_DESC_TABLE_NAME): likewise.
11875         (SQL_DESC_TYPE_NAME): likewise.
11876         (SQL_DESC_UNSIGNED): likewise.
11877         (SQL_DESC_UPDATABLE): likewise.
11878         (SQL_DI_CREATE_INDEX): likewise.
11879         (SQL_DI_DROP_INDEX): likewise.
11880         (SQL_DIAG_COLUMN_NUMBER): likewise.
11881         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11882         (SQL_DIAG_ROW_NUMBER): likewise.
11883         (SQL_DL_SQL92_DATE): likewise.
11884         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11885         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11886         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11887         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11888         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11889         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11890         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11891         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11892         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11893         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11894         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11895         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11896         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11897         (SQL_DL_SQL92_TIME): likewise.
11898         (SQL_DL_SQL92_TIMESTAMP): likewise.
11899         (SQL_DM_VER): likewise.
11900         (SQL_DRIVER_HDESC): likewise.
11901         (SQL_DROP_ASSERTION): likewise.
11902         (SQL_DROP_CHARACTER_SET): likewise.
11903         (SQL_DROP_COLLATION): likewise.
11904         (SQL_DROP_DOMAIN): likewise.
11905         (SQL_DROP_SCHEMA): likewise.
11906         (SQL_DROP_TABLE): likewise.
11907         (SQL_DROP_TRANSLATION): likewise.
11908         (SQL_DROP_VIEW): likewise.
11909         (SQL_DS_CASCADE): likewise.
11910         (SQL_DS_DROP_SCHEMA): likewise.
11911         (SQL_DS_RESTRICT): likewise.
11912         (SQL_DT_CASCADE): likewise.
11913         (SQL_DT_DROP_TABLE): likewise.
11914         (SQL_DT_RESTRICT): likewise.
11915         (SQL_DTC_DONE): likewise.
11916         (SQL_DTR_DROP_TRANSLATION): likewise.
11917         (SQL_DV_CASCADE): likewise.
11918         (SQL_DV_DROP_VIEW): likewise.
11919         (SQL_DV_RESTRICT): likewise.
11920         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11921         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11922         (SQL_EXT_API_LAST): likewise.
11923         (SQL_EXT_API_START): likewise.
11924         (SQL_FETCH_BY_BOOKMARK): likewise.
11925         (SQL_FETCH_FIRST_SYSTEM): likewise.
11926         (SQL_FETCH_FIRST_USER): likewise.
11927         (SQL_FN_CVT_CAST): likewise.
11928         (SQL_FN_STR_BIT_LENGTH): likewise.
11929         (SQL_FN_STR_CHAR_LENGTH): likewise.
11930         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11931         (SQL_FN_STR_OCTET_LENGTH): likewise.
11932         (SQL_FN_STR_POSITION): likewise.
11933         (SQL_FN_TD_CURRENT_DATE): likewise.
11934         (SQL_FN_TD_CURRENT_TIME): likewise.
11935         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11936         (SQL_FN_TD_EXTRACT): likewise.
11937         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11938         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11939         (SQL_FUNC_EXISTS(exists,api)): likewise.
11940         (SQL_GB_COLLATE): likewise.
11941         (SQL_HANDLE_SENV): likewise.
11942         (SQL_IK_ALL): likewise.
11943         (SQL_IK_ASC): likewise.
11944         (SQL_IK_DESC): likewise.
11945         (SQL_IK_NONE): likewise.
11946         (SQL_INDEX_KEYWORDS): likewise.
11947         (SQL_INFO_DRIVER_START): likewise.
11948         (SQL_INFO_LAST): likewise.
11949         (SQL_INFO_SCHEMA_VIEWS): likewise.
11950         (SQL_INITIALLY_DEFERRED): likewise.
11951         (SQL_INITIALLY_IMMEDIATE): likewise.
11952         (SQL_INSERT_STATEMENT): likewise.
11953         (SQL_INTERVAL): likewise.
11954         (SQL_IS_INSERT_LITERALS): likewise.
11955         (SQL_IS_INSERT_SEARCHED): likewise.
11956         (SQL_IS_INTEGER): likewise.
11957         (SQL_IS_POINTER): likewise.
11958         (SQL_IS_SELECT_INTO): likewise.
11959         (SQL_IS_SMALLINT): likewise.
11960         (SQL_IS_UINTEGER): likewise.
11961         (SQL_IS_USMALLINT): likewise.
11962         (SQL_ISV_ASSERTIONS): likewise.
11963         (SQL_ISV_CHARACTER_SETS): likewise.
11964         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11965         (SQL_ISV_COLLATIONS): likewise.
11966         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11967         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11968         (SQL_ISV_COLUMNS): likewise.
11969         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11970         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11971         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11972         (SQL_ISV_DOMAINS): likewise.
11973         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11974         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11975         (SQL_ISV_SCHEMATA): likewise.
11976         (SQL_ISV_SQL_LANGUAGES): likewise.
11977         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11978         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11979         (SQL_ISV_TABLES): likewise.
11980         (SQL_ISV_TRANSLATIONS): likewise.
11981         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11982         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11983         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11984         (SQL_ISV_VIEWS): likewise.
11985         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11986         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11987         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11988         (SQL_NO_COLUMN_NUMBER): likewise.
11989         (SQL_NO_ROW_NUMBER): likewise.
11990         (SQL_NOT_DEFERRABLE): likewise.
11991         (SQL_NUM_EXTENSIONS): likewise.
11992         (SQL_NUM_FUNCTIONS): likewise.
11993         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11994         (SQL_OIC_CORE): likewise.
11995         (SQL_OIC_LEVEL1): likewise.
11996         (SQL_OIC_LEVEL2): likewise.
11997         (SQL_OV_ODBC2): likewise.
11998         (SQL_OV_ODBC3): likewise.
11999         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
12000         (SQL_PARAM_ARRAY_SELECTS): likewise.
12001         (SQL_PARAM_BIND_BY_COLUMN): likewise.
12002         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
12003         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
12004         (SQL_PARAM_ERROR): likewise.
12005         (SQL_PARAM_IGNORE): likewise.
12006         (SQL_PARAM_PROCEED): likewise.
12007         (SQL_PARAM_SUCCESS): likewise.
12008         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
12009         (SQL_PARAM_UNUSED): likewise.
12010         (SQL_PARC_BATCH): likewise.
12011         (SQL_PARC_NO_BATCH): likewise.
12012         (SQL_PAS_BATCH): likewise.
12013         (SQL_PAS_NO_BATCH): likewise.
12014         (SQL_PAS_NO_SELECT): likewise.
12015         (SQL_ROW_IGNORE): likewise.
12016         (SQL_ROW_NUMBER_UNKNOWN): likewise.
12017         (SQL_ROW_PROCEED): likewise.
12018         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
12019         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
12020         (SQL_SC_SQL92_ENTRY): likewise.
12021         (SQL_SC_SQL92_FULL): likewise.
12022         (SQL_SC_SQL92_INTERMEDIATE): likewise.
12023         (SQL_SCC_ISO92_CLI): likewise.
12024         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
12025         (SQL_SCHEMA_TERM): likewise.
12026         (SQL_SCHEMA_USAGE): likewise.
12027         (SQL_SDF_CURRENT_DATE): likewise.
12028         (SQL_SDF_CURRENT_TIME): likewise.
12029         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
12030         (SQL_SFKD_CASCADE): likewise.
12031         (SQL_SFKD_NO_ACTION): likewise.
12032         (SQL_SFKD_SET_DEFAULT): likewise.
12033         (SQL_SFKD_SET_NULL): likewise.
12034         (SQL_SFKU_CASCADE): likewise.
12035         (SQL_SFKU_NO_ACTION): likewise.
12036         (SQL_SFKU_SET_DEFAULT): likewise.
12037         (SQL_SFKU_SET_NULL): likewise.
12038         (SQL_SG_DELETE_TABLE): likewise.
12039         (SQL_SG_INSERT_COLUMN): likewise.
12040         (SQL_SG_INSERT_TABLE): likewise.
12041         (SQL_SG_REFERENCES_COLUMN): likewise.
12042         (SQL_SG_REFERENCES_TABLE): likewise.
12043         (SQL_SG_SELECT_TABLE): likewise.
12044         (SQL_SG_UPDATE_COLUMN): likewise.
12045         (SQL_SG_UPDATE_TABLE): likewise.
12046         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
12047         (SQL_SG_USAGE_ON_COLLATION): likewise.
12048         (SQL_SG_USAGE_ON_DOMAIN): likewise.
12049         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
12050         (SQL_SG_WITH_GRANT_OPTION): likewise.
12051         (SQL_SNVF_BIT_LENGTH): likewise.
12052         (SQL_SNVF_CHAR_LENGTH): likewise.
12053         (SQL_SNVF_CHARACTER_LENGTH): likewise.
12054         (SQL_SNVF_EXTRACT): likewise.
12055         (SQL_SNVF_OCTET_LENGTH): likewise.
12056         (SQL_SNVF_POSITION): likewise.
12057         (SQL_SP_BETWEEN): likewise.
12058         (SQL_SP_COMPARISON): likewise.
12059         (SQL_SP_EXISTS): likewise.
12060         (SQL_SP_IN): likewise.
12061         (SQL_SP_ISNOTNULL): likewise.
12062         (SQL_SP_ISNULL): likewise.
12063         (SQL_SP_LIKE): likewise.
12064         (SQL_SP_MATCH_FULL): likewise.
12065         (SQL_SP_MATCH_PARTIAL): likewise.
12066         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
12067         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
12068         (SQL_SP_OVERLAPS): likewise.
12069         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
12070         (SQL_SP_UNIQUE): likewise.
12071         (SQL_SQL_CONFORMANCE): likewise.
12072         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
12073         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
12074         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
12075         (SQL_SQL92_GRANT): likewise.
12076         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
12077         (SQL_SQL92_PREDICATES): likewise.
12078         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
12079         (SQL_SQL92_REVOKE): likewise.
12080         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
12081         (SQL_SQL92_STRING_FUNCTIONS): likewise.
12082         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
12083         (SQL_SR_CASCADE): likewise.
12084         (SQL_SR_DELETE_TABLE): likewise.
12085         (SQL_SR_GRANT_OPTION_FOR): likewise.
12086         (SQL_SR_INSERT_COLUMN): likewise.
12087         (SQL_SR_INSERT_TABLE): likewise.
12088         (SQL_SR_REFERENCES_COLUMN): likewise.
12089         (SQL_SR_REFERENCES_TABLE): likewise.
12090         (SQL_SR_RESTRICT): likewise.
12091         (SQL_SR_SELECT_TABLE): likewise.
12092         (SQL_SR_UPDATE_COLUMN): likewise.
12093         (SQL_SR_UPDATE_TABLE): likewise.
12094         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
12095         (SQL_SR_USAGE_ON_COLLATION): likewise.
12096         (SQL_SR_USAGE_ON_DOMAIN): likewise.
12097         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
12098         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
12099         (SQL_SRJO_CROSS_JOIN): likewise.
12100         (SQL_SRJO_EXCEPT_JOIN): likewise.
12101         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
12102         (SQL_SRJO_INNER_JOIN): likewise.
12103         (SQL_SRJO_INTERSECT_JOIN): likewise.
12104         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
12105         (SQL_SRJO_NATURAL_JOIN): likewise.
12106         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
12107         (SQL_SRJO_UNION_JOIN): likewise.
12108         (SQL_SRVC_DEFAULT): likewise.
12109         (SQL_SRVC_NULL): likewise.
12110         (SQL_SRVC_ROW_SUBQUERY): likewise.
12111         (SQL_SRVC_VALUE_EXPRESSION): likewise.
12112         (SQL_SSF_CONVERT): likewise.
12113         (SQL_SSF_LOWER): likewise.
12114         (SQL_SSF_SUBSTRING): likewise.
12115         (SQL_SSF_TRANSLATE): likewise.
12116         (SQL_SSF_TRIM_BOTH): likewise.
12117         (SQL_SSF_TRIM_LEADING): likewise.
12118         (SQL_SSF_TRIM_TRAILING): likewise.
12119         (SQL_SSF_UPPER): likewise.
12120         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
12121         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
12122         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
12123         (SQL_SU_DML_STATEMENTS): likewise.
12124         (SQL_SU_INDEX_DEFINITION): likewise.
12125         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
12126         (SQL_SU_PROCEDURE_INVOCATION): likewise.
12127         (SQL_SU_TABLE_DEFINITION): likewise.
12128         (SQL_SVE_CASE): likewise.
12129         (SQL_SVE_CAST): likewise.
12130         (SQL_SVE_COALESCE): likewise.
12131         (SQL_SVE_NULLIF): likewise.
12132         (SQL_UB_FIXED): likewise.
12133         (SQL_UB_VARIABLE): likewise.
12134         (SQL_UNION_STATEMENT): likewise.
12135         (SQL_UPDATE_BY_BOOKMARK): likewise.
12136         (SQL_US_UNION): likewise.
12137         (SQL_US_UNION_ALL): likewise.
12138         (SQL_DESC_ROWVER): likewise.
12139         (SQL_GUID): likewise.
12140         (SQL_C_GUID): likewise.
12141         (ODBC_STD): likewise.
12142         (SQLAllocHandle): likewise.
12143         (SQLAllocEnv(p)): likewise.
12144         (SQL_YEAR): likewise.
12145         (SQL_MONTH): likewise.
12146         (SQL_DAY): likewise.
12147         (SQL_HOUR): likewise.
12148         (SQL_MINUTE): likewise.
12149         (SQL_SECOND): likewise.
12150         (SQL_YEAR_TO_MONTH): likewise.
12151         (SQL_DAY_TO_HOUR): likewise.
12152         (SQL_DAY_TO_MINUTE): likewise.
12153         (SQL_DAY_TO_SECOND): likewise.
12154         (SQL_HOUR_TO_MINUTE): likewise.
12155         (SQL_HOUR_TO_SECOND): likewise.
12156         (SQL_MINUTE_TO_SECOND): likewise.
12157         (SQL_ATTR_ANSI_APP): likewise.
12158         (SQL_AA_TRUE): likewise.
12159         (SQL_AA_FALSE): likewise.
12160
12161         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
12162         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
12163         (struct tagSQL_DAY_SECOND): likewise.
12164         (struct tagSQL_INTERVAL_STRUCT): likewise.
12165         (struct tagSQL_NUMERIC_STRUCT): likewise.
12166         (struct tagSQLGUID): add for 0DBC3.50.
12167         (enum SQLINTERVAL): add for ODBC3.x.
12168         (SQLWCHAR): add typedef.
12169         (SQLTCHAR): add typedef, conditional on UNICODE.
12170         (SQLLEN): add typedef for _WIN64, define for _WIN32.
12171         (SQLULEN): likewise.
12172         (SQLROWOFFSET): likewise.
12173         (SQLROWCOUNT): likewise.
12174         (SQLTRANSID): likewise.
12175         (SQLSETPOSIROW): likewise.
12176         (SQLHANDLE): add ODBC3.x typedef.
12177         (SQLHDESC): likewise.
12178         (SQLDATE): likewise.
12179         (SQLDECIMAL): likewise.
12180         (SQLDOUBLE): likewise.
12181         (SQLFLOAT): likewise.
12182         (SQLNUMERIC): likewise.
12183         (SQLREAL): likewise.
12184         (SQLTIME): likewise.
12185         (SQLTIMESTAMP): likewise.
12186         (SQLVARCHAR): likewise.
12187         (SQLBIGINT): likewise.
12188         (SQLUBIGINT): likewise.
12189         (SQL_DATE_STRUCT): likewise.
12190         (SQL_TIME_STRUCT): likewise.
12191         (SQL_TIMESTAMP_STRUCT): likewise.
12192         (ODBCINT64): add ODBC3.x define.
12193
12194         * lib/odbc32.def : regenerate.
12195
12196 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
12197
12198         * Apply Danny Smith patch 102275
12199         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12200         * include/objbase.h: (COM_RIGHTS): Add definition.
12201         (tagSTDMSHLFLAGS): add enumeration.
12202         (CoInitializeEx): Add prototypes.
12203         (CoGetStdMarshalEx): ditto.
12204         (CoCreateInstanceEx): ditto.
12205         (CoInitializeSecurity): ditto.
12206         (CoGetCallContext): ditto.
12207         (CoQueryProxyBlanket): ditto.
12208         (CoSetProxyBlanket): ditto.
12209         (CoCopyProxy): ditto.
12210         (CoQueryClientBlanket): ditto.
12211         (CoImpersonateClient): ditto.
12212         (CoRevertToSelf): ditto.
12213         (CoQueryAuthenticationServices): ditto.
12214         (CoSwitchCallContext): ditto.
12215         (CoGetInstanceFromFile): ditto.
12216         (CoGetInstanceFromIStorage): ditto.
12217         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
12218         (SOLE_AUTHENTICATION_INFO): ditto.
12219         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
12220         (COLE_DEFAULT_PRINCIPAL): Add definition.
12221         (COLE_DEFAULT_AUTHINFO): Ditto.
12222         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
12223         (RPC_PROTSEQ_VECTOR) Fix typo.
12224         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
12225         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
12226         attribute.
12227
12228 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
12229
12230         * lib/msvcp60.def: Apply Danny Smith patch 103321.
12231         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
12232         New file.
12233
12234 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12235
12236         * include/winnt.h: Add PTOKEN_USER.
12237
12238 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12239
12240         * include/sqlucode.h: Apply Danny Smith patch 102443
12241         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12242         New file.
12243
12244 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12245
12246         * lib/odbccp32.def: Apply Danny Smith patch 102442
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         * include/odbcinst.h: Apply Danny Smith patch 102441
12253         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12254         New file.
12255
12256 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12257
12258         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12259
12260 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12261
12262         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12263
12264 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12265
12266         * lib/Makefile.in: Install headers and libraries in tooldir.
12267
12268 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12269
12270         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12271         SORT_STRINGSORT: ditto.
12272         CMAP*: ditto.
12273         CTRY_*: add new defines.
12274         LGRPID_*: ditto.
12275         LCMAP*: change defines to hex notation.
12276         CALID: change from ULONG to DWORD.
12277         CALTYPE: ditto.
12278         _cpinfoex[AW]: add structure.
12279         FoldString: correct Unicode mappings.
12280         GetCPInfoEx[AW]: add prototypes.
12281         EnumCalendarInfoEx[AW]: ditto.
12282         EnumDateFormatsEx[AW]: ditto.
12283         EnumSystemLanguageGroups[AW]: ditto.
12284         EnumLanguageGroupLocales[AW]: ditto.
12285         EnumUILanguages[AW]: ditto.
12286         GetSystemDefaultUILanguage[AW]: ditto.
12287         GetUserDefaultUILanguage[AW]: ditto.
12288         IsValidLanguageGroup[AW]: ditto.
12289         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12290         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12291         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12292         UILANGUAGE_ENUMPROC[AW]: ditto
12293         DATEFMT_ENUMPROCEX[AW]: ditto
12294         LPCURRENCYFMT[AW]: add structure pointer typedef
12295         LPNUMBERFMT[AW]: ditto
12296
12297 2000-12-02  Matt Hargett  <matt@use.net>
12298
12299         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12300         possible return code for the SetFilePointer() win32 API call.
12301
12302 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12303
12304         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12305
12306 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12307
12308         * Makefile.in: increment VERSION.
12309         (dist:) Rename to srcdist.  Create new dist target to call
12310         srcdist and bindist targets.
12311         (srcdist:) New target.
12312         (clean-top:) add call to mostlyclean-top and add rm of distribution
12313         tarballs.
12314         * lib/Makefile.in: (uninstall:) modify to remove files from the
12315         new w32api subdirectory and to remove w32api subdirectory.
12316         (xuninstall:) Ditto.
12317         TODO: Add a task to redo the clean targets of Makefile.in
12318
12319 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12320
12321         * lib/Makefile.in: Install header files in w32api subdirectory.
12322
12323 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12324
12325         * CONTRIBUTIONS: New file.
12326         * README: Change the maintained by header.
12327         * TODO: Add a note about checking the TODO.
12328
12329 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12330
12331         * Merge in accepted changes from
12332         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12333         * include/basetyps.h: add comment for GUID_DEFINED
12334         * include/lm.h: add includes for lmerr.h and lmserver.h
12335         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12336         * include/lmerr.h:  add error codes
12337         * include/lmserver.h: replace LPTSTR with LPWSTR,
12338         LPTCSTR with LPWCSTR in structures and prototypes
12339         * include/lmshare.h: ditto
12340         * include/lmuse.h: ditto
12341         * include/lmstats.h: ditto
12342         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12343         * include/winbase.h: change first argument of CommConfigDialog to const
12344         * include/windowsx.h: add macros  defining FAR versions of
12345         mem and string functions for porting from Win16 code
12346         * include/winioctl.h:  added IOCTL_STORAGE defines
12347         * include/winnetwk.h:  added WNNC_NET flags
12348         * include/winnt.h: add include of <basetsd.h>;
12349         add structs; add pointer typedefs  for TOKEN structs
12350         * include/winsock.h: add guard around BSD-ish typedefs
12351         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12352         * include/basetsd.h: new file
12353         * include/raserror.h: ditto
12354         * include/rassapi.h: ditto
12355         * include/ras.h: ditto
12356         comment from Earnie: replaced original ras.h contribution with Danny's
12357         contribution as it is more complete.
12358         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12359
12360 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12361
12362         * Makefile.in: increment VERSION.  Change tar file name for dist and
12363         bindist targets to be more standard.
12364         * config.guess: Update with the currently published file.
12365         * config.sub: ditto.
12366         * configure.in: Use value of build_alias instead of testing for
12367         directory names to set BUILDENV.
12368         * configure: ditto.
12369         * lib/Makefile.in: Change the name of the targets install,
12370         install-headers and install-libraries to xinstall, xinstall-headers
12371         and xinstall-libraries for system target specified installation.
12372         Recreate targets install, install-headers and install-libraries for
12373         exec-prefix specified installation.  Ditto for the uninstall targets of
12374         the same name.
12375
12376 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12377
12378         * include/iprtrmib.h: Further layout changes according to standard.
12379         * include/iptypes.h: Ditto.
12380         * include/ntdef.h: Ditto.
12381         * include/ntsecapi.h: Ditto.
12382         * include/subauth.h: Ditto.
12383
12384 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12385
12386         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12387
12388 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12389
12390         * include/ntsecapi.h: New file.
12391         * include/subauth.h: Ditto.
12392         * include/ipexport.h: Fix global header define not to contain
12393         trailing underscore. Change layout according to standard.
12394         * include/iphlpapi.h: Ditto.
12395         * include/ipifcons.h: Ditto.
12396         * include/iprtrmib.h: Ditto.
12397         * include/iptypes.h: Ditto.
12398         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12399         of inclusion of ntsecapi.h and subauth.h.
12400         * lib/secur32.def: New stub for secur32.dll.
12401
12402 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12403
12404         * include/ras.h: New file.
12405         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12406         RasEnumDevicesW.
12407
12408 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12409
12410         * include/ntdef.h: Add define for NTAPI.
12411
12412 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12413
12414         * include/ipexport.h: Add missing `extern "C"' directives.
12415         * include/iphlpapi.h: Ditto.
12416         * include/iprtrmib.h: Ditto.
12417         * include/iptypes.h: Ditto.
12418
12419 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12420
12421         * include/ipifcons.h: New header file.
12422         * include/iprtrmib.h: Move operational states to ipifcons.h.
12423         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12424         declaration.
12425
12426 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12427
12428         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12429
12430 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12431
12432         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12433         * include/iptypes.h: New header file.
12434         * include/ipexport.h: Ditto.
12435         * include/iphlpapi.h: Ditto.
12436         * include/iprtrmib.h: Ditto.
12437
12438 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12439
12440         * include/ntdef.h: New file.
12441
12442 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12443
12444         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12445         to TOKEN_INFORMATION_CLASS type.
12446         Add QUOTA_LIMITS type.
12447
12448 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12449
12450         * include/userenv.h: New header file.
12451         * lib/userenv.def: New stub for userenv.dll.
12452
12453 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12454
12455         * include/winuser.h: Correct PCWPSTRUCT typo.
12456         (discovered by Axel Riese)
12457
12458 2000-07-27  DJ Delorie  <dj@redhat.com>
12459
12460         * include/windows.h: optimize non-inclusion of repeat headers
12461
12462 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12463
12464         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12465         LPTOKEN_SOURCE.
12466
12467 2000-07-11  DJ Delorie  <dj@cygnus.com>
12468
12469         * include/shlobj.h: add CSIDL_COMMON_*
12470
12471 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12472
12473         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12474         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12475         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12476         FILE_FLAG_OPEN_NO_RECALL.
12477         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12478         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12479         * winnt.h: Add typedef for GUID.
12480         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12481         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12482         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12483         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12484         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12485         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12486         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12487         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12488         * lib/psapi.def: New file.
12489
12490 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12491
12492         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12493         previously defined.
12494         * windef.h : Ditto.
12495
12496 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12497
12498         * include/winnt.h: Add some missing defines related to locale
12499         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12500
12501 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12502
12503         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12504
12505 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12506
12507         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12508
12509 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12510
12511         * include/wininet.h: Add another "INTERNET_OPTIONS".
12512
12513 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12514
12515         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12516
12517 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12518
12519         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12520         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12521         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12522         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12523
12524 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12525
12526         * include/winbase.h: Change first argument of ENUMRES* types to
12527         coincide with Microsoft usage.
12528
12529 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12530
12531         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12532
12533 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12534
12535         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12536         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12537         * include/winnt.h (SEC_*): Add macros.
12538         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12539         * include/ole.h: Workaround for C++ parser bug.
12540         * include/rpcdcep.h: Likewise.
12541         * include/winsock.h: Likewise.
12542
12543 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12544
12545         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12546
12547 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12548
12549         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12550         * include/wtypes.h (PBLOB, LPBLOB): Define.
12551         * include/winsock2.h: Much more complete version.
12552         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12553
12554         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12555         * include/winsock.h (FD_CLR): Add missing ')'.
12556         (timercmp): Fix macro to handle all 6 comparison operators.
12557         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12558         (AF_MAX): Update.
12559         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12560
12561         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12562         namespace pollution.
12563         * include/rpcndr.h: Likewise.
12564         * include/winnt.h: Likewise.
12565         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12566         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12567         * lib/ole32.def: Add missing exports.
12568         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12569         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12570         (NT_TIB): Define.
12571         * include/tlhelp32.h: New file.
12572
12573 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12574
12575         * include/rapi.h: New file.
12576         * lib/rapi.def: New file.
12577
12578 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12579
12580         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12581
12582 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12583
12584         * Snapshot 2000-02-03.
12585
12586 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12587
12588         * include/winnt.h: Add ARM support.
12589
12590 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12591
12592         From Greg Primes <gregory.l.priem@intel.com>:
12593         * include/oaidl.h (DESCKIND): Define macro.
12594         (ITypeComp): Define interface.
12595         (ITypeComp): Likewise.
12596         * rpcndr.h (DECLSPEC_UUID): Define macro.
12597         (MIDL_INTERFACE): Likewise.
12598
12599         * include/psapi.h: New file.
12600         * include/imagehlp.h: New file.
12601         * lib/imagehlp.def: New file.
12602
12603         * include/oaidl.h (tagVARIANT): Update fields.
12604
12605         From Craig Lanning <CraigL@DyCon.com>:
12606         * include/commctrl.h: Add some TCS_* macros.
12607         * include/winnls.h (IsValidLocale): Add prototype.
12608
12609 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12610
12611         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12612         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12613         * include/objbase.h: Likewise.
12614         * include/objidl.h: Likewise.
12615         * include/ocidl.h: New file.
12616         * include/oleauto.h: Likewise.
12617         * include/wtypes.h: Likewise.
12618         * lib/oleaut32.def: Likewise.
12619
12620         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12621         Thanks to "Jon Leichter" <jon@symas.com>.
12622         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12623         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12624         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12625         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12626         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12627         Dorsselaer" <frans@bia-bv.demon.nl>.
12628         * include/httpext.h: New file. Thanks to Jan Nijtmans
12629         <j.nijtmans@chello.nl>.
12630         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12631         redefinition of LPCWAVEFORMATEX in DirectX headers.
12632         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12633         <krzych00@priv7.onet.pl>.
12634         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12635         * include/windef.h (HRESULT): Guard definition to avoid
12636         redefinition in DirectX headers.
12637         * include/winnt.h: Add target macros from windows.h.
12638         * include/windows.h: Update synch comment for target macros.
12639         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12640         (_ANONYMOUS_UNION): Likewise.
12641         * include/wingdi.h (AbortPrinter): Move from here ...
12642         * include/winspool.h (AbortPrinter): to here and fix linkage.
12643         (MONITOR_INFO_2{A,W}): Define.
12644         * include/winsock.h (htons): Fix argument.
12645         (htonl): Likewise.
12646         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12647         (GROUP): Define.
12648         (GUID): Define conditionally.
12649         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12650         (WSASocket*): Declare.
12651         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12652
12653         * lib/dsetup.def: Remove leading underscore.
12654         * lib/dsound.def: Likewise.
12655         * lib/ws2_32.def: Likewise.
12656
12657 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12658
12659         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12660         handles.
12661
12662         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12663         * lib/dinput.c: Include windows.h for GCC.
12664         * lib/dxguid.c: Likewise.
12665         (INITGUID): Define macro.
12666
12667         * include/objidl.h (ISequentialStream): Define interface.
12668         (IStream): Derive from ISequentialStream.
12669
12670         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12671         Clone}): Mark as PURE.
12672         (IDataObject::EnumDAdvise): Likewise.
12673         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12674         (IViewObject::Unfreeze): Likewise.
12675         (IViewObject2::Unfreeze): Likewise.
12676
12677         * include/objidl.h: Add various IID_ declarations.
12678         * include/olectl.h: Likewise.
12679         * include/oleidl.h: Likewise.
12680
12681 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12682
12683         * Snapshot 1999-12-21.
12684
12685         * include/winbase.h (CancelIO): Rename to CancelIo.
12686         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12687         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12688
12689         * Merge with winsup-19991218.
12690         * include/winnt.h: Add defines for W2K ACL control flags.
12691
12692         * Merge with Anders Norlander's 19991130 snapshot.
12693
12694         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12695         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12696
12697         Patch from Harold Weissfield
12698         * include/shellapi.h: Added some ABN_* defines.
12699
12700         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12701         * lib/comctl32.def (_TrackMouseEvent): Import.
12702         * include/winuser.h: Misc. fixes from Sang Cho
12703         <sangcho@alpha94.chongju.ac.kr>.
12704         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12705         value of _WIN32_WINNT.
12706         * include/winuser.h: Reorganize SM_* defines in numerical order.
12707
12708 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12709
12710         * include/windef.h: Make RECTL a distinct type from RECT.
12711         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12712         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12713         (COMPAREITEMSTRUCT): Fix fields.
12714         (SERIALKEYSA): Likewise.
12715         (SERIALKEYSW): Likewise..
12716         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12717         (WIN32_FIND_DATAA): Likewise.
12718         (WIN32_FIND_DATAW): Likewise.
12719         * include/commdlg.h (SNDMSG): Define.
12720         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12721         (SO_CONNECT_TIME): Likewise.
12722         (AcceptEx): Declare.
12723         (GetAcceptExSockaddrs): Likewise.
12724         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12725         * include/winspool.h: Add RC_INVOKED guard.
12726         * lib/wsock32.def (AcceptEx@32): Export.
12727         (GetAcceptExSockaddrs@32): Likewise.
12728
12729 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12730
12731         * Snapshot 1999-11-18.
12732
12733         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12734         Octopod C++ IDE (and MSVC compatibility).
12735         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12736         * include/shellapi.h (ShellAbout*): Fix typo.
12737         * wingdi.h (FW_ULTRABOLD): Likewise.
12738         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12739         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12740         Add packing directives for various structures. All structure
12741         sizes now conform to MSVC.
12742
12743 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12744
12745         Released 1999-11-07.
12746
12747 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12748
12749         * include/winsock2.h: New file. Mostly a stub for now.
12750         * include/winbase.h (DllMain): Delete prototype.
12751         * include/commctrl.h (Header_SetItem): Fix macro.
12752         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12753         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12754         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12755
12756         Merge in changes from wxWindows.
12757         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12758         * include/oaidl.h (DISPID_*): Add macros.
12759         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12760         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12761         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12762         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12763
12764         Merge in changes from Octopod C++ IDE group.
12765         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12766         (Header_InsertItem): Fix macro.
12767         * include/oaidl.h (IID_IDispatch): Declare.
12768         (IID_ISupportErrorInfo): Likewise.
12769         (IDispatch): Rename Invoked to Invoke.
12770         * include/objidl.h (IPersist): Fix GetClassID.
12771         * include/oleauto.h (VectorFromBstr): Declare.
12772         (BstrFromVector): Likewise.
12773         * include/olectl.h (OLEMISC_*): Update.
12774         * include/olectlid.h (IID_IDispatch): Declare.
12775         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12776         (IOleInPlaceFrame): Fix.
12777         (ISupportErrorInfo): Define.
12778         (IErrorInfo): Define.
12779         * include/winuser.h (SIF_TRACKPOS): Define.
12780
12781 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12782
12783         Fix Merge errors:
12784         * include/winnt.h (PSID): Uncomment definition.
12785         (PISID): Rename from PSID.
12786         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12787         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12788
12789         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12790         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12791         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12792         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12793         include/shellapi.h, include/winbase.h, include/wingdi.h,
12794         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12795
12796 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12797
12798         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12799         Marius Kjeldahl <kjeldahl@hotmail.com>.
12800
12801 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12802
12803         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12804         (ERROR_SEVERITY_*): Likewise.
12805
12806 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12807
12808         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12809         (DllMain): Fix prototype.
12810
12811 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12812
12813         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12814         (cderr.h): Don't include.
12815         * include/winuser.h: Fix macro definitions.
12816
12817 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12818
12819         Merge with winsup 1999-07-29:
12820         * include/wincon.h (MOUSE_WHEELED): Define.
12821         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12822         (SECURITY_DESCRIPTOR): Add struct type.
12823         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12824         is equal to PVOID in the Platform SDK! So don't depend on accessing
12825         members through ->.
12826
12827 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12828
12829         * lib/Makefile.in (install-headers): Don't @ commands.
12830         (install-libraries): Ditto.
12831
12832 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12833
12834         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12835
12836 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12837
12838         Patch from Mumit Khan:
12839         * include/windows.h: Fix typo in winsock.h include guard and add
12840         _UWIN to the list.
12841         * include/winnt.h (__int64): Undefine first.
12842         (struct _SID): Declare.
12843
12844 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12845
12846         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12847
12848 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12849
12850         Patch from Mumit Khan:
12851         * Makefile.in: Do the right thing when cross-compiling.
12852         * include/windef.h: Don't define _export and __export if already
12853         defined.
12854
12855 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12856
12857         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12858         (DECLARE_INTERFACE_): Ditto.
12859
12860 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12861
12862         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12863
12864         Reported by Brad Porter
12865         * include/wingdi.h (FW_ULTRALIGHT): Add.
12866         (FW_DEMIBOLD): Add.
12867         (FW_ULTRABOLD): Add.
12868         (FW_BLACK): Add.
12869         (JOHAB_CHARSET): Add.
12870         (VIETNAMESE_CHARSET): Add.
12871
12872
12873 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12874
12875         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12876         * lib/Makefile.in (Makefile): Regenerate.
12877         * include/pshpack[1248].h: New files, if a program would use any of
12878         them.
12879         * include/poppack.h: Ditto.
12880         * include/windef.h (_WIN32_WINNT): Define
12881         * include/windows.h: Remove DUMMYUNIONNAME[45].
12882         * include/windows.h: Correctly define _M_IX86 to reflect the target
12883         processor.
12884         * include/windows.h: Add preliminary support for other architectures.
12885         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12886         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12887         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12888         issue with LARGE_INTEGER.
12889         (ANSI_NULL): Define.
12890         (PSZ): Define.
12891         (ACL_REVISION[1234]): Define.
12892         (MIN/MAX_ACL_REVISION): Define.
12893         (PTCHAR): Define.
12894         (LANG_USER_DEFAULT): Define.
12895         (LANG_SYSTEM_DEFAULT): Define.
12896         (LOCALE_NEUTRAL): Define.
12897         (SORTVERSIONFROMLCID): Define.
12898         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12899         (UNREFERENCED_LOCAL_VARIABLE): Define.
12900         (DBG_UNREFERENCED_PARAMETER): Define.
12901         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12902         * lib/mswsock.def: New file. Imports for mswsock.dll.
12903         * include/custcntl.h: New file. Necessary to compile some SDK
12904         samples.
12905         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12906         (WM_MOUSEWHEEL): Define.
12907         (WHEEL_DELTA): Define.
12908         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12909         (WM_NEXTMENU): Define.
12910         (CharNextA): Fix prototype.
12911         (CharNextW): Ditto.
12912
12913 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12914
12915         * include/winsock.h: Enclose in extern "C" if C++, huh?
12916         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12917
12918 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12919
12920         * include/windef.h (NULL): Define only ifndef
12921         (TRUE): Ditto, was previously only defined ifndef FALSE
12922         (PASCAL): Define as _pascal
12923         (__pascal): Define
12924         (WINAPIV): Define
12925         (min,max): Define only ifndef NOMINMAX
12926
12927 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12928
12929         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12930         You must define _WIN32_IE if you want support for it.
12931         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12932
12933 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12934
12935         * include/wincon.h: Add some ButtonState flags and EventFlags.
12936
12937 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12938
12939         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12940         interface define causes mayhem.
12941         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12942         defined.
12943         * include/windows.h: Undefine BOOL if __OBJC__ defined
12944
12945 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12946
12947         * include/winnls.h: Define additional code pages.
12948
12949 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12950
12951         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12952         order, corrected.
12953         (RtlZeroMemory): Use RtlFillMemory
12954
12955 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12956
12957         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12958         to get the correct size when used in some structs.
12959         (ULARGE_INTEGER): Ditto.
12960         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12961         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12962
12963 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12964
12965         * include/wininet.h: Enclose in extern "C" if c++
12966         (INTERNET_BUFFERSA/W): Define struct
12967         * include/wininet.h: Add some HSR_* defines
12968
12969 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12970
12971         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12972         * include/winnt.h (UNALIGNED): Define
12973         * include/windef.h (DECLSPEC_NORETURN): Define
12974
12975         * include/wininet.h (INTERNET_MAX_NAME): Remove
12976         (INTERNET_MAX_SCHEME_LENGTH): Define
12977         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12978         * include/wininet.def: Completely redone, it was losing badly.
12979
12980 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12981
12982         * lib/dplayx.def: Remove '_' prefixes
12983         * lib/shell32.def: Remove imports for IID_ContextMenu
12984
12985 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12986
12987         * Makefile.in (dist): Support dist target
12988         * lib/Makefile.in (dist): Likewise
12989         * lib/Makefile.in (uninstall-headers): Fix command
12990         * Makefile.in (bindist): Target to build a prebuilt dist
12991
12992         * lib/ws2_32.def: Winsock2 implib
12993
12994         * include/largeint.h: New header
12995         * include/largeint.c: Large integer support library
12996         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12997         (EXTRA_OBJS): Add largeint.o
12998
12999         * include/Makefile: Remove
13000         * lib/Makefile: Remove
13001         * Makefile: Remove
13002         * configure.in: New autoconf script
13003         * configure: generated configure script
13004         * Makefile.in: autoconf makefile template
13005         * lib/Makefile.in: Ditto
13006         * include/test.c: mv to lib/test.c
13007         * include/res.rc: mv to lib/res.rc
13008         * include/TODO: mv to .
13009         * include/Notes: mv to ./NOTES
13010
13011 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
13012
13013         * include/zmouse.h (WHEEL_DELTA): Define
13014
13015 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
13016
13017         * include/ddeml.h (HSZPAIR): Declare.
13018         * include/zmouse.h: New file.
13019
13020 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
13021
13022         * lib/d3dim.def: New implib
13023         * lib/d3drm.def: Ditto
13024         * lib/d3dxof.def: Ditto
13025         * lib/ddraw.def: Ditto
13026         * lib/dinput.def: Ditto
13027         * lib/dplayx.def: Ditto
13028         * lib/dsetup.def: Ditto
13029         * lib/dsound.def: Ditto
13030         * lib/dinput.c: Guid library for DirectInput
13031         * lib/dxguid.c: Guid library for DirectX
13032
13033 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
13034
13035         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
13036         by Ron Aaron).
13037         * include/windowsx.h (GET_Y_LPARAM): Also missing
13038         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
13039         by Mumit Khan).
13040
13041 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
13042
13043         * include/scrnsave.h: New header file for screen saver library
13044         * lib/scrnsave.c: New file: screen saver library
13045
13046 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13047
13048         * include/regstr.h: Enclosed all strings in TEXT() macros so it
13049         works well in when UNICODE is defined
13050
13051 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
13052
13053         * include/winuser.h(STYLESTRUCT): New struct
13054         * include/wingdi.h:(GOBJENUMPROC): This function type should
13055         return void.
13056
13057 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13058
13059         * include/basetyps.h (LPGUID): New typedef
13060         * lib/glut.def: Import library defintions for glut.dll
13061         * lib/glu32.def: Ditto for glut32.dll
13062         * include/winnt.h: Fixed handling of wchar_t typedef
13063         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
13064         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
13065
13066 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
13067
13068         * include/winbase.h(AbnormalTermination): Define as FALSE
13069         * include/commctrl.h: Support for new progress bar messages/styles
13070
13071 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
13072
13073         * include/commdlg.h(PageSetupDlg): New define
13074         * include/richedit.h: Missing SCF_* defines
13075         * include/winnt.h: Lots o' defines
13076         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
13077
13078 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
13079
13080         * include/commdlg.h: Removed pack pragma
13081         * lib/comctl32.def(InitCommonControlsEx@4): Added import
13082
13083 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
13084
13085         * Makefile: Set version to 0.1.5
13086         * lib/Makefile (clean): Fix typo
13087
13088         * include/commctrl.h: Removed pack pragma
13089         * include/cpl.h: Likewise
13090         * include/dbt.h: Likewise
13091         * include/dde.h: Likewise
13092         * include/nddeapi.h: Likewise
13093         * include/shellapi.h: Likewise
13094         * include/wincrypt.h: Likewise
13095         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
13096
13097         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
13098         (servent): Likewise
13099         (protoent): Likewise
13100
13101         * include/windows.h: Prevent inclusion of winsock.h if we are
13102         using or compiling cygwin. Define Win32_Winsock to force inclusion.
13103
13104 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
13105
13106         * include/winbase.h (CREATE_FORCEDOS): New define
13107
13108 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
13109
13110         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
13111         (COORD): Likewise
13112         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
13113         * include/windows.h: Added DUMMYUNIONNAME4 and 5
13114         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
13115         (PLUID_AND_ATTRIBUTES_ARRAY): New type
13116
13117         * include/ddeml.h: Removed unnecessary `#pragma pack'
13118         * include/imm.h: Likewise
13119         * include/nddeapi.h: Likewise
13120         * include/nspapi.h: Likewise
13121         * include/regstr.h: Likewise
13122         * include/wincon.h: Likewise
13123         * include/windef.h: Likewise
13124         * include/winioctl.h: Likewise
13125         * include/winnls.h: Likewise
13126         * include/winsvc.h: Likewise
13127         * include/winuser.h: Likewise
13128         * include/winver.h: Likewise
13129         * include/wtypes.h: Likewise
13130
13131 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
13132
13133         * Makefile (VERSION): Set to 0.1.4
13134         * include/basetyps.h: Check for NOCOMOBJECT
13135         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
13136         on comobject attribute.
13137         * lib/kernel32.def: Added a few functions
13138         * include/windef.h (DWORD): Changed back to unsigned long
13139
13140         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
13141         winresrc.h in turn includes the necessary headers. This makes things
13142         much simpler, no need to protect blocks of code in headers that
13143         should not be seen by the resource compiler.
13144
13145 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
13146
13147         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
13148         * include/wincon.h: Added console event type flags
13149         * include/winnt.h (FILE_SHARE_DELETE): Added
13150           (SECURITY_DESCRIPTOR): typedef as DWORD
13151
13152         * include/winuser.h (WM_PENWINFIRST): Fixed typo
13153         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
13154         define u_* types only if _SYS_TYPES_H is not defined.
13155
13156 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
13157
13158         * COPYING.LIB: Deleted
13159         * README: Updated to reflect license changes
13160         * include/shlobj.h: Remove extra comma on some enums
13161         * include/windef.h: Changed DWORD typedef from unsigned long to
13162         unsigned int in order to avoid warnings on bit fields that
13163         use DWORD.
13164         * include/Makefile (test): Compile with all warnings
13165         * include/unknwn.h: Include objfwd.h
13166         * include/winsock.h: Added missing copyright notices.
13167
13168 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
13169
13170         * lib/winmm.def: Corrected LIBRARY statement
13171         * include/mmsystem.h: Define mmioSeek codes if not already defined
13172         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
13173         (CreateStatusWindowW): Likewise
13174
13175         * include/winresrc.h: Include only files necessary instead of windows.h
13176         * include/dde.h: Allow inclusion in resource scripts.
13177         * include/winnt.h: Likewise
13178         * include/commctrl.h: Likewise
13179         * include/prsht.h: Likewise
13180         * README: Updated
13181
13182 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
13183
13184         * include/sqltypes.h (SQLHANDLE): Added this type
13185         (SQLHDESC): Likewise
13186         * include/sql.h (SQLFreeHandle): Added this prototype
13187         (SQLAllocHandle): Likewise
13188
13189 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
13190
13191         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
13192         conflicts with cygwin headers.
13193
13194 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
13195
13196         * Makefile: Changed VERSION to 0.1.3
13197         * Makefile (dist-lib): New target to make import library only
13198         distribution
13199         * Makefile (dist-hdr): New target to make headers only distribution
13200         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
13201         building one single distribution file.
13202         * dist.mak: Deleted
13203
13204         * include/lm.h: New file
13205         * include/lmcons.h: New file
13206         * include/lmalert.h: New file
13207         * include/lmaudit.h: New file
13208         * include/lmconfig.h: New file
13209         * include/lmapibuf.h: New file
13210         * include/lmaccess.h: New file
13211         * include/lmchdev.h: New file
13212         * include/lmremutl.h: New file
13213         * include/lmrepl.h: New file
13214         * include/lmerrlog.h: New file
13215         * include/lmat.h: New file
13216         * include/lmuse.h: New file
13217         * include/lmuseflg.h: New file
13218         * include/lmserver.h: New file
13219         * include/lmerr.h: New file
13220         * include/lmsname.h: New file
13221         * include/lmstats.h: New file
13222         * include/lmsvc.h: New file
13223         * include/lmwksta.h: New file
13224         * include/lmbrowsr.h: New file
13225
13226 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
13227
13228         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
13229         * include/unknwn.h: Added extern declaration for IID_IClassFactory
13230
13231         * include/initguid.h: New file
13232
13233         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13234         int not supported
13235
13236         * include/winnt.h: Added USN
13237         * include/winnt.h: Changed handling of 64 bit int support
13238
13239         * include/windows.h: Added support for BC,LCC and MSVC
13240
13241         * include/windows.h: Changed handling machine architecture defines
13242
13243         * include/olectl.h: New file
13244
13245 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13246
13247         * include/oleidl.h: Added IViewObject and IViewObject2
13248
13249         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13250         IStorage::MoveElement
13251
13252         * include/oledlg.h: New file
13253
13254         * include/winresrc.h: New file
13255
13256         * include/wingdi.h: Added LPDOCINFO
13257
13258         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13259         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13260         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13261         TabCtrl_SetImageList and TabCtrl_GetItemCount
13262         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13263
13264         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13265
13266         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13267         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13268
13269         * include/commdlg.h: Added LPDEVNAMES
13270
13271         * include/windows.h: Include excpt.h
13272
13273         * include/excpt.h: New file. This file just contains some
13274         stubs for SEH that do nothing.
13275
13276         * include/commctrl.h: Added general WM_NOTIFY codes
13277
13278         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13279         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13280         not be in the headers.
13281         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13282         * include/winuser.h: Added old WM_SIZE parameter names so
13283         wxWindows compiles.
13284         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13285         * include/winuser.h: Added LPDLGITEMTEMPLATE
13286         * include/winuser.h: HTCAPTION was missing value
13287         * include/winuser.h: Added WM_ACTIVE flags
13288
13289         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13290         _fxx defines for memmove, memset and memcmp
13291
13292         * include/windef.h: Changed _export and __export to empty defines
13293
13294         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13295         String parameters were not const and ExtractAssociatedIcon takes
13296         a WORD pointer not DWORD pointer as last parameter.
13297
13298         * Makefile: Changed VERSION to 0.1.2
13299
13300         * include/ole2ver.h: New file
13301
13302         * Makefile: Removed all dependencies on GLUT
13303
13304         * include/GL/glut.h: Removed file because of decision to remove
13305         files that are not part of the library.
13306         * lib/glut.def: Likewise
13307         * lib/glut32.def: Likewise
13308
13309         * include/windows.h: Include winperf.h
13310
13311         * include/winperf.h: New file
13312
13313         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13314
13315         * include/winnls.h: Added calendar types
13316         * include/winnls.h: Added country codes
13317
13318 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13319
13320         * include/windef.h: Added PROC and NEARPROC
13321
13322         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13323         * include/wingdi.h: Added OpenGL types and prototypes
13324         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13325         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13326         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13327         * include/wingdi.h: Added truetype character outline types
13328         * include/wingdi.h: Added DEVMODE initialization flags
13329         * include/wingdi.h: Added panose codes
13330         * include/wingdi.h: Added missing character sets
13331         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13332         NONANTIALIASED_QUALITY
13333         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13334         * include/wingdi.h: Added pointer types for EXTLOGPEN
13335         * include/wingdi.h: Added PATTERN type
13336         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13337         * include/wingdi.h: Added new text metric flags
13338         * include/wingdi.h: Added pitch and family flags
13339         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13340         * include/wingdi.h: Added METAHEADER
13341         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13342         * include/wingdi.h: Added TA_MASK
13343         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13344         * include/wingdi.h: Added error codes
13345
13346         * include/winuser.h: Added missing winhelp structures
13347         * include/winuser.h: Added dialog flags/styles/messages
13348         * include/winuser.h: Added EM_SETMARGIN codes
13349         * include/winuser.h: Made it possiblie to use IDI_XX values
13350         in resource files.
13351         * include/winuser.h: Added missing LoadImage load flags
13352         * include/winuser.h: Added missing message box flags
13353         * include/winuser.h: Added ScrollWindow codes
13354         * include/winuser.h: Added DT_WORD_ELLIPSIS
13355         * include/winuser.h: Added drag and drop support
13356         * include/winuser.h: Added WM_MENUCHAR return codes
13357         * include/winuser.h: Added DLGWINDOWEXTRA
13358         * include/winuser.h: Added missing SetWindowPos flags.
13359         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13360         * include/winuser.h: Added IDHOT_xx defines
13361         * include/winuser.h: Added MOD_WIN
13362         * include/winuser.h: Added missing defines and structs for owner draw
13363         controls.
13364         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13365         WPF_SETMINPOSITION
13366         * include/winuser.h: Added DrawAnimatedRects flags
13367         * include/winuser.h: Added WM_PRINT codes
13368         * include/winuser.h: Added CS_IME class style
13369         * include/winuser.h: Added WM_SIZE codes
13370         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13371         * include/winuser.h: Added WM_NCHITTEST return codes
13372         * include/winuser.h: Added WM_SIZING parameters
13373         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13374         * include/winuser.h: Added menu loop codes.
13375         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13376         NF_REQUERY
13377         * include/winuser.h: Added WM_POWER flags
13378         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13379         * include/winuser.h: Added missing message filter codes
13380         * include/winuser.h: Added WM_KEYXX message flags
13381         * include/winuser.h: Added WM_SHOWMESSAGE flags
13382         * include/winuser.h: Added old ShowWindow commands
13383         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13384         structures.
13385
13386         * include/mciavi.h: New file for the MCI AVI driver that for some
13387         reason is not in mmsystem.h.
13388
13389         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13390         * include/winbase.h: Added SECURITY_xx for CreateFile
13391         * include/winbase.h: Added RTS and DTS control values
13392         * include/winbase.h: Fixed SYSTEM_INFO structure
13393         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13394         * include/winbase.h: Added FILE_TYPE_REMOTE
13395         * include/winbase.h: Added modem status flags
13396         * include/winbase.h: Added HINSTANCE_ERROR
13397         * include/winbase.h: Added DefineDosDevice defines
13398         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13399         * include/winbase.h: Added STARTF_XX flags
13400         * include/winbase.h: Fixed typo on _lcreat prototype.
13401         * include/winbase.h: Moved DBG_XX to winnt.h
13402         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13403         winnt.h
13404
13405         * include/unknwn.h: Added extern declaration of IID_IUnknown
13406
13407         * include/windowsx.h: Added hmemcpy.
13408
13409         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13410         * include/winnt.h: Added PACCESS_TOKEN
13411         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13412         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13413         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13414         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13415         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13416         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13417
13418         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13419         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13420         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13421
13422         * include/winsvc.h: Removed conflicting defines which were supposed
13423         to be in winnt.h
13424
13425         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13426         and SERVICE_ERROR_TYPE.
13427
13428         * include/winnt.h: Added SERVICE_XX defines.
13429         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13430         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13431
13432         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13433         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13434         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13435         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13436
13437 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13438
13439         * include/winbase.h: Corrected prototype for CreateProcessA
13440
13441         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13442         driver extensions.
13443
13444         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13445         be LPSHELLFOLDER* not LPSHELLFOLDER.
13446
13447         * include/windows.h: Include commdlg.h
13448
13449         * include/winuser.h: Added MDICREATESTRUCT
13450
13451         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13452         CB_ERRSPACE, and CB_OKAY
13453
13454         * include/wingdi.h: Added LPBITMAPINFOHEADER
13455
13456         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13457         are meaningless.
13458         * include/rpcdce2.h: Likewise.
13459
13460         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13461
13462         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13463         * include/olectlid.h: Likewise
13464         * include/shlguid.h: Likewise
13465
13466         * include/coguid.h: Delete file since it was for 16 bit windows only.
13467
13468         * lib/*.def: Appended .dll to library name where needed.
13469
13470         * include/windef.h: Define _stdcall and __stdcall only if not
13471         previously defined instead of undefining first.
13472
13473         * include/dlgs.h: Put RC_INVOKED around structure defs
13474
13475         * include/intshcut.h: New file
13476         * include/isguids.h: New file
13477
13478         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13479
13480 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13481
13482         * include/winnt.h: Added check if _T is defined before defining it
13483
13484         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13485
13486         * include/dlgs.h: New file
13487
13488         * include/winbase.h: Removed DllEntryPoint define
13489
13490         * include/winbase.h: Added SetupComm prototype
13491
13492         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13493         supported anyway.
13494
13495         * include/basetyps.h: Removed use of COMOBJECT define, instead
13496         DECLARE_INTERFACE directly uses comobject attribute when GCC
13497         is used.
13498
13499         * include/wtypes.h: STGC enum was missing typedef
13500
13501         * include/objidl.h: ADVC enum was missing typedef
13502
13503         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13504         they are nested within the VOID definition.
13505
13506         * include/winbase.h: Added stream ids and attributes
13507
13508         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13509         to an ANYSIZE_ARRAY array.
13510
13511 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13512
13513         * include/windef.h: defined _declspec as __declspec since
13514         some programs (like VWCL) use _declspec instead of __declspec
13515
13516         * include/winnt.h: added COMPRESS_FORMAT defines
13517
13518         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13519
13520         * include/winnt.h: added HEAP_XXXX defines
13521
13522         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13523
13524         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13525         specification.
13526
13527         * include/winnt.h: added NTAPI define
13528
13529 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13530
13531         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13532         instead of CHAR or WCHAR.
13533
13534         * include/winnt.h: added _T define
13535
13536         * include/winnt.h: added test for _TCHAR_DEFINED
13537
13538         * include/winnt.h: included string.h for memory macros
13539
13540         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13541
13542         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13543
13544         * include/prsht.h: added PropSheet_XXX macros
13545
13546
13547 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13548
13549         * include/winspool.h: Changed DeletePrinterProcessor and
13550         DeletePrinterProvidor to DeletePrintXX.
13551
13552         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13553         LOGCOLORSPACEW.
13554
13555         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13556         variants
13557
13558         * include/wingdi.h: Likewise for GetLogColorSpace
13559
13560         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13561
13562         * include/richedit.h: Added missing defines and structures
13563
13564         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13565
13566         * include/winuser.h: Added HWND_DESKTOP
13567
13568 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13569
13570         * Makefile: Include ChangeLog when building source
13571         distribution (srcdist)
13572
13573         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13574         are always defined as STDAPI and STDAPI_
13575
13576         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13577         are always defined as STDAPI and STDAPI_
13578
13579         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13580
13581         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13582
13583         * ChangeLog started