OSDN Git Service

18d590d780730e9994ceecf9f5987c5cac81c96a
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2018-12-23  Keith Marshall  <keith@users.osdn.me>
2
3         Prepare and publish MinGW.org WSL-5.2 release.
4
5         * All files (wsl-5.2-release): Tag assigned.
6
7 2018-12-18  Keith Marshall  <keith@users.osdn.me>
8
9         Make <winver.h> header effectively self-contained.
10
11         * include/winver.h: Include <windef.h>
12
13 2018-11-23  Keith Marshall  <keith@users.osdn.me>
14
15         Fix MinGW-Bug #2248 (SF ticket).
16
17         * include/commctrl.h (NMPGSCROLL): Set packing to 1-byte alignment.
18         (NMPGSCROLL.fwKeys): Change type from BOOL to WORD.
19
20 2018-11-23  Keith Marshall  <keith@users.osdn.me>
21
22         Apply some more cosmetic layout adjustments.
23
24         * include/commctrl.h: Keep 'typedef' and 'struct' on a single line,
25         for each untagged aggregate type definition.
26
27 2018-11-18  Jelle Geerts  <heisenbug@users.osdn.me>
28
29         Fix MinGW-Bug #38736 (OSDN ticket).
30
31         * include/commctrl.h (DTM_SETFORMATW): Correct definition; was 0x1050,
32         but should be equivalent to 0x1000 + 50, which is actually 0x1032.
33
34 2018-11-18  Keith Marshall  <keith@users.osdn.me>
35
36         Make <commctrl.h> header effectively self-contained.
37
38         * include/commctrl.h: Tidy layout; assert copyright.
39         Include <winbase.h> and <prsht.h>; both are required to resolve
40         inter-header dependencies, so achieving effective self-containment.
41         Correctly parenthesize argument references in macro definitions.
42         (pragma GCC system_header): Remove redundant GCC version guard.
43         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
44         (SNDMSG): Remove definition; it is inherited from <prsht.h> anyway.
45         (__AW_ALIAS__, __AW_SUFFIXED__, __AW_STRING_A__, __AW_STRING_W__):
46         Use them; they facilitate maintenance of robust definitions for...
47         [UNICODE vs. ! UNICODE]: ...generic symbols and strings.
48         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
49
50 2018-11-16  Keith Marshall  <keith@users.osdn.me>
51
52         Make <prsht.h> header effectively self-contained.
53
54         * include/prsht.h: Tidy layout; assert copyright.
55         Include <winuser.h> to resolve inter-header dependencies.
56         Correctly parenthesize argument references in macro definitions.
57         (pragma GCC system_header): Remove redundant GCC version guard.
58         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
59         (SNDMSG, POSTMSG) [ifndef]: Remove guard condition; it prevents GCC
60         from checking consistency of alternative definition sources.
61         (__AW_SUFFIXED__): Use it; it improves robustness of...
62         [UNICODE vs. ! UNICODE]: ...generic definitions.
63         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
64
65 2018-10-29  Keith Marshall  <keith@users.osdn.me>
66
67         Clean up <wincon.h>; consolidate its version dependencies.
68
69         * include/wincon.h: Tidy layout; assert copyright.
70         [_WIN32_WINNT]: Always compare it symbolically, with respect to...
71         [_WIN32_WINNT_WIN2K, _WIN32_WINNT_WINXP, _WIN32_WINNT_VISTA]: ...each
72         of these; group and consolidate respective version dependencies.
73         (FOREGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_RED)
74         (FOREGROUND_INTENSITY, BACKGROUND_BLUE, BACKGROUND_GREEN)
75         (BACKGROUND_RED, BACKGROUND_INTENSITY, COMMON_LVB_LEADING_BYTE)
76         (COMMON_LVB_TRAILING_BYTE, COMMON_LVB_GRID_HORIZONTAL)
77         (COMMON_LVB_GRID_LVERTICAL, COMMON_LVB_GRID_RVERTICAL)
78         (COMMON_LVB_REVERSE_VIDEO, COMMON_LVB_UNDERSCORE, CTRL_C_EVENT)
79         (CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT)
80         (CTRL_SHUTDOWN_EVENT, ENABLE_LINE_INPUT, ENABLE_ECHO_INPUT)
81         (ENABLE_PROCESSED_INPUT, ENABLE_WINDOW_INPUT, ENABLE_MOUSE_INPUT)
82         (ENABLE_INSERT_MODE, ENABLE_QUICK_EDIT_MODE, ENABLE_EXTENDED_FLAGS)
83         (ENABLE_AUTO_POSITION, ENABLE_VIRTUAL_TERMINAL_INPUT)
84         (ENABLE_PROCESSED_OUTPUT, ENABLE_WRAP_AT_EOL_OUTPUT)
85         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
86         (ENABLE_LVB_GRID_WORLDWIDE, KEY_EVENT, MOUSE_EVENT)
87         (WINDOW_BUFFER_SIZE_EVENT, MENU_EVENT, FOCUS_EVENT, CAPSLOCK_ON)
88         (ENHANCED_KEY, RIGHT_ALT_PRESSED, LEFT_ALT_PRESSED)
89         (RIGHT_CTRL_PRESSED, LEFT_CTRL_PRESSED, SHIFT_PRESSED, NUMLOCK_ON)
90         (SCROLLLOCK_ON, FROM_LEFT_1ST_BUTTON_PRESSED)
91         (FROM_LEFT_2ND_BUTTON_PRESSED, FROM_LEFT_3RD_BUTTON_PRESSED)
92         (FROM_LEFT_4TH_BUTTON_PRESSED, RIGHTMOST_BUTTON_PRESSED, MOUSE_MOVED)
93         (DOUBLE_CLICK, MOUSE_WHEELED, MOUSE_HWHEELED, CONSOLE_FULLSCREEN)
94         (CONSOLE_FULLSCREEN_HARDWARE, CONSOLE_FULLSCREEN_MODE)
95         (CONSOLE_WINDOWED_MODE, CONSOLE_NO_SELECTION)
96         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_SELECTION_NOT_EMPTY)
97         (CONSOLE_MOUSE_SELECTION, CONSOLE_MOUSE_DOWN, HISTORY_NO_DUP_FLAG):
98         Redefine, expressing all values in hexadecimal rather than decimal;
99         this is consistent with Microsoft documentation, and it is also more
100         logical, since all represent bit-flags, bit-fields, or bit-masks.
101
102 2018-10-24  Keith Marshall  <keith@users.osdn.me>
103
104         Make <wincon.h> header effectively self-contained.
105
106         * include/wincon.h [_WIN32_WINNT < 0x0600]: Include <windef.h>...
107         [_WIN32_WINNT >= 0x0600]: ...but, Vista and later need <wingdi.h>
108         [__GNUC__ >= 3]: Remove condition; used only in association with...
109         (#pragma GCC system_header): ...this, it is redundant in this context.
110         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them as appropriate.
111
112 2018-10-24  David Gressett  <texasgaidheal@users.osdn.me>
113
114         Improve WinXP/Vista console I/O support.
115
116         * include/wincon.h (AddConsoleAlias, GetConsoleAlias)
117         (GetConsoleAliases, GetConsoleAliasExes, GetConsoleAliasesLength)
118         (GetConsoleAliasExesLength, GetConsoleOriginalTitle): New function
119         name aliases; define them, mapping them conditionally to represent...
120         [UNICODE]: ...their corresponding UTF-16LE function names, else...
121         [!UNICODE]: ...their corresponding ASCII/DBCS function names.
122         (COMMON_LVB_LEADING_BYTE, COMMON_LVB_TRAILING_BYTE
123         (COMMON_LVB_GRID_HORIZONTAL, COMMON_LVB_GRID_LVERTICAL)
124         (COMMON_LVB_GRID_RVERTICAL, COMMON_LVB_REVERSE_VIDEO)
125         (COMMON_LVB_UNDERSCORE, ENABLE_VIRTUAL_TERMINAL_INPUT)
126         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
127         (ENABLE_LVB_GRID_WORLDWIDE,(MOUSE_HWHEELED): Define them.
128         (GetConsoleAliasA, GetConsoleAliasW, HandlerRoutine): Declare.
129         (CONSOLE_FULLSCREEN, CONSOLE_FULLSCREEN_HARDWARE): Define when...
130         [_WIN32_WINNT >= 0x0500]: ...this prevails; additionally...
131         (GetConsoleFontSize): ...declare function.
132         (CONSOLE_NO_SELECTION, CONSOLE_SELECTION_NOT_EMPTY)
133         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_MOUSE_SELECTION)
134         (CONSOLE_MOUSE_DOWN): Define them; make them visible only when...
135         [_WIN32_WINNT >= 0x0501]: ...this prevails.
136         (struct _CONSOLE_FONT_INFO): Make it visible, only when...
137         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
138         (CONSOLE_FONT_INFO, PCONSOLE_FONT_INFO): ...these typedefs.
139         (struct _CONSOLE_SELECTION_INFO): Declare it; visible only when...
140         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
141         (CONSOLE_SELECTION_INFO, PCONSOLE_SELECTION_INFO): ...these typedefs.
142         [_WIN32_WINNT >= 0x0501] (AddConsoleAliasA, AddConsoleAliasW)
143         (GetConsoleAliasesA, GetConsoleAliasesW, GetConsoleAliasExesA)
144         (GetConsoleAliasExesW, GetConsoleAliasesLengthA)
145         (GetConsoleAliasesLengthW, GetConsoleAliasExesLengthA)
146         (GetConsoleAliasExesLengthW, GetConsoleSelectionInfo)
147         (GetCurrentConsoleFont): Declare functions.
148         [_WIN32_WINNT >= 0x0600] (HISTORY_NO_DUP_FLAG): Define it.
149         (struct _CONSOLE_FONT_INFOEX): New structure; declare it only when...
150         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
151         (CONSOLE_FONT_INFOEX, PCONSOLE_FONT_INFOEX): ...these typedefs.
152         (CONSOLE_HISTORY_INFO, PCONSOLE_HISTORY_INFO): New typedefs; they
153         map to an anonymous structure, and are visible only when...
154         [_WIN32_WINNT >= 0x0600]: ...this prevails.
155         (struct _CONSOLE_READCONSOLE_CONTROL): New structure; declare when...
156         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
157         (CONSOLE_READCONSOLE_CONTROL, PCONSOLE_READCONSOLE_CONTROL): ...these.
158         (struct _CONSOLE_SCREEN_BUFFER_INFOEX): New structure; declare when...
159         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
160         (CONSOLE_SCREEN_BUFFER_INFOEX, PCONSOLE_SCREEN_BUFFER_INFOEX):
161         ...these typedefs.
162         [_WIN32_WINNT >= 0x0600] (GetConsoleHistoryInfo)
163         (GetConsoleOriginalTitleA, GetConsoleOriginalTitleW)
164         (GetConsoleScreenBufferInfoEx, GetCurrentConsoleFontEx)
165         (SetConsoleHistoryInfo, SetConsoleScreenBufferInfoEx)
166         (SetCurrentConsoleFontEx): Declare functions.
167
168 2018-09-03  Keith Marshall  <keith@users.osdn.me>
169
170         Prepare and publish MinGW.org WSL-5.1.1 release.
171
172         * All files (wsl-5.1.1-release): Tag assigned.
173
174 2018-07-29  Keith Marshall  <keith@users.osdn.me>
175
176         Don't restrict <winerror.h> exposure when including <winsock.h>
177
178         * include/winerror.h [__WINSOCK_H_SOURCED__]: Remove filters.
179         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): Do not define; delete
180         all dependent filter references.
181
182 2018-07-11  Keith Marshall  <keith@users.osdn.me>
183
184         Make <wincrypt.h> header effectively self-contained.
185
186         * include/wincrypt.h: Include <winbase.h>
187
188 2018-07-11  Keith Marshall  <keith@users.osdn.me>
189
190         Correct <wincrypt.h> typographic errors; fix issue [#38391]
191
192         * include/wincrypt.h (CALG_TLS1PRF): Delete symbolic reference to...
193         (ALG_CLASS_DHASH): ...this; there is no such symbol; replace it with...
194         (ALG_CLASS_HASH): ...this, which represents the correct reference.
195         (struct _CRYPTOAPI_BLOB): Delete extraneous "typedef" keyword; this
196         struct definition is not directly associated with any type name.
197         (struct _SSL_EXTRA_CERT_CHAIN_POLICY_PARA): Likewise.
198
199 2018-02-26  Keith Marshall  <keith@users.osdn.me>
200
201         Prepare and publish MinGW.org WSL-5.1 release.
202
203         * All files (wsl-5.1-release): Tag assigned.
204
205 2018-02-24  Keith Marshall  <keith@users.osdn.me>
206
207         Make <iptypes.h> header effectively self-contained.
208
209         * include/iptypes.h: Assert copyright; tidy layout.
210         Include <windef.h>; it is required for self-containment.
211         (__need_time_t): Define for selective inclusion of <sys/types.h>
212         (_BEGIN_C_DECLS, _END_C_DECLS): Use them as appropriate.
213         (_WIN32_WINNT): Always compare it symbolically.
214         (__dhcp_time_t): New temporary data type macro; define it...
215         [_WIN64]: ...as equivalent to __time64_t, otherwise...
216         [!_WIN64]: ...equivalent to __time32_t, and then...
217         (struct _IP_ADAPTER_INFO): ...use it as the data type for...
218         (LeaseObtained, LeaseExpires): ...these fields.
219
220 2017-12-20  Keith Marshall  <keith@users.osdn.me>
221
222         Make <winreg.h> header effectively self-contained.
223
224         * include/winreg.h: Include <winbase.h>, thus achieving effective
225         self-containment; since this also indirectly includes <_mingw.h>,
226         there is no longer any need to include it directly.
227
228 2017-12-20  Keith Marshall  <keith@users.osdn.me>
229
230         Clean up, following issue [#2262] patch application.
231
232         * include/winreg.h: Tidy layout; correct copyright assertion.
233         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
234         [UNICODE] (__AW): Do not use deleted macro; replace it with...
235         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
236         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
237         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
238         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
239         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
240         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
241         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
242         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
243         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
244         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
245         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
246         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
247         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
248         all "4.x" branches specified these incorrectly, dependent on...
249         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
250         "legacy" branch, whence the "5.x" branches are propagated, correctly
251         required an alternative condition which is the equivalent of...
252         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
253
254 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
255
256         Update registry management API, per issue [#2262].
257
258         * include/winreg.h: Merge changes from 4.1-dev branch.
259         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
260         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
261         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
262         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
263         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
264         (RRF_ZEROONFAILURE): New manifest constants; define them.
265         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
266         (RegOverridePredefKey): Add previously omitted function prototypes.
267         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
268         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
269         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
270         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
271         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
272         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
273         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
274         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
275         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
276         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
277         (RegDeleteKeyValueA, RegDeleteKeyValueW)
278         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
279         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
280         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
281         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
282         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
283         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
284         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
285         (RegSetKeyValue): Define, mapping each to its respective function...
286         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
287         [defined UNICODE] (__AW): ...for the UTF-16LE case.
288
289         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
290         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
291         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
292         (RegSaveKeyExW@16): Remove them; relocate them to...
293         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
294         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
295         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
296         (RegSaveKeyExW@16): ...their correct location, here.
297         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
298         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
299         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
300         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
301         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
302         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
303         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
304
305 2017-12-16  Keith Marshall  <keith@users.osdn.me>
306
307         Provide default definition for _WIN32_IE feature test macro.
308
309         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
310         (_WIN32_IE_IE50): ...this default value.
311
312         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
313         a conflicting proposal for the default value.
314
315 2017-12-06  Keith Marshall  <keith@users.osdn.me>
316
317         Prepare and publish MinGW.org WSL-5.0.2 release.
318
319         * All files (wsl-5.0.2-release): Tag assigned.
320
321 2017-11-28  Keith Marshall  <keith@users.osdn.me>
322
323         Make <wsnetbs.h> header effectively self-contained.
324
325         * include/wsnetbs.h: Assert copyright; tidy layout; include
326         "_winsock.h", so making this header effectively self-contained, and
327         thus relieving the user of a responsibility for ensuring that some
328         other appropriate WinSock header has been included first.
329
330 2017-11-28  Keith Marshall  <keith@users.osdn.me>
331
332         Factor <winsock.h> duplicate content out of <winsock2.h>
333
334         * include/winsock2.h: Remove all declarations and definitions which
335         are identically specified in <winsock.h>, but keep them in scope by...
336         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
337         declarations and definitions therefrom, which introduce conflicts.
338         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
339         definitions and declarations.
340
341         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
342         WinSock v1.1 and WinSock v2, the latter of which will override when
343         correctly included by <winsock2.h>
344
345 2017-11-24  Keith Marshall  <keith@users.osdn.me>
346
347         Make <winsock.h> and <winsock2.h> duplicate code congruent.
348
349         * include/winsock.h (SOMAXCONN): Move definition into...
350         [!__INSIDE_MSYS__]: ...this guarded scope.
351
352         * include/winsock2.h: Rearrange as necessary.
353         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
354         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
355         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
356         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
357         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
358         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
359         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
360         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
361         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
362         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
363         [!defined __INSIDE_MSYS__]: ...as this, throughout.
364         (gethostname): Update function prototype, adding...
365         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
366
367         * include/ws2spi.h: Tidy layout; assert copyright.
368         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
369         (LPFD_SET): Delete all type references; use...
370         (fd_set *): ...this instead.
371
372 2017-11-14  Keith Marshall  <keith@users.osdn.me>
373
374         Establish default selection for WinSock API declaration.
375
376         * include/windows.h include/nspapi.h: Include...
377         * include/_winsock.h: ...this new system private header; it selects...
378         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
379         provided by conditional inclusion of <winsock2.h>, otherwise...
380         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
381         as provided by inclusion of <winsock.h>
382
383         * tests/headers.at <_winsock.h>: Add reference.
384
385 2017-11-14  Keith Marshall  <keith@users.osdn.me>
386
387         Update gethostname() declaration; drop Cygwin specificity.
388
389         * include/winsock.h (gethostname): Declare unconditionally; add...
390         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
391         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
392         [!defined __INSIDE_MSYS__]: ...as this, throughout.
393
394 2017-11-09  Keith Marshall  <keith@users.osdn.me>
395
396         Normalize fd_set event macros for <winsock2.h> compatibility.
397
398         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
399         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
400         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
401         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
402         count to a bit flag with value of 1, in each case respectively.
403         [_WINSOCK2_H]: Extend shift count enumeration, to include...
404         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
405         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
406         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
407         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
408         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
409         of 1 greater than the offset of the last defined flag; hence...
410         (FD_ALL_EVENTS): ...derive this mask for all event flags.
411
412 2017-11-09  Keith Marshall  <keith@users.osdn.me>
413
414         Filter potential WinSock v2 conflicts out of <winsock.h>
415
416         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
417         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
418         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
419         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
420         not define any of these; they are not compatible with WinSock v2.
421         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
422         appropiately in <winsock2.h>
423
424 2017-11-09  Keith Marshall  <keith@users.osdn.me>
425
426         Filter out <winsock.h> typedef anomalies.
427
428         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
429         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
430         them as type definitions, but warn of potential conflict with...
431         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
432         function; declare its prototype.
433
434 2017-11-08  Keith Marshall  <keith@users.osdn.me>
435
436         Overhaul WinSock fd_set content management macros.
437
438         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
439         original implementations of each of these macros, redirecting to...
440         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
441         inline functions, respectively; these are more robust, and correct a
442         defect in the original FD_SET macro implementation, whereby duplicate
443         descriptors could be added to an fd_set array, but would not then be
444         removed by the corresponding FD_CLR macro.
445
446         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
447         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
448         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
449         function, which is implemented in each of these libraries.
450
451 2017-11-07  Keith Marshall  <keith@users.osdn.me>
452
453         Identify features which have been deprecated in WinSock v2.
454
455         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
456         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
457         (__MINGW_ATTRIB_DEPRECATED): ...to this.
458
459         * include/winsock.h include/winsock2.h: Qualify...
460         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
461         (WSACancelBlockingCall): ...each of these function prototypes, with...
462         (__WINSOCK2_DEPRECATED): ...this attribute.
463
464 2017-11-07  Keith Marshall  <keith@users.osdn.me>
465
466         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
467
468         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
469         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
470         with preferred convention for system feature test macros.
471
472 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
473
474         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
475
476         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
477         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
478         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
479         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
480         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
481         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
482         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
483         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
484         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
485         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
486         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
487
488         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
489         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
490
491 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
492
493         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
494
495         * include/wtypes.h: Tidy layout; assert copyright.
496         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
497         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
498         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
499         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
500         (__BLOB_T_DEFINED): ...this; do not define...
501         (_WTYPES_H): ...this external guard.
502
503         * include/nspapi.h: Tidy layout; assert copyright.
504         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
505         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
506         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
507         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
508         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
509         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
510         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
511         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
512         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
513         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
514         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
515         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
516         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
517         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
518         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
519         (__AW_ALIAS__): ...this, for definition of each of...
520         (SERVICE_INFO, LPSERVICE_INFO): ...these.
521
522         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
523         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
524         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
525         include nspapi.h selectively, to acquire them.
526
527 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
528
529         Factor <winerror.h> duplicate content out of winsock headers.
530
531         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
532         conditional block, and all of its content; selectively include...
533         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
534         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
535         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
536         define them, to segregate WSA error messages applicable to WinSock v2
537         only, from those applicable to both WinSock v1.1 and WinSock v2.
538         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
539         codes, except WSABASEERR, relative to WSABASEERR itself.
540
541 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
542
543         Factor <sys/time.h> duplicate content out of winsock headers.
544
545         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
546         conditional block, and all its content; include <sys/time.h> instead.
547         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
548         processing this header, such that only selected content from other
549         internally referenced headers is exposed.
550
551 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
552
553         Source BSD non-standard type definitions from mingwrt header.
554
555         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
556         conditional block, and its entire type definition content; include...
557         * include/sys/bsdtypes.h: ...this common file instead; it defines...
558         (u_char, u_int, u_long, u_short): ...these non-standard data types.
559
560 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
561
562         Correct misuse of __INSIDE_MSYS__ feature test.
563
564         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
565         omits "defined" operator; it should be expressed consistently as...
566         [! defined __INSIDE_MSYS__]: ...this; correct it.
567
568 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
569
570         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
571
572         * include/winsock.h: Tidy layout; assert copyright.
573         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
574
575         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
576         sections, which are common with <winsock.h>, are laid out congruently.
577         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
578         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
579         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
580         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
581         [UNICODE]: ...alternative typedefs, and function name aliases...
582         [!UNICODE]: ...versus this case.
583
584 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
585
586         Resolve secondary issue arising from MinGW-Bug [#2350]
587
588         * include/winuser.h (GetTitleBarInfo)
589         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
590         it conflicted with current MSDN documentation, so now falls within...
591         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
592
593 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
594
595         Resolve MinGW-Bug [#2350]
596
597         * include/winuser.h (GetTitleBarInfo): Move prototype after...
598         (PTITLEBARINFO): ...this type definition; it is used as a function
599         argument type, so must be defined beforehand.
600
601 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
602
603         Extend testsuite to cover winsock fd_set macro operations.
604
605         * tests/winsock.at: New file; it implements appropriate tests, and
606         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
607         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
608
609         * tests/testsuite.at.in (winsock.at): Integrate it.
610         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
611         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
612         default list of libraries, or resets the list to this initial default.
613         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
614         library specifications, to be used until subsequently reset.
615
616 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
617
618         Prepare and tag for release of MinGW.org WSL-5.0.1
619
620         * All files (wsl-5.0.1-release): Tag assigned.
621
622 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
623
624         Automate testsuite dependency generation.
625
626         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
627         enumerate all such wildcard matches as prerequisites, instead of...
628         (headers.at): ...this sole explicit dependency.
629
630 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
631
632         Make <winnt.h> header effectively self-contained.
633
634         * include/winnt.h (_WINNT_H): Defer definition unless included via...
635         (windef.h): ...this; include it, to enforce inclusion order, then...
636         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
637
638 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
639
640         Consolidate <winuser.h> version specific conditionals.
641
642         * include/winuser.h: Reorganize file content; group manifest constant
643         definitions into one nested collection of conditional blocks, with one
644         block per Windows version evolution; do likewise for type definitions
645         and function prototypes which are always exposed, and separately...
646         [! defined NOGDI]: ...for those which may be suppressed, when GDI
647         support is not required.
648
649 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
650
651         Make <winuser.h> header effectively self-contained.
652
653         * include/winuser.h (stdarg.h): Include it, in addition to...
654         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
655         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
656
657 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
658
659         Consolidate <wingdi.h> version specific conditionals.
660
661         * include/wingdi.h: Reorganize file content; group manifest constant
662         definitions into a single nested collection of conditional blocks, for
663         those definitions which are common to both Win9x and WinNT, with one
664         block per Windows version evolution, sorting alphabetically within
665         each block; do likewise for additional manifest constant definitions
666         which are specific to WinNT, and also for data type definitions and
667         function prototypes.
668
669 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
670
671         Tidy, and make <wingdi.h> header effectively self-contained.
672
673         * include/wingdi.h: Tidy layout; assert copyright.
674         (windef.h): Include it; this achieves self-containment.
675         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
676         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
677         (__AW_ALIAS__): ...this, when defining each of...
678         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
679         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
680         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
681         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
682         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
683         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
684         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
685         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
686         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
687         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
688         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
689         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
690         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
691         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
692         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
693         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
694         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
695         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
696         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
697         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
698         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
699         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
700         (wglUseFontOutlines, GetGlyphIndices): ...these.
701
702 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
703
704         Declare CONDITION_VARIABLE API, per feature request [#2314]
705
706         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
707         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
708         (InitializeConditionVariable, SleepConditionVariableCS)
709         (SleepConditionVariableSRW, WakeAllConditionVariable)
710         (WakeConditionVariable): ...declare prototypes.
711
712 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
713
714         Declare SRWLOCK API, to support feature request [#2314]
715
716         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
717         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
718         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
719         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
720         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
721         (TryAcquireSRWLockShared): Declare additional prototypes.
722
723 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
724
725         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
726
727         * include/winerror.h: Tidy layout; assert copyright.
728
729         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
730         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
731         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
732         both locations; it permitted inconsistency between the two.
733
734 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
735
736         Consolidate <winbase.h> version specific conditionals.
737
738         * include/winbase.h: Reorganize file content; group manifest constant
739         definitions into one nested collection of conditional blocks, with one
740         block per Windows version evolution, sorting alphabetically within each
741         block; do likewise for data type definitions and function prototypes.
742
743 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
744
745         Tidy, and make <winbase.h> header effectively self-contained.
746
747         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
748         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
749         (__AW_EXTENDED__): ...this; subsequently reimplement...
750         (__AW_ALIAS__): ...this, with original name, now encapsulating...
751         (__AW_SUFFIXED__): ...this.
752
753         * include/dbt.h (__AW_ALIAS__): Replace all references with...
754         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
755         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
756         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
757
758         * include/winbase.h: Tidy layout; assert copyright.
759         (stdarg.h, windef.h): Include them, to achieve self-containment.
760         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
761         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
762         [__AW_ALIAS__]: ...this, to correctly specify each of...
763         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
764         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
765         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
766         [__AW_SUFFIXED__]: ...this, to correctly map each of...
767         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
768         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
769         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
770         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
771         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
772         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
773         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
774         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
775         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
776         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
777         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
778         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
779         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
780         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
781         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
782         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
783         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
784         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
785         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
786         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
787         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
788         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
789         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
790         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
791         (GetPrivateProfileInt, GetPrivateProfileSection)
792         (GetPrivateProfileSectionNames, GetPrivateProfileString)
793         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
794         (GetProfileString, GetShortPathName, GetStartupInfo)
795         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
796         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
797         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
798         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
799         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
800         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
801         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
802         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
803         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
804         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
805         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
806         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
807         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
808         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
809         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
810         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
811         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
812         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
813         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
814         (WritePrivateProfileString, WritePrivateProfileStruct)
815         (WriteProfileSection, WriteProfileString): ...these, and add...
816         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
817         (GetFirmwareEnvironmentVariable): ...these previously missing generic
818         function name aliases.
819
820 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
821
822         Refactor mingwrt and w32api common makefile content.
823
824         * Makefile.in (w32api-srcdist-config-files): Rename it...
825         (w32api-srcdist-common-files): ...as this phoney build rule.
826         (shared_include_file): New macro; define it, and include named file.
827         (configure, config.status, Makefile, config.status.missing, _mingw.h)
828         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
829         out; relocate them to new file in common parent directory...
830         * ../Makefile.comm: ...here.
831
832 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
833
834         Correct a copyright notice update omission.
835
836         * configure.ac: Extend copyright date range to include 2017.  Also
837         clean up superfluous trailing whitespace.
838
839 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
840
841         Fix generated header file dependencies.
842
843         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
844         [VERSION.m4]: ...this; package version changes are no longer made...
845         [configure.ac]: ...here; delete associated prerequisite reference.
846         (distclean-local): Delete them.
847
848 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
849
850         Prepare and tag for release of w32api-5.0 package set.
851
852         * All files (wsl-5.0-release): Tag assigned.
853
854 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
855
856         Implement basic test suite infrastructure.
857
858         * tests: New subdirectory; it hosts...
859         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
860         * tests/headers.at: ...these new files; they implement the basic test
861         suite infrastructure, initially comprising header integrity checks.
862
863         * configure.ac (AC_PROG_CXX): Check it.
864         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
865         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
866         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
867         tests/Makefile.
868
869         * Makefile.in (check test tests): New rules; all are synonymous.
870         (check-recursive): New rule; invoked by each of the preceding three.
871         (w32api-srcdist-testsuite-files): New rule; implement and use it...
872         (w32api-srcdist-files): ...here.
873
874 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
875
876         Add missing constant definition, per issue [#2249].
877
878         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
879
880 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
881
882         Avoid unnecessary duplication of configuration files.
883
884         * Makefile.in (vpath install-sh): Define it; it matches...
885         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
886         rule for creating duplicate file reference links in $top_srcdir.
887         (configure): Add '-I ..' option, when running autoconf.
888         (w32api-srcdist-files): Rename it as...
889         (w32api-srcdist-package-files): ...this; remove dependencies on...
890         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
891         (w32api-srcdist-config-files): ...this new distributable files
892         enumeration goal; add it as one new prerequisite of...
893         (w32api-srcdist-files): ...this repurposed goal; also depends on...
894         (w32api-srcdist-package-files): ...this; populate it using...
895         (SRCDIST_ADD): ...this macro; redefine it accordingly.
896
897 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
898
899         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
900
901         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
902         it was previously transcribed incorrectly, as being equivalent to...
903         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
904         (FILE_DEVICE_DISK): ...this.
905
906 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
907
908         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
909
910         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
911         alternative generic symbol mapping definitions, and typedefs, with...
912         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
913         their respective ANSI and UNICODE specific references.
914
915 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
916
917         Deprecate obsolete <winable.h> and <pbt.h> headers.
918
919         * Makefile.in (%.h.in): Generalize vpath definition.
920         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
921         (w32api_generated_headers, replace_headers, macro_name): New macros.
922         (install-w32api-headers): Add dependency on w32api_dist_headers.
923         (%.h): New static pattern rule; it generates generic dependants of...
924         * include/obsolete.h.in: ...this new template for obsolete headers.
925
926         * include/winable.h include/pbt.h: Delete them; they are obsolete;
927         replace them by install-time generated generic stubs.
928
929 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
930
931         Update <winuser.h> and <dbt.h>; fix issue [#2317].
932
933         * include/winuser.h: Tidy layout; add copyright notice.
934         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
935         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
936         selective inclusion of content from other headers; delete when done.
937         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
938         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
939         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
940         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
941         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
942         them selectively from <dbt.h>, where they are properly defined.
943         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
944         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
945         formerly UINT, which doesn't match 64-bit size required for Win64.
946         (SetTimer): Likewise; also declare similar return type.
947         (WINEVENTPROC): Add missing CALLBACK attribute.
948         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
949
950         * include/w32api.h (__AW_ALIAS__): New macro; define it.
951         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
952
953         * include/dbt.h: Tidy layout; add copyright notice.
954         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
955         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
956         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
957         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
958         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
959         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
960         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
961         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
962         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
963         structure typedef names, and their respectively corresponding...
964         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
965         type names.
966
967 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
968
969         Fix a minor ISO-C++11 conformity issue.
970
971         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
972         by ISO-C++11, between concatenated string literal elements.
973         (GetFiberData, NtCurrentTeb): Likewise.
974
975 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
976
977         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
978
979         * include/ddk/winddk.h: Update per issue [#2307] resolution.
980         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
981
982 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
983
984         Prepare and tag all files for release of w32api-3.18.1
985
986         * configure.ac (AC_INIT): Increment patch level to 3.18.1
987
988 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
989
990         Resolve improper macro expansion issue [#2307].
991
992         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
993         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
994         dependent macro WITHIN the expansion of each of these; hence...
995
996         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
997         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
998         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
999         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1000         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1001         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
1002         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
1003         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
1004         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1005         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1006         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
1007         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1008         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
1009         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
1010         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
1011         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
1012         ...adjust these dependent macro definitions accordingly.
1013
1014         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
1015         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
1016         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
1017         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1018         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1019         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
1020         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
1021         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1022         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
1023         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
1024
1025 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
1026
1027         Update install-sh to match mingw.org/build-aux package.
1028
1029         * install-sh: Delete it; use version in parent directory instead,
1030         recreating local copy, (as symlink, if supported), on demand.
1031
1032 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1033
1034         Eliminate redundant configuration files.
1035
1036         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
1037         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
1038
1039         * configure.ac (AC_PROG_LN_S): Add configuration check.
1040
1041 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1042
1043         Discard redundant config.guess and config.sub files.
1044
1045         * config.guess config.sub: Delete them; they are no longer required.
1046         * Makefile.in (SRCDIST_ADD): Remove related references.
1047
1048 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1049
1050         Merge recent legacy branch updates to 5.0-active branch.
1051
1052         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
1053         * include/sdkddkver.h include/setupapi.h include/windows.h
1054         * include/winnt.h include/winuser.h include/winver.h
1055         * include/wtsapi32.h lib/wtsapi32.def: Updated.
1056
1057 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1058
1059         Prepare and tag all files for release of w32api-3.18.
1060
1061 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1062
1063         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
1064
1065         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
1066         references from $(MAKE) command lines; make passes them implicitly.
1067
1068 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1069
1070         Backport MemoryBarrier() implementation from 4.0-dev branch.
1071
1072         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
1073         Earnie's original inline implementation, but declared 'static' to fix
1074         issue [#1661]; it is further modified, to avoid the broken pre-Vista
1075         fallback identified by issue [#2131], and to remove references to...
1076         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
1077         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
1078         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
1079         back to inline assembly code when necessary.
1080
1081         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
1082         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
1083         code, for hosts which do not support the SSE2 'mfence' instruction.
1084
1085 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1086
1087         Merge further W32API updates from Cygwin CVS.
1088         Incorporated selected changes from 2012-08-01 to 2012-08-04.
1089
1090         * include/setupapi.h include/winuser.h include/winver.h
1091         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
1092
1093 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1094
1095         Update mapping of GCC to MSVC host identification macros.
1096
1097         * include/windows.h: Assert copyright; tidy layout.
1098         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
1099         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
1100         [!_WINSVC_H]: Do not explicitly test these here; they are properly
1101         managed implicitly, by GCC, when including the associated headers.
1102
1103         * include/winnt.h: Assert copyright; tidy layout.
1104         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1105         (__aligned__, __always_inline__, __selectany__): Prefer these...
1106         (aligned, always_inline, selectany): ...to these attribute forms.
1107         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
1108         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
1109         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
1110         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
1111         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
1112         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
1113         (_M_IX86): ...also removing this, but relocate it to...
1114         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
1115         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
1116         appropriate.
1117
1118         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
1119         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
1120
1121 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1122
1123         Merge W32API updates, from Cygwin CVS, into legacy branch.
1124         Incorporate changes since release of w32api-3.17, until 2012-07-06.
1125
1126         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
1127         2012-04-28 commit to Cygwin CVS.
1128
1129         * include/gdiplus/gdiplustypes.h include/imagehlp.h
1130         * include/routprot.h include/shlwapi.h include/userenv.h
1131         * include/winbase.h include/wincon.h include/windef.h
1132         * include/winerror.h include/wingdi.h include/winnt.h
1133         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
1134         match Cygwin CVS state, as of 2012-07-06.
1135
1136         * include/wincrypt.h: Updated to remove duplicate manifest constant
1137         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
1138         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
1139         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
1140         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
1141         copies of these further duplicated definitions, identified during
1142         the merging operation.
1143
1144 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1145
1146         Synchronize package version management with MinGW Runtime.
1147
1148         * VERSION.m4: New file; link it to keep in sync with identically named
1149         file in top level composite package source directory; it defines...
1150         (__VERSION__): ...this new composite package version macro.
1151
1152         * aclocal.m4: Link it, to keep in sync with identically named files in
1153         top level composite source and sibling mingwrt sub-package directories.
1154         (__VERSION__): New macro; include VERSION.m4 to define it.
1155         (__BUG_REPORT_URL__): New macro; define it.
1156
1157         * configure.ac (AC_INIT): Assign package version and bug report URL...
1158         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
1159         automatic inclusion of aclocal.m4
1160
1161         * Makefile.in (configure): Add dependency on VERSION.m4
1162
1163 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1164
1165         Eliminate redundant <parts/winioctl.h> header.
1166
1167         * include/parts/winioctl.h: Delete it; distribute its content...
1168         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
1169         ...among these, separating it into discrete sections based on...
1170         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
1171         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
1172         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
1173         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
1174
1175         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
1176         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
1177
1178 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1179
1180         Enforce consistent specification of package version.
1181
1182         * include/w32api.h: Rename as...
1183         * include/w32api.h.in: ...this build-time template file.
1184         (__W32API_VERSION): Redefine it, in terms of...
1185         (%PACKAGE_VERSION_LONG%): ...this substitution template.
1186         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
1187         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
1188         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
1189         (%PACKAGE_VERSION_PATCH%): ...these.
1190
1191         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
1192         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
1193         mingwrt/include/_mingw.h.in file.
1194
1195         * Makefile.in (all-w32api-libs): Add dependency on...
1196         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
1197         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
1198         they apply appropriate substitutions to the renamed template files.
1199         (install-w32api-headers): Explicitly add w32api.h
1200
1201 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1202
1203         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
1204
1205         * include/parts/winioctl.h: New file; it provides infrastructure for
1206         sharing of common code between DDK headers and primary <winioctl.h>
1207         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
1208         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
1209         macros; they facilitate more consise expression of factored out IOCTL
1210         and FSCTL macros; define them.
1211
1212         * include/ddk/ntddk.h: Assert copyright; tidy layout.
1213         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
1214         (_DDK_NTDDK_H): ...this; it provides better indication of location.
1215         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1216
1217         * include/ddk/winddk.h: Assert copyright; tidy layout.
1218         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
1219         (_DDK_WINDDK_H): ...this; it provides better indication of location.
1220         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
1221         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1222         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
1223         (METHOD_NEITHER): Redefine as enumeration; factor it out.
1224         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
1225         (FILE_WRITE_ACCESS): Likewise.
1226         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1227         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1228         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1229         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1230         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1231         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1232         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1233         (PPARTITION_INFORMATION_MBR): Likewise.
1234         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1235         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1236         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1237         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1238         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1239         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1240         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1241         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1242         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1243         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1244         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1245         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1246         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1247         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1248         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1249         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1250         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1251         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1252         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1253         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1254         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1255         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1256         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1257         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1258         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1259         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1260         was defined only when including this enumeration from winioctl.h
1261         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1262         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1263         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1264         include parts/winioctl.h
1265
1266         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1267         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1268         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1269         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1270         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1271         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1272         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1273         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1274         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1275         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1276         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1277         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1278         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1279         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1280         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1281
1282         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1283         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1284         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1285         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1286         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1287         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1288         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1289         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1290         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1291         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1292         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1293         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1294         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1295         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1296         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1297         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1298         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1299         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1300         these macros are now defined in parts/winioctl.h; include it.
1301         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1302         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1303         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1304         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1305         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1306         (VALID_NTFT): Redefine as enumeration; factor it out.
1307         (IsRecognizedPartition, IsContainerPartition): Factor out.
1308         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1309         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1310         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1311         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1312         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1313         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1314         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1315         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1316         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1317         (struct _PARTITION_INFORMATION): Change field data types for...
1318         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1319         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1320         with Windows DDK convention, then factor out struct, together with...
1321         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1322         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1323         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1324         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1325         (struct _GET_LENGTH_INFORMATION)
1326         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1327         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1328         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1329         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1330         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1331         (PFORMAT_EX_PARAMETERS): Factor out.
1332         (struct _REASSIGN_BLOCKS): Change field data types for...
1333         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1334         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1335         convention, then factor out the struct definition, together with...
1336         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1337         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1338         (PSET_PARTITION_INFORMATION): Factor out.
1339         (struct _VERIFY_INFORMATION): Change field data type for...
1340         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1341         factor out the entire struct definition, together with...
1342         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1343         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1344         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1345         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1346         (PDISK_GROW_PARTITION): Factor out.
1347
1348         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1349         definitions from Windows DDK headers, by including parts/winioctl.h;
1350         delete duplicate definitions already identified as having been factored
1351         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1352         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1353         UCHAR, resulting in no significant changes, except that...
1354         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1355         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1356         (StorageManagerName): ...these previously missing fields, originally
1357         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1358         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1359
1360 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1361
1362         Windows application module version information API updates.
1363
1364         * include/winver.h: Assert copyright; tidy layout.
1365         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1366         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1367         having both ANSI and UTF-16LE specific alternative implementations.
1368         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1369         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1370         note that both are generic, with ANSI and UTF-16LE implementations,
1371         but the ANSI implementations are missing from MSVCRT.DLL when...
1372         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1373
1374         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1375         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1376
1377 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1378
1379         Revert a failed experimental macro construct.
1380
1381         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1382         code, and doesn't work in the C preprocessor conditional context where
1383         its associated constant definitions are most likely to be required.
1384         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1385         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1386         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1387         now in terms of their preferred equivalents from <sdkddkver.h>
1388
1389 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1390
1391         Code clean-up; fix MinGW-Bug [#2263].
1392
1393         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1394         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1395         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1396
1397         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1398         style comments, using ISO-C conforming style; remove all redundant
1399         parameter names from function prototype declarations, throughout.
1400         (pragma GCC system_header): Remove pointless conditional guard.
1401         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1402         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1403         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1404         alternatives, respectively; they offer improved self-documentation.
1405         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1406         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1407         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1408         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1409         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1410         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1411         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1412         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1413         from their __AW_STRING_A__ equivalent string constant definitions.
1414         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1415         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1416         a hexadecimal expression of the mask value over the former decimal.
1417         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1418         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1419         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1420         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1421         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1422         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1423         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1424         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1425         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1426         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1427         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1428         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1429         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1430         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1431         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1432         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1433         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1434         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1435         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1436         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1437         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1438         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1439         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1440         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1441         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1442         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1443         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1444         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1445         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1446         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1447         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1448         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1449         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1450         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1451         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1452         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1453         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1454         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1455         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1456         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1457         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1458         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1459         express them in hexadecimal, in preference to original decimal form.
1460         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1461         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1462         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1463         a string literal, but was missing delimiting quotes; insert them.
1464         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1465         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1466         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1467         aliases for each of the UNICODE/non-UNICODE cases respectively.
1468         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1469         was declared as type LPTSTR, but should be type LPSTR.
1470         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1471         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1472         type LPSTR, but should be type LPWSTR.
1473         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1474         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1475         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1476
1477 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1478
1479         Correct defect in build system compilation rule.
1480
1481         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1482         source file; it expands to also include prerequisite header files,
1483         which should not appear on the compilation command line.  Rewrite
1484         rule in static pattern format, and use $< instead.
1485
1486 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1487
1488         Build system corrections for GCC build time support.
1489
1490         * configure.ac (AC_PROG_CC): Don't use this; we need...
1491         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1492         building with only a stage 1 partially built GCC installation.
1493
1494         * Makefile.in (install-headers): New make objective; map it to...
1495         (install-w32api-headers): ...this, for which it is a logical alias.
1496
1497 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1498
1499         Overhaul and streamline build system configuration.
1500
1501         * configure.in: Delete obsolete file; replace with...
1502         * configure.ac: New file; rewritten per current autoconf conventions.
1503
1504         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1505         it now processes the entire build without using separate sub-makes.
1506
1507         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1508         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1509
1510 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1511
1512         Remove unused aclocal.m4 configuration file.
1513
1514         * aclocal.m4: Delete it; it provides no content used by this package.
1515
1516 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1517
1518         Adapt platform feature checks to NTDDI_VERSION conventions.
1519
1520         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1521         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1522         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1523         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1524         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1525
1526         * include/w32api.h: Assert copyright; include sdkddkver.h.
1527         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1528         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1529         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1530         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1531         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1532         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1533         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1534         macro definitions by long integer constants, and mark as deprecated.
1535         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1536         mingwrt/include/_mingw.h, whence we similarly relocate...
1537         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1538
1539         * include/windef.h: Assert copyright; include w32api.h, whence we
1540         infer default assignments, per included sdkddkver.h, for each of...
1541         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1542         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1543
1544 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1545
1546         Remove generated configure script from revision control.
1547
1548         * configure: Delete from SCM; maintainer must regenerate it, when
1549         required, as SCM will now ignore it.
1550
1551 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1552
1553         Cosmetic adjustment to match MSDN documentation.
1554
1555         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1556         of parameter #1 to be LPCVOID, in preference to formerly specified,
1557         and functionally equivalent, 'const LPVOID'.
1558
1559 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1560
1561         Correct typos, as identified by issue [#1534].
1562
1563         * include/setupapi.h (SetupCancelTemporary): Should be...
1564         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1565         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1566         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1567         (SetupQueryA, SetupQueryW): ...these respectively to...
1568         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1569         (SetupDiGetWizardage): Misspelled; correct it to...
1570         (SetupDiGetWizardPage): ...this.
1571
1572 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1573
1574         Declare WTSVirtualChannel API functions per issue [#1342].
1575
1576         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1577         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1578         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1579         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1580         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1581
1582         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1583
1584 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1585
1586         Correct MENUITEMINFO structure definition per issue [#1659].
1587
1588         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1589         field was defined as type DWORD; correct it to type ULONG_PTR.
1590
1591 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1592
1593         Extend visibility of winsock definitions when building Cygwin.
1594
1595         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1596         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1597         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1598         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1599         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1600         [__INSIDE_MSYS__]: ...keep them hidden.
1601
1602         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1603         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1604         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1605         [__INSIDE_MSYS__]: ...also keep them hidden.
1606
1607 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1608
1609         Correct version guard for WinXP minimum requirement.
1610
1611         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1612         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1613         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1614         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1615
1616 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1617
1618         Add missing <shobjidl.h> and associated UUID implementation.
1619
1620         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1621         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1622
1623 2012-03-19  Ben Greear  <greear@users.sf.net>
1624
1625         Adjust header file definition order, to fix issue [#1570].
1626
1627         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1628         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1629
1630 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1631
1632         Add missing return value, flagged by 'make test'.
1633
1634         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1635         Return NO_ERROR in virtual definition.
1636
1637 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1638
1639         Remove duplicate definitions, identified by 'make test'.
1640
1641         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1642         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1643         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1644         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1645         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1646         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1647
1648         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1649         correctly defined (per MSDN) in <wincrypt.h>
1650
1651 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1652
1653         Correct misuse of #ifdef, identified by 'make test'.
1654
1655         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1656         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1657
1658 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1659
1660         Replace more incorrectly named manifest constants.
1661
1662         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1663         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1664         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1665         definitions respectively; retain for backward compatibility only.
1666
1667 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1668
1669         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1670
1671         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1672
1673 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1674
1675         Add missing MAPVK manifest constant definitions.
1676
1677         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1678         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1679
1680 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1681
1682         Correct some misspelled manifest constant names.
1683
1684         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1685         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1686         alias to original misspelling, to maintain backward compatibility.
1687         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1688         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1689         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1690         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1691
1692 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1693
1694         Add a missing Win2K sockets IOCTL feature.
1695
1696         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1697
1698 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1699
1700         Fix an incorrectly typed structure member.
1701
1702         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1703         should be LPSTR; correct it.
1704
1705 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1706
1707         Add another missing manifest constant definition.
1708
1709         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1710
1711 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1712
1713         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1714
1715         * include/windef.h (PACKED): Delete macro definition; its name is not
1716         reserved, and may thus conflict with a user defined name; replace it...
1717         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1718         use __attribute__((packed)) directly instead.
1719
1720 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1721
1722         Fix bad typedef, per MinGW-Bug [#1529].
1723
1724         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1725         conform with MSDN reference, as identified by Safety0ff.
1726
1727 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1728
1729         Add a missing manifest constant definition.
1730
1731         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1732
1733 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1734
1735         Win2K and Vista userenv updates.
1736
1737         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1738         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1739         (ExpandEnvironmentStringsForUser): Define function aliases.
1740         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1741         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1742         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1743         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1744         (GetProfileType): Declare function prototypes.
1745         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1746         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1747         New manifest constants; define them.
1748
1749 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1750
1751         * Makefile.in: Increment CYGRELEASE to 2.
1752
1753 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1754
1755         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1756
1757 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1758
1759         * include/w32api.h: Increment version to 3.17.
1760         * Makefile.in: Ditto.
1761
1762 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1763
1764         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1765         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1766         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1767         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1768
1769 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1770
1771         * include/w32api.h: Increment version to 3.16.
1772         * Makefile.in: Ditto.
1773
1774 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1775
1776         * include/commctrl.h (NMTCKEYDOWN): Define.
1777
1778 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1779
1780         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1781         Define.
1782
1783 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1784
1785         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1786         PSAPI_WORKING_SET_INFORMATION): Define.
1787
1788 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1789
1790         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1791
1792 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1793
1794         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1795
1796 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1797
1798         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1799         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1800         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1801
1802 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1803
1804         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1805         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1806         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1807
1808 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1809
1810         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1811         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1812
1813 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1814
1815         * include/winbase.h (__MINGW_EXTENSION): Define.
1816         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1817         struct to correct issue with -std=c99.
1818
1819 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1820
1821         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1822         (TIMER_BASIC_INFORMATION): Define.
1823         (NtQueryTimer): Define.
1824         (ZwQueryTimer): Define.
1825
1826 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1827
1828         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1829
1830 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1831
1832         * include/winbase.h (GetComputerNameEx): Define.
1833
1834 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1835
1836         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1837
1838 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1839
1840         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1841         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1842         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1843         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1844         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1845         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1846         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1847         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1848         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1849
1850 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1851
1852         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1853         Add defines for backward compatibility.
1854
1855 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1856
1857         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1858         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1859         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1860         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1861         EnumResourceTypesW): Ditto.
1862         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1863
1864 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1865
1866         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1867
1868 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1869
1870         * include/bdatypes.h: Add missing semicolons.
1871
1872 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1873
1874         * include/w32api.h: Increment version to 3.15.
1875         * Makefile.in: Ditto.
1876
1877 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1878
1879         * Makefile.in: Update naming convention and compression format (lzma),
1880         leaving existing naming convention and compression format as is for Cygwin.
1881
1882 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1883
1884         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1885         STATE_SYSTEM_PROTECTED): Define.
1886
1887         Thank you to Marcus von Appen for reporting the issue.
1888
1889 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1890
1891         * include/winuser.h (CF_DIBV5): Define.
1892         (CF_MAX): Adjust accordingly.
1893
1894         Thank you to Lenard Lindstrom for reporting the issue.
1895
1896 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1897
1898         * include/sspi.h (QuerySecurityContextToken): Define.
1899         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1900
1901         Thank you to Magnus Hagander for reporting the issue.
1902
1903 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1904
1905         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1906
1907 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1908
1909         * include/shlwapi (ASSOCDATA): Update definition.
1910
1911         Thank you to Frederic Deschamps for reporting the issue.
1912
1913 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1914
1915         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1916         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1917         COPY_FILE_NO_BUFFERING): Define.
1918
1919         Thank you to Roland Schwingel for reporting the issue.
1920
1921 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1922
1923         * include/winuser.h (HHOOK): Move definition from here...
1924         * include/windef.h: ...to here, as per MSDN.
1925
1926         Thank you to Samuel Thibault for reporting the issue.
1927
1928 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1929
1930         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1931         MSDN, change return type to LPCH.
1932         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1933
1934         Thank you to Emmanuel Stapf for reporting the issue.
1935
1936 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1937
1938         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1939         * include/windowsx.h (SNDMSG): Ditto.
1940
1941 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1942
1943         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1944
1945         Thank you to Ozkan Sezer for reporting the issue.
1946
1947 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1948
1949         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1950
1951         Thank you to Chris Oldwood for reporting the issue.
1952
1953 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1954
1955         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1956
1957         Thank you to Rick Walsh for reporting the issue.
1958
1959 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1960
1961         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1962
1963 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1964
1965         * include/winbase.h (OVERLAPPED): Correct definition.
1966
1967 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1968
1969         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1970         definition.
1971
1972         Thank you to Pasi Ruokola for reporting the issue.
1973
1974 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1975
1976         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1977
1978         Thank you to cheznonnon for reporting the issue.
1979
1980 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1981
1982         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1983
1984 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1985
1986         * winnt.h: Fix several SUBLANG ID errors (ref:
1987         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1988         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1989         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1990         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1991         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1992         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1993         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1994         (SUBLANG_LAO_LAO): ... this.
1995         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1996         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1997         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1998         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1999         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
2000         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
2001         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
2002         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
2003         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
2004         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
2005         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
2006
2007 2010-08-24  LRN  <lrn1986@gmail.com>
2008
2009         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
2010         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
2011         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
2012         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
2013         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
2014         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
2015         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
2016         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
2017         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
2018         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
2019         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
2020         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
2021         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
2022         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
2023         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
2024         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
2025         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
2026         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
2027         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
2028         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
2029         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
2030         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
2031         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
2032         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
2033         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
2034         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
2035         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
2036         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
2037         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
2038         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
2039         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
2040         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
2041         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
2042         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
2043         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
2044         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
2045         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
2046         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
2047         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
2048         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
2049         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
2050         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
2051         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
2052         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
2053         WAVE_FORMAT_DTS2): Define.
2054         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
2055         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
2056         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
2057         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
2058         Define.
2059
2060 2010-08-23  LRN  <lrn1986@gmail.com>
2061
2062         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
2063         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
2064         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
2065         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
2066         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
2067         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
2068         GetFinalPathNameByHandleW): Define.
2069
2070 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2071
2072         * lib/CheckConflicts.sh: New file.
2073
2074 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2075
2076         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
2077         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
2078         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
2079         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
2080         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
2081         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
2082         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
2083         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
2084         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
2085         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
2086         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
2087         conflicting definition.
2088         * lib/th32.def: Remove.
2089         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
2090         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
2091         definition.
2092
2093 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2094
2095         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
2096
2097 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2098
2099         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
2100
2101 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
2102
2103         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
2104         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
2105         * include/ddk/winddk.h: Ditto.
2106
2107 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
2108
2109         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
2110         CreateSymbolicLinkA, CreateSymbolicLink): Define
2111
2112 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2113
2114         * lib/kernel32.def(FatalExit): Correct definiton.
2115
2116 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2117
2118         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
2119         from 2010-07-17 since it breaks several applications.
2120
2121 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2122
2123         * lib/kernel32.def: Regenerate using gendef.
2124
2125 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
2126
2127         * include/commctrl.h (LVIF_GROUPID): Fix definition.
2128
2129 2010-07-20  Michael James  <james.me@gmail.com>
2130
2131         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
2132
2133 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2134
2135         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
2136         definition.
2137         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
2138         NdrMarshSCtxtHdl): Ditto.
2139         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
2140         definition in favour of typedef definition.
2141
2142         Thank you to Yuta Tomino for reporting the issues.
2143
2144 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
2145
2146         * include/gdiplus.h: New file.
2147         * include/gdiplus/gdiplus.h: New file.
2148         * include/gdiplus/gdiplusbase.h: New file.
2149         * include/gdiplus/gdiplusbrush.h: New file.
2150         * include/gdiplus/gdipluscolor.h: New file.
2151         * include/gdiplus/gdipluscolormatrix.h: New file.
2152         * include/gdiplus/gdipluseffects.h: New file.
2153         * include/gdiplus/gdiplusenums.h: New file.
2154         * include/gdiplus/gdiplusflat.h: New file.
2155         * include/gdiplus/gdiplusgpstubs.h: New file.
2156         * include/gdiplus/gdiplusgraphics.h: New file.
2157         * include/gdiplus/gdiplusheaders.h: New file.
2158         * include/gdiplus/gdiplusimageattributes.h: New file.
2159         * include/gdiplus/gdiplusimagecodec.h: New file.
2160         * include/gdiplus/gdiplusimaging.h: New file.
2161         * include/gdiplus/gdiplusimpl.h: New file.
2162         * include/gdiplus/gdiplusinit.h: New file.
2163         * include/gdiplus/gdipluslinecaps.h: New file.
2164         * include/gdiplus/gdiplusmatrix.h: New file.
2165         * include/gdiplus/gdiplusmem.h: New file.
2166         * include/gdiplus/gdiplusmetafile.h: New file.
2167         * include/gdiplus/gdiplusmetaheader.h: New file.
2168         * include/gdiplus/gdipluspath.h: New file.
2169         * include/gdiplus/gdipluspen.h: New file.
2170         * include/gdiplus/gdipluspixelformats.h: New file.
2171         * include/gdiplus/gdiplusstringformat.h: New file.
2172         * include/gdiplus/gdiplustypes.h: New file.
2173         * lib/gdiplus.c: New file containing GDI+ variable definitions
2174         and GUIDs.
2175         * lib/gdiplus.def: New file.
2176         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
2177         add gdiplus.c to SOURCES.
2178         * lib/test.c: Include gdiplus.h.
2179
2180 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
2181
2182         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
2183         GetPerformanceInfo): Define.
2184         * lib/psapi.def (GetPerformanceInfo): Define.
2185         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
2186         CryptEnumProviders): Define.
2187
2188 2010-02-17  LRN  <lrn1986@gmail.com>
2189
2190         * include/shlguid.h (IID_IFolderView): Define.
2191         * include/shlobj.h (IFolderView interface): Define.
2192         * lib/shell32.c (IID_IFolderView): Export.
2193
2194 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2195
2196         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
2197         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2198
2199 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2200
2201         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
2202
2203 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2204
2205         * include/shlobj.h (SHParseDisplayName): Fix definition.
2206
2207 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2208
2209         * include/w32api.h: Increment version to 3.14.
2210         * Makefile.in: Ditto.
2211
2212 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2213
2214         * include/shlobj.h (SHParseDisplayName): Define.
2215
2216         Thanks to James Roberts-Thomson for the report.
2217
2218 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2219
2220         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
2221
2222         Thanks to Alexander Vassilev for the report.
2223
2224 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2225
2226         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2227
2228         Thanks to Thomas Denk for the report.
2229
2230 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2231
2232         * include/winbase.h (UnmapViewOfFile): Correct definition.
2233
2234         Thanks to Dimitry Sibiryakov for the report.
2235
2236 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2237
2238         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2239
2240 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2241
2242         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2243         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2244
2245 2009-20-10  Michael James  <james.me@gmail.com>
2246
2247         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2248         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2249         >= 0x0501.
2250         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2251         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2252         RemoveWindowSubclass@12): Add exports.
2253         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2254
2255 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2256
2257         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2258         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2259         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2260         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2261         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2262         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2263         RegisterTouchWindow, UnregisterTouchWindow): Define.
2264         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2265         RegisterTouchWindow, UnregisterTouchWindow): Define.
2266
2267 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2268
2269         * include/winver.h (VerQueryValue[AW]): Correct definition.
2270
2271 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2272
2273         * include/shlobj.h (SHARD): Add enum.
2274         (SHARD_PATH): Define based on UNICODE.
2275
2276         Thanks to Jacek Caban for the report.
2277
2278 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2279
2280         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2281
2282         Thanks to Bruno Martinez for the report.
2283
2284 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2285
2286         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2287         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2288         SHGetIconOverlayIndex): Define.
2289
2290         Thanks to Tim Kosse for the report.
2291
2292 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2293
2294         * include/wincon.h (AttachConsole): Correct guard.
2295
2296         Thanks to Alexander Shaduri for the report.
2297
2298 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2299
2300         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2301         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2302
2303 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2304
2305         * include/winerror.h: Fix typos in macro names.
2306
2307 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2308
2309         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2310         definition.
2311
2312 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2313
2314         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2315
2316 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2317
2318         Honor DESTDIR for winsup/mingw and winsup/w32api.
2319         Detect and report error if installation paths are win32
2320         format, but DESTDIR is non-empty.
2321
2322         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2323         when invoking make in subdirs.
2324         * lib/Makefile.in (DESTDIR): Honor per convention.
2325         (need-DESTDIR-compatibility): New macro; define it and a
2326         corresponding rule.
2327         (fail-DESTDIR-compatibility): New dependency goal.
2328         (install-libraries, install-headers, uninstall-libraries,
2329         uninstall-headers): Require need-DESTDIR-compatibility.
2330         * lib/ddk/Makefile.in: Ditto.
2331         * lib/directx/Makefile.in: Ditto.
2332
2333 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2334
2335         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2336         _WIN32_WINNT >= 0x0500.
2337         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2338         WRITE_RESTRICTED): Define.
2339         (IsTokenRestricted): Declare for >= Win 2000.
2340
2341 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2342
2343         * include/wtsapi32.h (WTSQuerySessionInformationA,
2344         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2345         Moved to (_WIN32_WINNT >= 0x0500) guard.
2346         (thanks to Pierre Ossman)
2347
2348 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2349
2350         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2351         IS_SURROGATE_PAIR): Define.
2352
2353 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2354
2355         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2356         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2357         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2358         * include/ddk/ntifs.h: Ditto.
2359         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2360
2361 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2362
2363         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2364         from here...
2365         * lib/gdo32.dll: ...to here.
2366
2367 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2368
2369         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2370         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2371         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2372         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2373         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2374         entry points.
2375
2376 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2377
2378         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2379         WTSEnumerateSessionsA): Add function prototypes.
2380         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2381         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2382         defines dependent on UNICODE setting.
2383
2384 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2385
2386         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2387         and vice versa.
2388         * include/ddk/ntifs.h: Ditto.
2389         * include/ddk/winddk.h: Ditto.
2390         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2391         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2392         in header, but missing in lib.  Omit NT4-only entry points.
2393
2394 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2395
2396         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2397         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2398         * lib/shell32.def (SHGetImageList): Define.
2399
2400 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2401
2402         * winnt.h: Add Vista token security extensions.
2403         (SID_HASH_SIZE): Define.
2404         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2405         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2406         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2407         (SID_HASH_ENTRY): Define.
2408         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2409         (struct _TOKEN_LINKED_TOKEN): Define.
2410         (struct _TOKEN_MANDATORY_LABEL): Define.
2411         (struct _TOKEN_MANDATORY_POLICY): Define.
2412         (struct _TOKEN_ELEVATION): Define.
2413         (struct _TOKEN_ACCESS_INFORMATION): Define.
2414         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2415         information enumeration values.
2416
2417 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2418
2419         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2420         from ddk/ntifs.h.
2421
2422 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2423
2424         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2425
2426 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2427
2428         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2429
2430 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2431
2432         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2433         NtSetEaFile.
2434
2435 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2436
2437         * include/winbase.h (SCS_64BIT_BINARY): Define.
2438
2439 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2440
2441         * include/w32api.h: Increment version to 3.13.
2442         * Makefile.in: Ditto.
2443
2444 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2445
2446         * lib/glut.def: remove.
2447         * lib/glut32.def: ditto.
2448
2449 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2450
2451         * include/winbase.h (PROCESS_DEP_ENABLE,
2452         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2453         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2454         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2455
2456 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2457
2458         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2459
2460 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2461
2462         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2463
2464 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2465
2466         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2467
2468 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2469
2470         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2471         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2472         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2473         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2474         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2475         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2476         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2477         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2478         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2479         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2480         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2481         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2482         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2483         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2484         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2485         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2486         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2487         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2488         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2489         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2490         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2491         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2492         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2493         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2494         (capSendMessage): Don't undef.
2495
2496 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2497
2498         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2499         undefined.
2500
2501 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2502
2503         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2504         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2505         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2506         SUBLANG_ROMANIAN_MOLDOVA): Define.
2507
2508 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2509
2510         * include/shlwapi.h (ASSOCSTR): Update enum.
2511
2512 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2513
2514         * include/w32api.h: Increment version to 3.12.
2515         * Makefile.in: Ditto.
2516
2517 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2518
2519         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2520
2521 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2522
2523         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2524
2525 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2526
2527         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2528         Thanks to Richard Hughes for report.
2529
2530 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2531
2532         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2533         naming standard for Cygwin.
2534
2535 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2536
2537         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2538
2539 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2540
2541         * include/ddk/scsi.h: Define READ_TOC formats.
2542         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2543
2544 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2545
2546         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2547         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2548         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2549         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2550         NdisMCancelTimer): Define.
2551         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2552         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2553         eliminate warnings.
2554         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2555         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2556         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2557         Export.
2558
2559 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2560
2561         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2562         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2563
2564 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2565
2566         * include/ddk/winddk.h (KeRaiseIrql): Define.
2567         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2568
2569 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2570
2571         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2572         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2573         (InterlockedIncrement, InterlockedDecrement): fix warning.
2574         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2575         (KeNumberProcessors): Export.
2576
2577 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2578
2579         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2580         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2581         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2582         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2583         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2584
2585 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2586
2587         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2588
2589         Thanks to Tim Kosse <botg at users dot sf dot net>.
2590
2591 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2592
2593         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2594         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2595         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2596         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2597         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2598         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2599         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2600
2601 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2602
2603         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2604         WTSQuerySessionInformation, WTSFreeMemory): Define.
2605
2606 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2607
2608         * lib/gdi32.def (SetLayout): Export.
2609
2610 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2611
2612         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2613         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2614         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2615         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2616         CertSetCertificateContextProperty, CertCompareCertificateName,
2617         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2618         CryptGetDefaultProviderW and many corresponding macroes): Define.
2619         * lib/crypt32.def (Export the above 11 functions): Export.
2620         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2621         macroes): Define.
2622
2623
2624 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2625
2626         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2627         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2628
2629 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2630
2631         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2632
2633 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2634
2635         * include/lmaccess.h (struct _USER_INFO_4): Define.
2636         (struct _USER_INFO_23): Define.
2637         (struct _GROUP_INFO_3): Define.
2638
2639 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2640
2641         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2642         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2643         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2644         MIB_TCP6TABLE_OWNER_PID): Define.
2645         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2646
2647 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2648
2649         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2650         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2651         of 0x0502.
2652         Bug reported by Thomas Denk.
2653
2654 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2655
2656         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2657         InterlockedCompareExchange, InterlockedExchange,
2658         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2659         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2660         Bug reported by Erik Blake.
2661
2662 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2663
2664         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2665         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2666         Bug reported by Brian Hawley.
2667
2668 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2669
2670         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2671         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2672         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2673         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2674         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2675         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2676         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2677         (DsGetDcNameW, DsGetDcNameA): Declare.
2678         (DsGetDcName): Define.
2679         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2680
2681 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2682
2683         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2684
2685         Thanks to Tim Kosse <botg at users dot sf dot net>.
2686
2687 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2688
2689         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2690
2691         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2692
2693 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2694
2695         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2696         (FILE_SUPPORTS_TRANSACTIONS): Define.
2697
2698 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2699
2700         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2701         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2702
2703 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2704
2705         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2706         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2707         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2708         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2709         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2710         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2711         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2712         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2713         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2714         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2715         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2716         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2717         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2718         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2719         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2720         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2721         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2722         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2723         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2724         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2725         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2726         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2727         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2728         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2729         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2730         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2731         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2732         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2733         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2734         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2735         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2736         capDriverConnect, capDriverDisconnect, capDriverGetName,
2737         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2738         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2739         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2740         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2741         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2742         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2743         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2744         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2745         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2746         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2747         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2748         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2749         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2750         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2751         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2752
2753 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2754
2755         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2756         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2757         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2758         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2759         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2760         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2761         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2762         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2763         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2764         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2765         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2766         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2767         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2768         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2769         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2770         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2771         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2772         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2773         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2774         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2775         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2776         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2777         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2778         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2779         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2780         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2781         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2782         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2783         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2784         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2785         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2786         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2787         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2788         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2789         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2790         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2791         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2792         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2793         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2794         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2795         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2796         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2797         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2798         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2799         *SpUserModeInitializeFn): Define.
2800         * include/sspi.h (SECURITY_STRING): Define.
2801
2802 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2803
2804         * include/specstrings.h: Add more dummy defines.
2805
2806 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2807
2808         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2809         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2810         (SECURITY_MANDATORY_LOW_RID): Define.
2811         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2812         (SECURITY_MANDATORY_HIGH_RID): Define.
2813         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2814         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2815         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2816         (SE_GROUP_INTEGRITY): Define.
2817         (SE_GROUP_INTEGRITY_ENABLED): Define.
2818
2819 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2820
2821         * include/sddl.h (ConvertStringSidToSidA): Declare.
2822         (ConvertStringSidToSidW): Declare.
2823         (ConvertStringSidToSid): Define.
2824
2825 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2826
2827         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2828         and MPR_INTERFACE_3 structure since they are available only in Windows
2829         Server 2008
2830
2831         Thanks to crackedmind  <crackedmind at sf dot net>.
2832
2833 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2834
2835         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2836         definitions.
2837         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2838
2839 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2840
2841         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2842
2843 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2844
2845         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2846         * include/windef.h (IN, OUT, OPTIONAL): Define.
2847
2848 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2849
2850         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2851         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2852         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2853         __out_bcount_opt): Move to specstrings.h.
2854
2855 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2856
2857         * lib/bthprops.def: new file, bluetooth imports.
2858
2859 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2860
2861         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2862         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2863         __out_bcount_opt): Defined additional pseudo-modifiers.
2864
2865 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2866         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2867         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2868         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2869         dwRedialPause.
2870
2871 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2872
2873         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2874         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2875         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2876         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2877         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2878         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2879         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2880         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2881         * include/winuser.h (RegisterPowerSettingNotification,
2882         UnregisterPowerSettingNotification): Add prototypes.
2883         * lib/user32.def: Added imports for the above prototypes.
2884         * lib/Makefile.in: Added build support for power-uuid.c.
2885         * lib/power-uuid.c: New file containing power GUID definitions.
2886
2887 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2888
2889         * include/ras.h (RAS_MaxDnsSuffix): define.
2890
2891 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2892
2893         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2894         Add prototypes.
2895         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2896         Add exports.
2897
2898 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2899
2900         * include/w32api.h: Increment version to 3.11.
2901         * Makefile.in: Ditto.
2902
2903 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2904
2905         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2906         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2907
2908 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2909
2910         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2911
2912 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2913
2914         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2915         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2916
2917 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2918
2919         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2920
2921 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2922
2923         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2924         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2925         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2926         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2927         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2928         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2929         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2930         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2931         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2932         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2933         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2934         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2935         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2936         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2937         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2938         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2939         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2940         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2941         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2942         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2943         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2944         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2945         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2946         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2947         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2948         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2949         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2950         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2951         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2952         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2953         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2954         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2955         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2956         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2957         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2958         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2959         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2960         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2961         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2962         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2963         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2964         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2965         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2966         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2967         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2968         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2969         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2970         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2971         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2972         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2973         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2974         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2975         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2976         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2977         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2978         CryptEncodeObjectEx): define.
2979
2980 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2981
2982         * include/winbase.h (CheckTokenMembership): define.
2983
2984 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2985
2986         * include/rpcndr.h: Missing NdrClientCall2 entry.
2987         * lib/rpcrt4.def: Ditto.
2988
2989 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2990         * lib/scnsave.c: Multi-monitor support.
2991
2992 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2993
2994         * include/w32api.h: Increment version to 3.10.
2995         * Makefile.in: Ditto.
2996
2997 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2998
2999         * include/winbase.h (ReOpenFile): Add prototype.
3000         * lib/kernel32.def (ReOpenFile@16): Add export.
3001
3002 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3003
3004         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
3005
3006 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
3007
3008         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
3009         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
3010
3011 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3012
3013         * include/wtypes.h (LPDECIMAL): Define.
3014         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
3015
3016 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
3017
3018         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
3019
3020 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
3021
3022         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
3023         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
3024
3025 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3026
3027         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
3028         Define.
3029
3030 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3031
3032         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
3033         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
3034         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
3035         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
3036         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
3037         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
3038         Sync with include/pbt.h.
3039
3040 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3041
3042         [mingw-Bugs-1751518]
3043         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
3044         get_URL.
3045
3046         [mingw-Bugs-1751565]
3047         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
3048
3049         [mingw-Bugs-1751595]
3050         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
3051         methods.
3052
3053         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3054
3055 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
3056
3057         [mingw-Bugs-1750898]
3058         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
3059         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3060
3061 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
3062
3063         [mingw-Bugs-1749305]
3064         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
3065
3066 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
3067
3068         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
3069
3070 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
3071
3072         * include/oaidl.h: Include windows.h and ole2.h,
3073         unless COM_NO_WINDOWS_H.
3074
3075         [mingw-Bugs-1742130]
3076         * include/oaidl.h (struct tagVARIANT): Add union members
3077         LONGLONG  * pllVal and ULONGLONG * pullVal.
3078
3079 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
3080
3081         * include/ws2tcpip.h (s6_addr32): Correct definition.
3082         Thanks to Alfred E. Heggestad <aeh at db dot org>
3083
3084 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3085
3086         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
3087
3088         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
3089         supplying the information.
3090
3091 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3092
3093         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
3094
3095 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3096
3097         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
3098         Vista.
3099
3100 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
3101
3102          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
3103         CRYPTPROTECT_LOCAL_MACHINE): Define.
3104
3105 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
3106
3107         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
3108         Define.
3109
3110 2007-03-30  Brian Dessent  <brian@dessent.net>
3111
3112         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
3113
3114 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3115
3116         * include/w32api.h: Increment version to 3.9.
3117         * Makefile.in: Ditto.
3118
3119 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
3120
3121         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
3122
3123 2007-03-23  Matthew Gregan  <kinetik@flim.org>
3124
3125         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
3126
3127 2007-03-06  Brandon Sneed  <brandon@oqo.com>
3128
3129         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
3130         Added SetupConfigureWmiFromInfSectionW
3131         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
3132
3133         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
3134
3135         * include/winuser.h: Added PBT_APMQUERYSUSPEND
3136         Added PBT_APMQUERYSTANDBY
3137         Added PBT_APMQUERYSUSPENDFAILED
3138         Added PBT_APMQUERYSTANDBYFAILED
3139         Added PBT_APMSUSPEND
3140         Added PBT_APMSTANDBY
3141         Added PBT_APMRESUMECRITICAL
3142         Added PBT_APMRESUMESUSPEND
3143         Added PBT_APMRESUMESTANDBY
3144         Added PBT_APMBATTERYLOW
3145         Added PBT_APMPOWERSTATUSCHANGE
3146         Added PBT_APMOEMEVENT
3147         Added PBT_APMRESUMEAUTOMATIC
3148
3149         * include/wtsapi32.h: New file
3150
3151         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
3152
3153 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
3154
3155         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
3156         argument to constant.
3157
3158 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
3159
3160         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
3161         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
3162         Add prototypes.
3163         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
3164
3165 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
3166
3167         * lib/user32.def (InternalGetWindowText): Add stub.
3168
3169 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
3170
3171         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
3172         LANG_BOSNIAN_NEUTRAL): Define.
3173
3174 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
3175
3176         * include/winuser.h: Add guards around TITLEBARINFO and
3177         GetTitleBarInfo().
3178
3179 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
3180
3181         * include/winbase.h (struct _OVERLAPPED): Change type of
3182         Internal, InternalHigh members to ULONG_PTR.
3183         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
3184         (CreateIoCompletionPort): Likewise.
3185         (PostQueuedCompletionStatus): Likewise.
3186         (QueueUserAPC): Likewise.
3187
3188 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
3189
3190         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
3191         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
3192         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
3193         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
3194         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
3195         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
3196         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
3197         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
3198         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
3199         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
3200
3201 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
3202
3203         * Makefile.in: Add aclocal.m4 to source release.
3204
3205 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3206
3207         * include/w32api.h: Increment version to 3.8.
3208         * Makefile.in: Ditto.
3209
3210 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
3211
3212         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
3213         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
3214
3215         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
3216
3217 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
3218
3219         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
3220
3221         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
3222         inline static.
3223         (GetFiberData): Likewise.
3224         * lib/kernel32.c: Remove.
3225         * lib/Makefile.in: Remove reference to kernel32.[co].
3226
3227 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3228
3229         * include/winnt.h (SE_RELABEL_NAME): Define.
3230         (SE_INCREASE_WORKING_SET_NAME): Define.
3231         (SE_TIME_ZONE_NAME): Define.
3232         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3233
3234 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3235
3236         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3237         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3238         SymbolicLinkReparseBuffer substructure.
3239
3240 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3241
3242         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3243
3244 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3245
3246         * lib/Makefile.in: Fix order for 'all' rule.
3247
3248 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3249
3250         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3251
3252 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3253
3254         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3255         mappings.
3256         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3257         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3258
3259 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3260
3261         * include/rpc.h: Add whitespace.
3262         * include/winnt.h (C_ASSERT): Define.
3263
3264 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3265
3266         [mingw-Bugs-1568067]
3267         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3268         * include/wingdi.h: (DM_POSITION): Define.
3269
3270 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3271
3272         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3273         * lib/user32.def: Likewise.
3274
3275 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3276
3277         * lib/Makefile.in: fix typo.
3278         * lib/ddk/Makefile.in: fix typo.
3279         * lib/directx/Makefile.in: fix typo.
3280
3281         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3282         for pointing it out.
3283
3284 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3285
3286         * Makefile.in: Remove files from lib directory with distclean target
3287
3288 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3289
3290         * include/winuser.h (CS_DROPSHADOW): Define.
3291
3292 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3293
3294         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3295         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3296         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3297         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3298
3299         Increase each constant by 1.
3300
3301 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3302
3303         [mingw-Bugs-1553275]
3304         * include/wingdi.h (SetLayout): Add prototype.
3305         (GetLayout): Likewise.
3306
3307 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3308
3309         [mingw-Bugs-1550139]
3310         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3311         Tanks to:  Samit Basu <samitbasu at sf dot net>
3312         (GetRecordInfoFromGuids): Add prototype.
3313
3314 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3315
3316         * include/winbase.h: Add comment about 'missing' SEM flag.
3317
3318 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3319
3320         * configure.in: Substitute with_cross_host in depending files.
3321         * configure: Regenerate.
3322         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3323         Set installation directories accordingly.
3324         * lib/ddk/Makefile.in: Ditto.
3325         * lib/directx/Makefile.in: Ditto.
3326
3327 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3328
3329         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3330         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3331         Bug reported by: <macleone at users dot sf dot net>
3332
3333 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3334
3335         Update some more IMAGE relocation type indicators
3336         to PECOFF v8 (May, 2006) specs.
3337
3338         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3339         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3340         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3341         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3342         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3343         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3344         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3345         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3346         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3347         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3348         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3349         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3350         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3351         IMAGE_REL_SHM_NOMODE): Add defines.
3352
3353         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3354         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3355         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3356         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3357         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3358         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3359         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3360         IMAGE_REL_M32R_TOKEN): Add defines.
3361
3362         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3363
3364 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3365
3366         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3367         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3368         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3369         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3370         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3371         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3372         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3373         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3374         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3375         Add defines.
3376
3377         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3378         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3379         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3380         Add defines.
3381
3382         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3383
3384         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3385         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3386         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3387         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3388         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3389         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3390
3391         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3392
3393         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3394         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3395         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3396         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3397         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3398         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3399         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3400         Add defines.
3401
3402         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3403         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3404         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3405         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3406         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3407         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3408         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3409         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3410         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3411         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3412         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3413         IMAGE_REL_IA64_ADDEND): Add defines.
3414
3415         (IMAGE_SCN_GPREL): Add define.
3416
3417 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3418
3419         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3420         * include/basetyps.h:  Likewise.
3421         (_COM_interface): New define.
3422         (interface): Define to _COM_interface, conditional on !__OBJC__.
3423         Replace 'interface' with '_COM_interface', throughout.
3424         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3425         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3426         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3427         * include/mshtml.h: Likewise.
3428         * include/oaidl.h: Likewise.
3429         * include/objfwd.h: Likewise.
3430         * include/objidl.h: Likewise.
3431         * include/ocidl.h: Likwise.
3432         * include/olectl.h: Likewise.
3433         * include/oleidl.h: Likewise.
3434         * include/shlobj.h: Likewise.
3435         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3436         * include/vfw.h: Likewise.
3437         * include/windows.h. Likewise. Add comment.
3438         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3439         throughout.
3440
3441         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3442         Add test for conflict with '@interface'
3443
3444 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3445
3446         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3447         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3448         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3449         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3450         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3451         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3452         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3453         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3454         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3455         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3456         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3457         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3458         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3459         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3460         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3461         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3462         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3463         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3464         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3465         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3466         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3467         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3468         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3469         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3470         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3471         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3472         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3473         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3474         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3475         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3476         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3477         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3478         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3479         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3480         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3481         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3482         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3483         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3484         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3485         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3486         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3487         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3488         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3489         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3490         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3491         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3492         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3493         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3494         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3495         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3496         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3497         CertDeleteCertificateFromStore): Define.
3498         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3499         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3500         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3501         CertAddCertificateContextToStore, CertCompareCertificate,
3502         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3503         Define.
3504
3505 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3506
3507         * lib/uuid.c: Remove.
3508
3509 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3510
3511         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3512         declarations. They were extracted from the registry with a script.
3513         * lib/devguid.c: Add new file with the implementation of the
3514         missing GUIDs.
3515         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3516
3517 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3518
3519         * include/winuser.h (WM_INPUT): Add missing Raw Input
3520         notification define.
3521         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3522         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3523
3524 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3525
3526         [mingw-Bugs-1525021]
3527         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3528         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3529         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3530         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3531         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3532         (IP_ADAPTER_ADDRESSES): Likewise.
3533
3534 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3535
3536         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3537         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3538         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3539         extras-uuid.c.
3540         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3541         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3542         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3543         * lib/hlguids-uuid.c: State source of CLSIDs.
3544
3545 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3546
3547         * lib/Makefile.in: Added extras-uuid as an object and source.
3548         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3549         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3550         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3551         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3552         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3553         * lib/extras-uuid.c: New file.
3554         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3555         net).
3556
3557 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3558
3559         [mingw-Bugs-1424461]
3560         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3561         throughout.
3562         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3563         _NO_W32_PSEUDO_MODIFIERS.
3564         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3565         throughout.
3566         *include/rpcnsip.h: Likewise.
3567         *include/windef.h: Don't define IN, OUT or OPTIONAL
3568         if _NO_W32_PSEUDO_MODIFIERS.
3569         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3570         throughout.
3571         *include/ddk/cfgmgr32.h: Likewise.
3572         *include/ddk/ddkmapi.h: Likewise.
3573         *include/ddk/hidclass.h: Likewise.
3574         *include/ddk/hidpi.h: Likewise.
3575         *include/ddk/kbdmou.h: Likewise.
3576         *include/ddk/mcd.h: Likewise.
3577         *include/ddk/miniport.h: Likewise.
3578         *include/ddk/minitape.h: Likewise.
3579         *include/ddk/ndis.h: Likewise.
3580         *include/ddk/ndistapi.h: Likewise.
3581         *include/ddk/ndiswan.h: Likewise.
3582         *include/ddk/ntapi.h: Likewise.
3583         *include/ddk/ntdd8042.h: Likewise.
3584         *include/ddk/ntddpcm.h: Likewise.
3585         *include/ddk/ntifs.h: Likewise.
3586         *include/ddk/ntpoapi.h: Likewise.
3587         *include/ddk/parallel.h: Likewise.
3588         *include/ddk/pfhook.h: Likewise.
3589         *include/ddk/scsiwmi.h: Likewise.
3590         *include/ddk/smbus.h: Likewise.
3591         *include/ddk/srb.h: Likewise.
3592         *include/ddk/storport.h: Likewise.
3593         *include/ddk/tdikrnl.h: Likewise.
3594         *include/ddk/upssvc.h: Likewise.
3595         *include/ddk/usbcamdi.h: Likewise.
3596         *include/ddk/usbscan.h: Likewise.
3597         *include/ddk/video.h: Likewise.
3598         *include/ddk/videoagp.h: Likewise.
3599         *include/ddk/win2k.h: Likewise.
3600         *include/ddk/winddi.h: Likewise.
3601         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3602         if _NO_W32_PSEUDO_MODIFIERS.
3603         Comment out IN, OUT and OPTIONAL, throughout.
3604         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3605         throughout.
3606         *include/ddk/ws2san.h: Likewise.
3607
3608 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3609
3610         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3611
3612 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3613
3614         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3615         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3616         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3617         * lib/hlguids-uuid.c: New file.
3618         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3619         net).
3620
3621 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3622
3623         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3624         objects.
3625         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3626         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3627         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3628         IID_IHlinkTarget): Remove.  Moved to new files.
3629         * lib/urlmon-uuid.c: New file.
3630         * lib/hlink-uuid.c: New file.
3631
3632 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3633
3634         * lib/Makefile.in: Added ativscp-uuid as source and object.
3635         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3636         IID_IActiveScriptParse, IID_IActiveScriptSite,
3637         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3638         * lib/ativscp-uuid.c: New file.
3639
3640 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3641
3642         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3643         Remove.  Moved to objidl-uuid.c
3644         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3645         IID_IServerSecurity): Defined.
3646
3647 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3648
3649         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3650         objects.
3651         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3652         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3653         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3654         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3655         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3656         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3657         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3658         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3659         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3660         files.
3661         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3662         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3663         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3664         * lib/cguid-uuid.c: New file.
3665         * lib/olectlid-uuid.c: New file.
3666
3667 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3668
3669         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3670         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3671         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3672         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3673         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3674         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3675         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3676         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3677         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3678         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3679         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3680         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3681         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3682         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3683         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3684         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3685         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3686         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3687         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3688         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3689         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3690         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3691         * lib/comcat-uuid.c: New file.
3692         * lib/docobj-uuid.c: New File.
3693         * lib/exdisp-uuid.c: New file.
3694         * lib/mlang-uuid.c: New file.
3695         * lib/oaidl-uuid.c: New file.
3696         * lib/objidl-uuid.c: New file.
3697         * lib/objsafe-uuid.c: New file.
3698
3699 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3700
3701         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3702         objects.
3703         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3704         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3705         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3706         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3707         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3708         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3709         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3710         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3711         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3712         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3713         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3714         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3715         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3716         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3717         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3718         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3719         * lib/oleidl-uuid.c: New file.
3720         * lib/oleacc-uuid.c: New file.
3721         * lib/ocidl-uuid.c: New file.
3722
3723 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3724
3725         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3726         objects.
3727         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3728         Remove.  Moved to unknwn-uuid and servprov-uuid.
3729         * lib/unknwn-uuid.c: New file.
3730         * lib/servprov-uuid.c: New file.
3731
3732 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3733
3734         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3735         enum.
3736
3737 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3738
3739         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3740
3741 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3742
3743         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3744         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3745         wingdi.h defines.
3746
3747 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3748
3749         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3750         duplicate defines.
3751
3752         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3753         removal.
3754         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3755
3756 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3757
3758         * configure.in: Update to newer autoconf.
3759         (thanks to Steve Ellcey)
3760         * configure: Regenerate.
3761         * aclocal.m4: New file.
3762
3763 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3764
3765         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3766
3767 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3768
3769         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3770         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3771         as macros.
3772         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3773
3774 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3775
3776         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3777         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3778         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3779         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3780         (MprAdminMIBSetTrapInfo): Declare functions.
3781         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3782         (MIB_SERVER_HANDLE): New typedef.
3783         (MprConfigTransportSetInfo): Declare function.
3784         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3785         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3786
3787 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3788
3789         * lib/rtutils.def: New file. Generated on Windows XP.
3790         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3791         * include/rtutils.h: New file.
3792         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3793         Commented out, they're missing from rtutils.def.
3794
3795 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3796
3797         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3798         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3799         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3800         (MprInfoRemoveAll): Declare functions.
3801
3802 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3803
3804         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3805         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3806         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3807         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3808         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3809         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3810         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3811         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3812         (MprConfigServerConnect,MprConfigServerDisconnect)
3813         (MprConfigServerGetInfo,MprConfigServerInstall)
3814         (MprConfigServerRestore,MprConfigTransportCreate)
3815         (MprConfigTransportDelete,MprConfigTransportEnum)
3816         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3817         (MprConfigTransportSetInfo): Declare functions.
3818
3819 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3820
3821         * include/mprapi.h (MprAdminBufferFree)
3822         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3823         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3824         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3825         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3826         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3827         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3828         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3829         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3830         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3831         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3832         (MprAdminInterfaceTransportSetInfo)
3833         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3834         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3835         (MprAdminServerConnect,MprAdminServerDisconnect)
3836         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3837         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3838         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3839
3840 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3841
3842         * include/ipxtfflt.h: New file.
3843
3844 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3845
3846         * include/mprapi.h: Fix header guard. Cleanup.
3847         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3848         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3849         (MprAdminConnectionHangupNotification)
3850         (MprAdminConnectionHangupNotification2)
3851         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3852         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3853         (MprAdminReleaseIpAddress): Declare functions.
3854         * lib/mprapi.def: Regenerate on Windows XP.
3855
3856 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3857
3858         * include/ipifcons.h: Cleanup.
3859         * include/ipxconst.h: Fix header guard.
3860         * include/ipxrtdef.h: include <ipxconst.h>.
3861
3862 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3863
3864         * include/ipxrtdef.h: Cleanup.
3865         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3866         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3867         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3868         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3869         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3870         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3871         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3872         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3873         * include/routprot.h: Cleanup.
3874         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3875         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3876         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3877         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3878         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3879         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3880         * include/fltdefs.h: New file.
3881         * include/ipinfoid.h: New file.
3882
3883 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3884
3885         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3886         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3887         (IAMCertifiedOutputProtection): Add interfaces.
3888         * include/adsprop.h: New file.
3889         * include/cmnquery.h: New file.
3890         * include/dsadmin.h: New file.
3891         * include/dsclient.h: New file.
3892         * include/dsgetdc.h: New file.
3893         * include/dsquery.h: New file.
3894         * include/dsrole.h: New file.
3895         * include/ntdsapi.h: New file.
3896         * include/ntdsbcli.h: New file.
3897         * include/objsel.h: New file.
3898
3899 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3900
3901         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3902         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3903         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3904         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3905         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3906         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3907         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3908         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3909
3910 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3911
3912         * include/qedit.h: New file.
3913         * include/errors.h: Cleanup.
3914
3915 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3916
3917         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3918         avoid dependency on <string.h>.
3919         There's no Win32 equivalent for memcmp:
3920         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3921
3922 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3923
3924         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3925         instead of memset to avoid dependency on <string.h>.
3926         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3927         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3928         (AM_WST_STYLE): Add enums.
3929         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3930         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3931         structures.
3932         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3933         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3934         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3935         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3936         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3937         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3938         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3939         (VFW_E_DVD_NO_RESUME_INFORMATION)
3940         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3941         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3942         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3943         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3944         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3945         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3946         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3947         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3948         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3949         * include/strmif.h: ... to here. New file.
3950         * include/aviriff.h: New file.
3951         * include/bdatypes.h: New file.
3952         * include/control.h: New file.
3953         * include/dvdmedia.h: New file.
3954         * include/il21dec.h: New file.
3955         * include/ks.h: New file.
3956         * include/ksmedia.h: New file.
3957         * include/mmreg.h: New file.
3958         * include/mpegtype.h: New file.
3959         * include/vidcap.h: New file.
3960         * include/vmr9.h: New file.
3961         * include/vptype.h: New file.
3962         * include/xprtdefs.h: New file.
3963
3964 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3965
3966         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3967         Documented as defined on Windows 2000 or later.
3968         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3969         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3970         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3971         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3972         but values unknown, Windows Vista or later.
3973         (CAL_UMALQURA): Cleanup.
3974         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3975         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3976         (CAL_SSHORTESTDAYNAME7): Cleanup.
3977         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3978         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3979
3980 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3981
3982         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3983         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3984         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3985         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3986         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3987         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3988         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3989         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3990         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3991         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3992         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3993         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3994         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3995         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3996         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3997         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3998         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3999         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
4000         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
4001         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
4002         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
4003         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
4004         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
4005         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
4006         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
4007         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
4008         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
4009         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
4010         (DMDFO_CENTER): Define.
4011         (GetDCBrushColor,GetDCPenColor): Declare.
4012         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
4013
4014 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4015
4016         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
4017         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
4018         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
4019         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
4020         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
4021         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
4022         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
4023         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
4024         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
4025         (LANG_DARI,LANG_MALAGASY)
4026         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
4027         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
4028         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
4029         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
4030         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
4031         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
4032         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
4033         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4034         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
4035         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
4036         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
4037         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
4038         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
4039         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
4040         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
4041         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
4042         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
4043         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
4044         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
4045         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
4046         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
4047         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
4048         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
4049         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
4050         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
4051         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
4052         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
4053         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
4054         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
4055         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
4056         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
4057         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
4058         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
4059         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
4060         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
4061         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
4062         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
4063         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
4064         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
4065         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
4066         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
4067         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
4068         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
4069         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
4070         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
4071         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
4072         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4073         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
4074         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
4075         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
4076         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
4077         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
4078         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
4079         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
4080         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
4081         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
4082         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
4083         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
4084         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
4085         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
4086         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
4087         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
4088         (SUBLANG_MARATHI_INDIA): Defined twice by error.
4089
4090 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4091
4092         * lib/directx/Makefile.in: Remove reference to libquartz.a since
4093         it was moved.
4094
4095 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
4096
4097         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
4098         SPI_SETSCREENSAVERUNNING.
4099         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
4100
4101 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4102
4103         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
4104         It had been removed because it's no documented, but Cygwin needs it.
4105
4106 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4107
4108         * include/amvideo.h (IFullScreenVideo): Define.
4109         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
4110         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
4111
4112 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4113
4114         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
4115         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
4116         as available on Windows 98 and better.
4117         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4118         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4119         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
4120
4121 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4122
4123         * include/amvideo.h: New file.
4124         * include/dshow.h: Include <amvideo.h>.
4125
4126 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4127
4128         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
4129         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
4130         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
4131         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
4132         (HWND_BROADCAST): Cleanup.
4133         (HWND_MESSAGE): Windows 2000 only.
4134         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
4135         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
4136         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
4137         (SIF_ALL): Cleanup.
4138         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
4139         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
4140         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
4141         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
4142         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
4143         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
4144         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
4145         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
4146         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
4147         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
4148         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
4149         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4150         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4151         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4152         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4153         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4154         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4155         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
4156         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
4157         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
4158         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
4159         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
4160         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
4161         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
4162         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
4163         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
4164         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
4165         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
4166         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
4167         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
4168         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
4169         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
4170         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
4171         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
4172         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
4173         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
4174         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
4175         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
4176         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
4177         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
4178         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
4179         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
4180         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
4181         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
4182         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
4183         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
4184         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
4185         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
4186         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
4187         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
4188         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
4189         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
4190         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
4191         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
4192         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
4193         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
4194         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
4195         (SPI_SCREENSAVERRUNNING): Removed.
4196         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
4197         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
4198         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
4199         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
4200
4201 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4202
4203         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
4204         (MprAdminGetPDCServer): Add prototype.
4205         (MprAdminSendUserMessage): Add prototype.
4206         (MprAdminUserGetInfo): Add prototype.
4207         (MprAdminUserSetInfo): Add prototype.
4208         * lib/mprapi.def: Add stubs for above functions.
4209
4210 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4211
4212         * lib/directx/quartz.def: Move from here...
4213         * lib/quartz.def: ... to here.
4214
4215 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4216
4217         * include/amaudio.h: New file.
4218         * include/dshow.h: Include <amaudio.h>.
4219
4220 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4221
4222         * include/errors.h: New file.
4223         * include/dshow.h: Include <errors.h>.
4224
4225 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4226
4227         * include/dshow.h: New file.
4228         * include/evcode.h: New file.
4229         * include/audevcod.h: New file.
4230         * include/dvdevcod.h: New file.
4231
4232 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4233
4234         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4235         (MprAdminConnectionClearStats): Add prototype.
4236         (MprAdminConnectionEnum): Add  prototype.
4237         (MprAdminConnectionGetInfo): Add prototype.
4238         (MprAdminConnectionRemoveQuarantine): Add prototype.
4239         (MprAdminPortClearStats): Add prototype.
4240         (MprAdminPortDisconnect): Add prototype.
4241         (MprAdminPortEnum): Add prototype.
4242         (MprAdminPortGetInfo): Add prototype.
4243         (MprAdminPortReset): Add prototype.
4244         * lib/mprapi.def: New file.
4245
4246 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4247
4248         *  include/mprapi.h: #include <lmcons.h>
4249         (MAX_DEVICETYPE_NAME): Add define.
4250         (MAX_PHONE_NUMBER_LEN): Add define.
4251         (ATADDRESSLEN): Add define.
4252         (IPADDRESSLEN): Add define.
4253         (IPXADDRESSLEN): Add define.
4254         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4255         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4256         (RAS_FLAGS_PPP_CONNECTION): Add define.
4257         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4258         (RAS_FLAGS_RAS_CONNECTION): Add define.
4259         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4260         (RASCCPCA_STAC): Add define.
4261         (RASCCPCA_MPPC): Add define.
4262         (PPP_CCP_COMPRESSION): Add define.
4263         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4264         (PPP_CCP_ENCRYPTION40BIT): Add define.
4265         (PPP_CCP_ENCRYPTION128BIT): Add define.
4266         (PPP_CCP_ENCRYPTION56BIT): Add define.
4267         (PPP_CCP_HISTORYLESS): Add define.
4268         (RASPRIV_NoCallback): Add define.
4269         (RASPRIV_AdminSetCallback): Add define.
4270         (RASPRIV_CallerSetCallback): Add define.
4271         (RASPRIV_DialinPrivilege): Add define.
4272         (RASPRIV_CallbackType): Add define.
4273         (RASPRIV2_DialinPolicy): Add define.
4274         (PPP_LCP_PAP): Add define.
4275         (PPP_LCP_SPAP): Add define.
4276         (PPP_LCP_CHAP): Add define.
4277         (PPP_LCP_EAP): Add define.
4278         (PPP_LCP_CHAP_MD5): Add define.
4279         (PPP_LCP_CHAP_MS): Add define.
4280         (PPP_LCP_CHAP_MSV2): Add define.
4281         (PPP_LCP_MULTILINK_FRAMING): Add define.
4282         (enum _RAS_HARDWARE_CONDITION): Add.
4283         (enum _RAS_PORT_CONDITION): Add.
4284         (struct _PPP_ATCP_INFO): Add.
4285         (struct _PPP_ATCP_INFO): Add.
4286         (struct _PPP_IPCP_INFO): Add.
4287         (struct _PPP_IPCP_INFO2): Add.
4288         (struct _PPP_IPXCP_INFO): Add.
4289         (struct _PPP_LCP_INFO): Add.
4290         (struct _PPP_NBFCP_INFO): Add.
4291         (struct _PPP_INFO): Add.
4292         (struct _PPP_INFO_2): Add.
4293         (struct _RAS_CONNECTION_0): Add.
4294         (struct RAS_CONNECTION_1): Add.
4295         (struct _RAS_CONNECTION_2): Add.
4296         (struct RAS_PORT_0): Add.
4297         (struct _RAS_PORT_1): Add.
4298         (struct _RAS_USER_0): Add.
4299         (struct _RAS_USER_1): Add.
4300
4301 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4302
4303         * include/mprapi.h: New file.
4304         * include/routprot.h: New file.
4305         * include/ipxrtdef.h: New file.
4306         * include/ipxconst.h: New file.
4307         * include/stm.h: New file.
4308
4309 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4310
4311         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4312         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4313
4314 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4315
4316         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4317         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4318         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4319         versions.
4320         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4321
4322 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4323
4324         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4325         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4326
4327 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4328
4329         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4330
4331 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4332
4333         * include/basetyps.h (REFFMTID): Define properly.
4334
4335 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4336
4337         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4338         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4339
4340 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4341
4342         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4343         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4344         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4345         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4346         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4347         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4348         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4349         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4350         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4351         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4352         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4353         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4354         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4355         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4356         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4357         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4358         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4359         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4360         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4361         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4362         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4363         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4364         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4365         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4366         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4367         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4368         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4369         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4370         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4371         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4372         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4373         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4374         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4375         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4376         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4377         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4378         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4379         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4380         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4381         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4382         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4383         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4384         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4385         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4386         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4387         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4388         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4389         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4390         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4391         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4392         (IF_OPER_STATUS_OPERATIONAL): Define.
4393         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4394         Add function declaration.
4395         * include/mgm.h: New file.
4396         * lib/rtm.def: New file.
4397         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4398
4399 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4400
4401         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4402         This function cannot be made thread-safe, the API would have to be
4403         changed for that, just like strerror() -> strerror_r() and similar
4404         ISO C or POSIX functions...
4405
4406 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4407
4408         * include/edevdefs.h: New file.
4409
4410 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4411
4412         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4413         Use as guard for the WAVEFORMATEX structure instead of
4414         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4415         _WAVEFORMATEX_ for compatibility.
4416         Thanks to:    Andrew Jones <guln at sf dot net>
4417
4418 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4419
4420         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4421         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4422         Thanks to:    David Golub <david_golub at sf dot net>
4423
4424 2006-04-18  Eric House  <ehouse@eehouse.org>
4425
4426         PocketPC support.
4427         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4428         functions for using aygshell on PocketPC:
4429         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4430         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4431
4432         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4433         command bar API on PocketPC:
4434         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4435         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4436         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4437         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4438         CommandBar_InsertButton, CommandBar_Destroy.
4439
4440         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4441         fields not present on PocketPC.
4442         (GetCurrentThreadId): Conditionally declare as extern function
4443         without dllimport attribute on PocketPC.
4444         (ResetEvent): Likwise.
4445         (SetEvent): Likewise.
4446
4447         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4448         Conditionally declare as extern function without dllimport
4449          attribute on PocketPC.
4450         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4451         declare as extern function without dllimport attribute on PocketPC.
4452
4453 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4454
4455         * lib/test.c: Include icm.h.
4456
4457 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4458
4459         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4460         (CreateColorSpace): Add UNICODE mappings.
4461         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4462         * include/icm.h: New file.
4463         * lib/mscms.def: New file.
4464         * lib/icmui.def: New file.
4465
4466 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4467
4468         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4469         (IMAGE_FILE_MACHINE_AMD64): New define.
4470         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4471         New defines.
4472         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4473         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4474         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4475         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4476         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4477         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4478         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4479         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4480         New defines.
4481         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4482         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4483         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4484         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4485         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4486         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4487         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4488         definitions and typedefs.
4489         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4490         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4491         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4492         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4493         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4494         New structure definition and typedefs.
4495         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4496         Likewise.
4497         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4498
4499 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4500
4501         * lib/test.c: Fix typo in #inlcude.
4502         * include/aclui.h: INTERFACE should not remain
4503         defined at the end of the header.
4504         * include/servprov.h: Ditto.
4505
4506 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4507
4508         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4509
4510 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4511
4512         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4513
4514 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4515
4516         * include/wsahelp.h (system_header): Add pragma.
4517         * include/ws2spi.h (system_header): Add pragma.
4518         * include/rasdlg.h (system_header): Add pragma.
4519         * include/rasdlg.h (_RASDLG_H): Define.
4520         Define instead of _RASDLG_H_, this is the w32api standard.
4521         * include/mlang.h (_MLANG_H): Define.
4522         Define instead of _MLANG_H_, this is the w32api standard.
4523         * include/setupapi.h (_SETUPAPI_H): Define.
4524         Define instead of _SETUPAPI_H_, this is the w32api standard.
4525
4526 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4527
4528         * include/rpcndr.h (boolean): Add typedef.
4529         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4530         * include/rpcndr.h (_RPCNDR_H): Define.
4531         Define in addition to __RPCNDR_H__, this is the w32api standard.
4532
4533 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4534
4535         * include/w32api.h: Increment version to 3.7.
4536         * Makefile.in: Ditto.
4537
4538 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4539
4540         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4541         GET_MODULE_HANDLE_EX_FLAG_PIN,
4542         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4543         Thanks to:    Brandon Sneed <brandon at redf dot net>
4544
4545 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4546
4547         * include/secext.h: Enclose function declarations in extern "C"
4548         if __cplusplus.
4549
4550 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4551
4552         * include/comcat.h: INTERFACE should not remain defined
4553         at the end of the header.
4554         * include/docobj.h: Ditto.
4555         * include/exdisp.h: Ditto.
4556         * include/intshcut.h: Ditto.
4557         * include/mlang.h: Ditto.
4558         * include/mshtml.h: Ditto.
4559         * include/oaidl.h: Ditto.
4560         * include/objidl.h: Ditto.
4561         * include/objsafe.h: Ditto.
4562         * include/ocidl.h: Ditto.
4563         * include/oleacc.h: Ditto.
4564         * include/oledlg.h: Ditto.
4565         * include/oleidl.h: Ditto.
4566         * include/richole.h: Ditto.
4567         * include/shldisp.h: Ditto.
4568         * include/shlobj.h: Ditto.
4569         * include/unknwn.h: Ditto.
4570         * include/vfw.h: Ditto.
4571         Thanks to:    Brandon Sneed <brandon at redf dot net>
4572
4573 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4574
4575         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4576         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4577         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4578
4579 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4580
4581         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4582         here also.
4583
4584 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4585
4586         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4587         We should probably remove PROV_MS_MAIL but I'm keeping it for
4588         now for compatibility reasons.
4589         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4590
4591 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4592
4593         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4594         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4595         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4596
4597 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4598
4599         * include/wingdi.h [WINVER >= 0x0410]
4600         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4601         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4602
4603 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4604
4605         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4606         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4607         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4608         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4609         (L_MAX_URL_LENGTH): Define.
4610         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4611         Thanks to:    Brandon Sneed <brandon at redf dot net>
4612
4613 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4614
4615         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4616
4617 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4618
4619         * include/w32api.h (_W32API_H): Define.
4620         Define in addition to _W32API_H_, this is the w32api standard.
4621
4622 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4623
4624         * include/w32api.h (WindowsVista): Define.
4625
4626 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4627
4628         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4629         on SOCKET_ADDRESS only if winsock2.h has already been included.
4630
4631 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4632
4633         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4634
4635 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4636
4637         * include/iphlpapi.h (GAA_FLAG_*): Define.
4638         (GetAdaptersAddresses): Add function declaration.
4639         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4640         Thanks to:    ross <rossboulet at users dot sf dot net>
4641
4642 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4643
4644         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4645         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4646         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4647         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4648         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4649         SCOPE_LEVEL): Add enums.
4650         (IP_ADAPTER_*): Define.
4651
4652 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4653
4654         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4655         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4656
4657 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4658
4659         * include/objidl.h (PIDSI_*): Define.
4660         (PRSPEC_*): Define.
4661         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4662
4663 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4664
4665         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4666         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4667         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4668         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4669         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4670
4671 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4672
4673         * include/mq.h: New file.
4674         * lib/mqrt.def (MQ*): Define a few missing functions.
4675
4676 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4677
4678         * lib/mqrt.def: New file.
4679         Needs the mq.h file to work properly, working on it.
4680         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4681
4682 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4683
4684         * include/winerror.h (STG_E_*):  Define.
4685         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4686         * include/winerror.h (STG_S_*): Define.
4687         (CO_S_MACHINENAMENOTFOUND): Define.
4688         (RPC_E_*): Define.
4689         (NTE_*): Define.
4690
4691 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4692
4693         * include/commctrl.h (ListView_*):  Define and correct.
4694         (LVM_*): Define.
4695
4696 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4697
4698         * include/winuser.h (WM_IME_*): Define (DWORD type).
4699         (EM_*IMESTATUS): Define.
4700         (WM_*): Define.
4701         (XBUTTON*): Define.
4702         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4703
4704 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4705
4706         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4707         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4708
4709 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4710
4711         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4712         version conditional.
4713
4714 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4715
4716         * include/winspool.h (JOB_INFO_3): Add structure.
4717         (PROVIDOR_INFO_*{AW}): Add structure.
4718         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4719         (PRINTER_ENUM_VALUES{AW}): Add structure.
4720         (PRINTPROCESSOR_CAPS): Add structure.
4721
4722 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4723
4724         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4725         (PRINTER_INFO_7A): Correct definition.
4726
4727 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4728
4729         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4730         (DRIVER_INFO_*{AW}): Add structure.
4731         (PRINTER_INFO_*{AW}): Add structure.
4732         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4733
4734 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4735
4736         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4737         (DRIVER_*MODE): Define (DWORD type).
4738         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4739
4740 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4741
4742         * include/wincon.h (GetConsoleProcessList): Declare.
4743
4744 2006-03-27  Hansres Engel  <engel@node.ch>
4745
4746         * include/mlang.h: New file.
4747
4748 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4749
4750         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4751
4752 2006-03-26  Hansres Engel  <engel@node.ch>
4753
4754          Add Uniscribe API for typography and for complex scripts.
4755         * include/usp10.h: New file.
4756         * lib/usp10.def: New file.
4757
4758         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4759
4760         * include/imm.h (IMECHARPOSITION): Add structure.
4761         (RECONVERTSTRING): Likwise.
4762
4763         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4764
4765         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4766         (IMLangFontLink2): Likewise.
4767         (IMultiLanguage): Likewise.
4768
4769 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4770
4771         * include/wincon.h  (ENABLE_*): Add more defines.
4772
4773 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4774
4775         * include/winnt.h (INHERITED_ACE): Define.
4776         (VALID_INHERIT_FLAGS): Correct definition.
4777
4778 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4779
4780          * lib/wtsapi32.def: New file.
4781
4782 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4783
4784         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4785         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4786
4787 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4788
4789         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4790         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4791         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4792         (DSPRINT_*): Define (DWORD type).
4793         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4794
4795 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4796
4797         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4798         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4799
4800 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4801
4802         * include/shellapi.h [_WIN32_IE >= 0x0600]
4803         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4804         Windows XP SP1 and Windows XP respectively.
4805
4806 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4807
4808         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4809         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4810         * include/shellapi.h [_WIN32_IE >= 0x0500]
4811         (NIS_*): Introduced in Version 5.0.
4812
4813 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4814
4815         * include/wingdi.h (CS_*): Correct WINVER guard on
4816         Image Color Matching colour definitions.
4817
4818 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4819
4820         * include/shlobj.h (SFGAO_ISSLOW): Define.
4821         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4822         attribute constants.
4823
4824 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4825
4826         * include/wingdi.h [WINVER >= 0x0500]
4827         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4828         Thanks to: David A. Capello <dacap at users dot sf dot net>
4829
4830 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4831
4832         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4833         (INTERNET_STATE_*): Define flags.
4834         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4835
4836 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4837
4838         * include/sddl.h: New file.
4839
4840 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4841
4842         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4843         last change.
4844         Remove file level #pragma pack(push,4)/#pragma pop.
4845
4846 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4847
4848         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4849         value to force correct alignment.
4850
4851 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4852
4853         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4854         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4855         (PNM_CACHEHINT): Add backward compatibilty define.
4856         (LPNM_CACHEHINT): Likewise.
4857
4858 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4859
4860         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4861
4862 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4863
4864         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4865         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4866         * lib/shell32.def (PathResolve): Define.
4867
4868 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4869
4870         * include/shlobj.h (PathResolve): Fix typo.
4871
4872 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4873
4874         * include/shlobj.h (PathResolve): Define.
4875         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4876         PRF_DONTFINDLNK): Ditto.
4877         * lib/shell32.def (PathResolve): Define.
4878
4879 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4880
4881         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4882
4883 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4884
4885         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4886         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4887         (NotifyRouteChange@8): Define.
4888
4889 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4890
4891         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4892         prototypes.
4893
4894 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4895
4896         * include/winnt.h (FORCEINLINE): Define.
4897
4898 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4899
4900         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4901
4902 2006-01-26  Filip Navara  <xnavara@volny.cz>
4903
4904         * include/winnt.h (DECLSPEC_ALIGN): Define.
4905
4906 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4907
4908         * include/commctrl.h: Correct spelling of 'compatibility' in
4909         comments.
4910         * include/setupapi.h: Likewise.
4911         * include/ws2tcpip.h: Likewise.
4912
4913 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4914
4915         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4916
4917 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4918
4919         WATCOM compatibility changes.
4920         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4921         rather than __attribute__.
4922         (DECL_EXPORT): Likewise.
4923         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4924         (DDKFASTAPI): Likewise.
4925         (DDKCDECLAPI): Likwise.
4926         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4927
4928 2006-01-23  Brandon Sneed  <brandon@redf.net>
4929
4930         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4931         to exports.
4932
4933 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4934
4935         * include/w32api.h: Increment version to 3.6.
4936         * Makefile.in: Ditto.
4937
4938 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4939
4940         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4941         advapi32.dll functions.
4942
4943 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4944
4945         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4946         names for padding size constants.
4947
4948 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4949
4950         * include/aclapi.h (WINADVAPI): Add to prototypes.
4951         * include/winreg.h (WINADVAPI): Likewise.
4952         * include/winsvc.h (WINADVAPI): Likewise.
4953
4954 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4955
4956         * include/winbase.h (WINADVAPI): Define.
4957
4958 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4959
4960         * include/winuser.h (CreateWindowStation): Correctly identify first
4961         argument as constant.
4962         (CreateWindowStation@): Ditto.
4963
4964 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4965
4966         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4967         (TMT_*, BT_*): Add constants.
4968
4969 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4970
4971         * include/winsock2.h: Don't define struct sockaddr_storage when
4972         building Cygwin.
4973
4974 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4975
4976         * lib/ws2_32.c: New file, defining IPv6 constants.
4977         * lib/Makefile.in (SOURCES): Add ws2_32.c
4978         (EXTRA_OBJS): Add ws2_32.o.
4979
4980 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4981
4982         * lib/user32.def (PrivateExtractIconsA@32,
4983         PrivateExtractIconsW@32): Define.
4984         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4985
4986 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4987
4988         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4989
4990 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4991
4992         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4993
4994 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4995             Danny Smith <dannysmith@users.sourceforge.net>
4996
4997         * lib/msxml-uuid.c: New file to generate UUIDs for
4998         MSXML interfaces.
4999         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
5000
5001 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5002
5003         * include/winbase.h (GetDevicePowerState): Add prototype.
5004         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
5005
5006 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
5007
5008         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
5009         Define as macro if !_WIN64.
5010         (SetClassLongPtr{AW}): Likewise.
5011         (GCLP_*): Add GetClassLongPtr defines.
5012         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
5013         (SetClassLongPtr{AW}): Likewise.
5014
5015 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
5016
5017         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
5018         (SetClassLongPtr{AW}): Likewise.
5019         (GCLP_*): Add GetClassLongPtr defines.
5020         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
5021         (SetClassLongPtr{AW}): Likewise.
5022
5023 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5024
5025         * include/commdlg.h (OPENFILENAMEW): Add members for
5026         _WIN32_WINNT >= 0x0500.
5027         Thanks to Ricardo Dalcorsso Fodra.
5028         (OPENFILENAMEA): Modify whitespace. Ansify comment.
5029
5030 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5031
5032         * include/wingdi.h (GetICMProfileA): Correct prototype.
5033         (GetICMProfileW): Likewise.
5034         Thanks to: Paul J Lucas
5035
5036 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
5037
5038         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
5039
5040 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
5041
5042         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
5043         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
5044         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
5045         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
5046
5047 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5048
5049         * include/objbase.h: Fix typo.
5050         * include/w32api.h: Increment version to 3.5.
5051         * Makefile.in: Ditto.
5052
5053 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5054
5055         * include/w32api.h: Increment version to 3.4.
5056         * Makefile.in: Ditto.
5057
5058 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
5059
5060         * include/winbase.h (GetProcessId): Remove duplicate declaration.
5061         Use _WIN32_WINNT >= 0x0501 guard.
5062
5063 2005-10-11  Christopher Faylor  <cgf@timesys.com>
5064
5065         * include/winbase.h (GetProcessId): Declare.
5066
5067 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5068
5069         * lib/ddk/newdev.def: Added.
5070         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
5071
5072 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5073
5074         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
5075         component.
5076         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
5077
5078 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5079
5080         * lib/shell32.def (SHILCreateFromPath): Add stub.
5081         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
5082
5083 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5084
5085         * include/winbase.h (RegisterWaitForSingleObject,
5086         RegisterWaitForSingleObjectEx): Define.
5087         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
5088         (RegisterWaitForSingleObject@16): Changed to
5089         RegisterWaitForSingleObject@24.
5090         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
5091
5092 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
5093
5094         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
5095         Thanks to: Gisle Vanem  <giva at bgnett dot no>
5096
5097 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5098
5099         * include/reason.h [_WIN32_WINNT >= 0x0501]
5100         (SHTDN_REASON_*): New file.
5101         * include/objbase.h: Avoid double header guard.
5102
5103 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
5104
5105         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
5106         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
5107         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
5108
5109 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5110
5111         * include/shlobj.h (IContextMenu3): Define.
5112         * include/shlguid.h (IID_IContextMenu3): Declare.
5113         * lib/shell32.c (IID_IContextMenu3): Define.
5114
5115 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5116
5117         * include/shlobj.h (SHFormatDrive): Declaration of function
5118         and associated constants.
5119
5120 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5121
5122         * include/ddk/hidsdi.h:  New file.
5123         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
5124         functions declared in hidsdi.h.
5125         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
5126
5127 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5128
5129         * lib/imm32.def (ImmDisableIME): Add stub.
5130         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
5131
5132 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5133
5134         * include/w32api.h: Increment version to 3.3.
5135         * Makefile.in: Ditto.
5136
5137 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
5138
5139         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
5140         Correct their values.
5141         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
5142
5143 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5144
5145         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
5146
5147 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5148
5149         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
5150         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
5151
5152 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5153
5154         * include/richedit.h (SETTEXTEX): Define structure and
5155         associated constants.
5156         (GT_SELECTION): Define GETTEXTEX flag constant.
5157
5158 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5159
5160         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
5161
5162 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5163
5164         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
5165         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
5166         prototypes.
5167
5168 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5169
5170         * include/commctrl.h (RBBS_USECHEVRON): Define.
5171         (RBBS_*): Use hex notation, group together.
5172
5173 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5174
5175         * lib/kernel32.def (GetUserGeoID): Correct suffix.
5176         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
5177
5178 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5179
5180         * include/commctrl.h (TreeView_SetItemState): Initilise
5181         _tvi.hItem.
5182         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
5183
5184 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
5185
5186         * include/commctrl.h (NMLVFINDITEM): Add structure.
5187
5188 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5189
5190         * include/wininet.h (WININET_API_FLAG_*): Add defines.
5191
5192 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
5193
5194         * include/winnt.h (VER_SET_CONDITION): Define.
5195
5196 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5197
5198         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
5199         (ATTACH_PARENT_PROCESS): Define.
5200         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
5201         documentation.
5202
5203 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5204
5205         * include/winbase.h (QueueUserWorkItem): Add prototype.
5206
5207 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5208
5209         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
5210         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
5211         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
5212         CM_CMYK_COLOR): Define.
5213
5214 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
5215
5216         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
5217         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
5218         Thanks to: Christian  <chhd at users dot sf dot net>
5219
5220 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5221
5222         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
5223         field.
5224         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
5225
5226 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5227
5228         * include/winbase.h (GlobalDiscard): Define as macro.
5229         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5230
5231 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5232
5233         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5234         (WNetGetResourceParentW): Ditto.
5235         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5236         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5237
5238 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5239
5240         * include/wininet.h (FtpGetFileSize): Add prototype.
5241         (FtpCommand[AW]): Correct prototypes.
5242         Reported by: <siger at users dot sf dot net>
5243
5244 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5245
5246         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5247         (capGetDriverDescription[AW]): Likewise.
5248
5249 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5250
5251         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5252         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5253         (SE_IMPERSONATE_NAME TEXT): Ditto.
5254         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5255         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5256
5257 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5258
5259         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5260         change.
5261
5262 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5263
5264         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5265         Thanks to:
5266         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5267
5268 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5269
5270         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5271         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5272         (gai_strerror[AW]): Put into #if 0 block.
5273
5274 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5275
5276         * include/basetyps.h (__int16): Correct define.
5277
5278 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5279             Danny Smith  <dannysmith@users.sourceforge.net>
5280
5281         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5282         define for Open Watcom portability.
5283         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5284         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5285         of local c_rgodfDI* objects. Replace .rdata section attribute
5286         with 'const' keyword in definition of global c_dfDI* objects.
5287
5288 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5289
5290         * include/winioctl.h (IOCTL_VOLUME_BASE,
5291         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5292         Copy defines from include/ddk/ntdddvol.h.
5293         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5294
5295 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5296
5297         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5298
5299 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5300
5301         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5302         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5303
5304 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5305
5306         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5307
5308 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5309
5310         * lib/user32.def (MonitorFromPoint): Correct suffix.
5311
5312 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5313
5314         * include/wininet.h (InternetCheckConnectionA,
5315         InternetCheckConnectionW) Add prototypes.
5316         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5317         INTERNET_CONNECTION_CONFIGURED): Add defines.
5318
5319 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5320
5321         * include/commctrl.h (ComboBox_SetMinVisible,
5322         ComboBox_GetMinVisible): Added Macros.
5323         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5324         Added definitions.
5325
5326 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5327
5328         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5329         assembly code conditional on _X86_.
5330
5331 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5332
5333         * include/w32api.h: Increment version to 3.2.
5334         * Makefile.in: Ditto.
5335         * include/afxres.h: Remove the \r from the line ending.
5336         * include/errorrep.h: Ditto.
5337         * include/shldisp.h: Ditto.
5338         * include/tschema.h: Ditto.
5339         * lib/dhcpcsvc.def: Ditto.
5340         * lib/uxtheme.def: Ditto.
5341         * lib/wldap32.def: Ditto.
5342
5343 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5344
5345         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5346         Correct typo.
5347         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5348
5349 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5350
5351         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5352         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5353         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5354         SPI_GETFOREGROUNDLOCKTIMEOUT,
5355         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5356         *include/imm.h (WM_IME_REQUEST): Added definition.
5357         *include/shlobj.h (SLGP_RAWPATH,
5358         SLGP_UNCPRIORITY): Added definition.
5359
5360 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5361
5362         *include/winuser.h (HSHELL_FLASH): Added definition.
5363
5364 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5365
5366         * include/shldisp.h (IAutoComplete): Added interface definiton.
5367         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5368         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5369         * include/shlobj.h (IObjMgr): Added interface definiton.
5370         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5371         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5372         CLSID_ACListISF, IID_IACList): Added GUIDs.
5373         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5374         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5375         CLSID_ACListISF, IID_IACList): Added GUIDs.
5376
5377 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5378
5379         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5380         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5381         (CDRF_*): Use hex notation for constants.
5382
5383 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5384
5385         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5386         Reported by Eric Sharkey <sharkey at netrics dot com>
5387
5388 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5389
5390         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5391         TokenGroupsAndPrivileges, TokenSessionReference,
5392         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5393         Reformat.
5394         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5395         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5396
5397 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5398
5399         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5400         ImageList_Duplicate): Add stubs.
5401
5402 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5403
5404         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5405         Thanks to "Pete" <pross@xvid.org>
5406
5407 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5408
5409         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5410         AC_DST_NO_ALPHA, ...): Add defines.
5411         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5412         ULW_OPAQUE): Add defines.
5413
5414 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5415
5416         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5417         guard.
5418         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5419         suffix.
5420         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5421
5422 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5423
5424         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5425         (CreateProcessWithLogonW): Declare.
5426         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5427         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5428
5429 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5430
5431         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5432         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5433
5434 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5435
5436         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5437         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5438
5439 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5440
5441         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5442
5443 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5444
5445         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5446         Add defines.
5447         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5448
5449 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5450
5451         * include/shellapi.h (NIF_GUID): Add another define.
5452
5453 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5454
5455         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5456         Changed it twice due to inconsistent MSDN documentation.
5457         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5458
5459 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5460
5461         * include/shlobj.h (SHGFP_TYPE): Add enum.
5462
5463 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5464
5465         * include/winuser.h (WM_THEMECHANGED): Add define.
5466
5467 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5468
5469         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5470         ExFreeToPagedLookasideList): Guard inline versions with
5471         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5472         external functions for earlier _WIN32_WINNT.
5473
5474 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5475
5476         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5477
5478 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5479
5480         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5481         if  undefined and __W32API_USE_DLLIMPORT__.
5482         Add WINBASEAPI token to prototypes, throughout.
5483
5484 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5485
5486         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5487         (GetFiberData): Likewise.
5488         (NtCurrentTeb): Likewise.
5489
5490 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5491
5492         * include/shellapi.h (NIF_INFO): Add define.
5493         (NIIF_*) Add defines..
5494         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5495         (NIF_*): Convert constants to hex.
5496
5497 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5498
5499         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5500         GetGlyphIndicesW): Declare.
5501         (GGI_MARK_NONEXISTING_GLYPHS): Define
5502         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5503         GetGlyphIndicesW): Add stubs.
5504
5505 2004-10-24  Dan Aloni  <da-x@colinux.org>
5506
5507         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5508         ZwQueryFullAttributesFile): Declare.
5509         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5510         Declare.
5511         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5512         ZwQueryVolumeInformationFile): Add stubs.
5513
5514 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5515
5516         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5517         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5518
5519 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5520             Danny Smith  <dannysmith@users.sourceforge.net>
5521
5522         * include/winbase.h (InitializeSListHead, Interlocked*):
5523         Guard with !__USE_NTOSKRNL__.
5524
5525         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5526         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5527         Guard with  __USE_NTOSKRNL__.
5528         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5529         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5530         && _WIN32_WINNT >= 0x0501
5531         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5532         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5533         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5534         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5535
5536         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5537         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5538         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5539         ExWindowStationObjectType, IoAdapterObjectType,
5540         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5541         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5542         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5543         Uncomment stubs.
5544
5545 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5546
5547         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5548         definition
5549         (IoReleaseRemoveLock): Add definition.
5550
5551 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5552
5553         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5554         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5555         Add prototypes.
5556         * include/winddk.h (ExInterlockedAddUlong,
5557         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5558         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5559         ExInterlockedPushEntryList): Change calling convention to
5560         DDKAPI.
5561         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5562         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5563         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5564         Add prototypes for DDKFASTAPI versions.
5565         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5566         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5567         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5568         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5569         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5570         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5571         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5572         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5573         Add fastcall stubs.
5574         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5575         Exi386InterlockedIncrementLong); Add stdcall stubs.
5576
5577 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5578
5579         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5580          if __W32API_USE_DLLIMPORT__ is defined.
5581         * include/winuser.h (WINUSERAPI): Likewise.
5582
5583 2004-09-29  Filip Navara  <xnavara@volny.cz>
5584
5585         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5586         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5587         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5588         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5589         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5590         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5591         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5592         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5593         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5594         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5595         winnt4.h, ws2san.h): Fixed packing.
5596         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5597         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5598         HID_INTERFACE_NOTIFY_PNP): Likewise.
5599         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5600         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5601         <ayerkes@speakeasy.net>.
5602         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5603         declaration.
5604         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5605         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5606         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5607         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5608         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5609         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5610         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5611         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5612         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5613         (SYNCH_LEVEL): Added definition.
5614         (KPCR, KPCR_TIB): Fixed declaration.
5615         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5616         included and _WIN32_WINNT >= 0x0501.
5617         (RtlEqualLuid): Fixed macro definition.
5618         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5619         KeRaiseIrql on i386 architectures.
5620
5621 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5622
5623         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5624         declaration.
5625         (IHTMLSelectionObject): Correct get_type declaration.
5626         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5627         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5628         IHTMLBodyElement2): Add interfaces.
5629         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5630         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5631         typedefs.
5632         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5633         Add IIDs.
5634
5635 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5636
5637         * include/w32api.h: Increment version to 3.1.
5638         * Makefile.in: Ditto.
5639
5640 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5641
5642         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5643         MonitorFromWindow): Add prototypes.
5644         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5645         MonitorFromWindowMonitorFromWindow): Add stubs.
5646         * include/shellapi.h (DuplicateIcon): Add prototype.
5647
5648 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5649
5650         * include/winuser.h (WINUSERAPI): New define.
5651         Use it to mark user32.dll imports, throughout.
5652
5653 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5654
5655         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5656         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5657         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5658         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5659         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5660         HidD_GetPreparsedData, HidD_GetProductString,
5661         HidD_GetSerialNumberString, HidD_SetConfiguration,
5662         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5663         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5664
5665 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5666
5667         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5668         Add XP defines.
5669         (PCOORD): Add typedef.
5670         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5671
5672 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5673
5674         * include/winldap.h: Don't check value of UNICODE.
5675         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5676
5677 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5678
5679         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5680
5681 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5682
5683         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5684         guard.
5685
5686 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5687
5688         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5689
5690 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5691
5692         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5693
5694 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5695
5696         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5697
5698 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5699
5700         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5701
5702 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5703
5704         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5705         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5706         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5707         Add defines.
5708         (CALG_SHA1): Add define.
5709         (HP_HMAC_INFO): Add define.
5710         (HMAC_INFO): Add struct.
5711         (BLOBHEADER): Add typedef.
5712
5713 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5714
5715         * include/commctrl.h (TreeView_SetItemState): Define macro.
5716
5717 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5718
5719         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5720         macros together.
5721
5722 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5723
5724         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5725         (FILEGROUPDESCRIPTOR): LIkewise.
5726
5727 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5728
5729         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5730
5731 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5732
5733         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5734         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5735         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5736         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5737         (IMAGE_ORDINAL): Map to ...
5738         (IMAGE_ORDINAL{32,64}: New defines.
5739         (IMAGE_THUNK_DATA):  Map to ...
5740         (IMAGE_THUNK_DATA{32,64}: New structures.
5741         (IMAGE_THUNK_DATA): Map to ...
5742         (IMAGE_THUNK_DATA{32,64}: New structures.
5743         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5744         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5745         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5746         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5747
5748 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5749
5750         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5751         _WIN32_WINNT >= 0x0500.
5752
5753 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5754
5755         * include/winbase.h (GetWriteWatch): Correct prototype.
5756         (WRITE_WATCH_FLAG_RESET): Define.
5757         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5758
5759 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5760
5761         * include/commctrl.h (Animate_OpenEx): Define.
5762         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5763         (ListView_GetNumberOfWorkAreas): Correct macro.
5764         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5765         ListView_SetItemCountEx, ListView_GetISearchString,
5766         TreeView_GetLastVisible, Header_CreateDragImage,
5767         Header_SetImageList, Header_GetImageList): Define.
5768         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5769         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5770         TBSTATE_ELLIPSES): Define.
5771         (MonthCal_SetRange): Correct macro.
5772         (ImageList_Duplicate): Declare.
5773
5774 2004-05-29  Filip Navara  <xnavara@volny.cz>
5775
5776         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5777
5778 2004-05-25  Al Slater  <al.slater@scluk.com>
5779
5780         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5781         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5782
5783 2004-05-15  Filip Navara  <xnavara@volny.cz>
5784
5785         * include/ddk/kbdmou.h: New file.
5786         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5787         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5788         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5789         _vsnwprintf, sprintf, swprintf): Export.
5790
5791 2004-05-15  Filip Navara  <xnavara@volny.cz>
5792
5793         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5794         headers.
5795
5796 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5797
5798         * include/wingdi.h: Correct non-unicode typedefs of
5799         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5800
5801 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5802
5803         * include/winsock.h (IN_CLASSA): Fix macro.
5804         * include/winsock2.h (IN_CLASSA): Fix macro.
5805
5806 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5807
5808         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5809         * include/aclui.h: Remove '\r', throughout.
5810         * include/msacm.h: Likewise.
5811         * lib/aclui.def: Likewise.
5812
5813 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5814
5815         * lib/comctl32.def (SetWindowSubclass): Add stub.
5816         Thanks to Eugene <egladysh@users.sourceforge.net>.
5817
5818 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5819
5820         * include/winbase.h (EXECUTION_STATE): Add typedef.
5821         (SetThreadExecutionState): Declare.
5822         * include/wingdi.h (_WINGDI_): Define.
5823         * include/objbase.h (_OBJBASE_H_): Define.
5824
5825 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5826
5827         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5828         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5829         (SM_CMETRICS): Adjust value.
5830         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5831         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5832         Add defines.
5833         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5834
5835 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5836
5837         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5838         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5839         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5840         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5841         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5842         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5843
5844 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5845
5846         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5847         DNSREC_ADDITIONAL): Add defines.
5848
5849 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5850
5851         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5852
5853 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5854
5855         * include/aclui.h: New file.
5856         * lib/aclui.def: New file.
5857         * lib/test.c: Add aclui.h to includes.
5858
5859 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5860
5861         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5862         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5863         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5864
5865 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5866
5867         * include/wingdi.h: Protect non-unicode case of below.
5868
5869 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5870
5871         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5872         LPENUMLOGFONTEXDV with appropriate version check.
5873
5874 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5875
5876         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5877         DSPROPSETID_DirectSoundDevice): Add defines.
5878
5879 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5880
5881         * include/msacm.h: New file.
5882
5883 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5884
5885         * include/objbase.h (STGFMT): Declare enum.
5886         (STGOPTIONS): Declare structure.
5887         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5888         (STGOPTIONS_VERSION): Define.
5889         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5890
5891 2004-04-13  Filip Navara  <xnavara@volny.cz>
5892
5893         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5894         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5895         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5896         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5897         HELP_SETWINPOS): Define.
5898         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5899         (SPI_*): Add new definitions for WINVER >= 0x500.
5900         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5901         (InternalGetWindowText, SetWindowsHookW): Declare.
5902         * include/winbase.h (InitializeSListHead): Avoid conflicting
5903         definition with DDK headers.
5904
5905 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5906
5907         * include/winuser.h (GetLastError): Move from here...
5908         * include/winbase.h: ... to here.
5909
5910 2004-04-13  Filip Navara  <xnavara@volny.cz>
5911
5912         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5913
5914 2004-04-13  Filip Navara  <xnavara@volny.cz>
5915
5916         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5917         WINVER >= 0x400.
5918         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5919         (ENUMLOGFONTEXW): Fix definition.
5920         (ENUMLOGFONTEXDV[AW]): Declare.
5921
5922 2004-04-13  Filip Navara  <xnavara@volny.cz>
5923
5924         * include/wingdi.h: Declare the DirectDraw structures only if
5925         the DirectDraw kernel mode headers aren't included.
5926         (EMFINFO): Declare.
5927         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5928         STROBJ_bEnumPositionsOnly): Correct prototypes.
5929
5930 2004-04-13  Filip Navara  <xnavara@volny.cz>
5931
5932         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5933         * include/rpc.h (RPCRTAPI): Define.
5934         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5935         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5936         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5937         (I_RpcBindingSetAsync): Correct prototype.
5938         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5939         to w2kReserved.
5940         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5941         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5942         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5943         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5944         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5945         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5946         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5947         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5948         NdrUserMarshalFree): Declare.
5949         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5950         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5951
5952 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5953
5954         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5955         LPC_MESSAGE_BASE_SIZE): Define.
5956         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5957
5958 2004-04-13  Filip Navara  <xnavara@volny.cz>
5959
5960         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5961         Declare.
5962
5963 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5964
5965         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5966         MONITORINFO when compiling as C++.
5967
5968 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5969
5970         * README.w32api: List separate copyright conditions for some headers.
5971         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5972
5973 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5974
5975         * include/wingdi.h (RGB): Correct macro.
5976
5977 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5978
5979         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5980
5981 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5982
5983         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5984
5985 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5986
5987         * lib/Makefile.in: Add directx to .PHONY target.
5988         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5989         Don't include stdio.h or tchar.h.
5990         Replace _T() macro with TEXT() macro, throughout.
5991         Replace _stprintf with wsprintf, throughout.
5992
5993 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5994
5995         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5996         Add define.
5997         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5998         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5999         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
6000
6001 2004-03-27  Filip Navara  <xnavara@volny.cz>
6002
6003         * include/directx: New subdir.
6004         * lib/directx: Ditto.
6005         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
6006         dxerr9.h): New files.
6007         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
6008         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
6009         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
6010         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
6011         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
6012         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
6013         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
6014         strmiids.c, test.c): Ditto.
6015         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
6016         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
6017
6018 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6019
6020         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
6021         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
6022         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
6023
6024 2004-03-24  Filip Navara  <xnavara@volny.cz>
6025
6026         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
6027         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
6028
6029 2004-03-24  Filip Navara  <xnavara@volny.cz>
6030
6031         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
6032         TaggedQueueing to TaggedQueuing.
6033         (_HW_INITIALIZATION_DATA): Likewise.
6034
6035 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6036
6037         * include/docobj.h (IOleDocumentView::GetDocument): Correct
6038         prototype.
6039         Thanks to Buster Copley  <consequent@users.sourceforge.net>
6040
6041 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6042
6043         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
6044         (MmMapIoSpace): Likewise.
6045         Thanks to Dan Aloni  <da-x@colinux.org>
6046
6047 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
6048
6049         * include/shellapi.h (NIM_* NIS_*): Define constants for
6050         notification icons with _WIN32_IE >= 0x0500.
6051         (NOTIFYICONDATA): Add new structure members for notification
6052         icons with _WIN32_IE >= 0x0500.
6053
6054 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
6055
6056         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
6057         Add defines.
6058         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
6059         (GROUPID) Add typedef.
6060         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
6061         (CreateUrlCacheGroup): Add prototype.
6062         (DeleteUrlCacheGroup): Add prototype.
6063         (FindFirstUrlCacheGroup): Add prototype.
6064         (FindNextUrlCacheGroup): Add prototype.
6065         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
6066         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
6067
6068 2004-03-10  Al Slater  <al.slater@scluk.com>
6069
6070         * include/winsock2.h: Add missing LPFN_ typdefs for
6071         function pointers.
6072         Clean up whitespace.
6073
6074 2004-03-05  Filip Navara  <xnavara@volny.cz>
6075
6076         * include/ddk/scsi.h: Replace assert with ASSERT.
6077         * include/ddk/video.h: Ditto.
6078         * include/ddk/winddk.h: Ditto. Remove the assert macro.
6079         * include/ddk/tdi.h: Correct packing.
6080
6081 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
6082
6083         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
6084         NONAMELESSUNION case.
6085
6086 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
6087
6088         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
6089         __VARIANT_NAME_ constants.
6090
6091 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6092
6093         * include/uxtheme.h: Include <commctrl.h>
6094
6095 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6096
6097         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
6098
6099 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
6100
6101         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
6102         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
6103         together.
6104         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
6105         (V_I8, V_I8REF): Correct macros.
6106         (V_DECIMAL): Correct macro definitions.
6107         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
6108         constants.
6109         (VTBIT_*): Define constants.
6110         (UDATE): Add structure definition.
6111         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
6112         functions.
6113         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
6114         (SafeArrayCreateVectorEx): Declare function.
6115         (Var*): declare VARIANT manipulation functions.
6116         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
6117         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
6118         macros.
6119
6120 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
6121
6122         * include/oaidl.h (FADF_*): Define missing constants.
6123         (IDispatch_*): Define COBJ macros.
6124         (VARIANT): Add missing union members llVal and ullVal.
6125         (wireVARIANT): Likewise.
6126         (ITypeinfo_*): Define COBJ macros.
6127         * include/oleauto.h (Var*FromDisp): Correct parameter type from
6128         LPDISPATCH* to LPDISPATCH.
6129         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
6130         VAR_CALENDAR_*): Add missing constants.
6131         (SafeArray[Get/Set]*): Add prototypes.
6132         (Var*From*):  Add missing prototypes.
6133         (NUMPRS_*): Add defines.
6134         (NUMPARSE): Define structure.
6135         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
6136         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
6137         * include/winuser.h (COLOR_*): Define missing constants.
6138         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
6139         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
6140
6141 2004-02-23  Filip Navara  <xnavara@volny.cz>
6142
6143         * include/ddk/video.h: Corrected packing.
6144
6145 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6146
6147         * include/GL/glu.h (GLU_ERROR): Define.
6148         Thanks to Philip Lamb  <phil at rave dot co dot nz>
6149
6150 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6151
6152         * include/GL/glu.h: Include <stddef.h>.
6153         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
6154
6155 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
6156
6157         * include/w32api.h: Increment version to 3.0.
6158         * Makefile.in: Ditto.
6159         * README.win32api: Modify license to Public Domain per agreement as
6160         found in the mingw-dvlpr list archive.
6161
6162 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
6163
6164         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
6165         (DIRECTORY_TRAVERSE): Ditto.
6166         (DIRECTORY_CREATE_OBJECT): Ditto.
6167         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
6168         (DIRECTORY_ALL_ACCESS): Ditto.
6169         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
6170
6171 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
6172
6173         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
6174
6175         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
6176         Thanks to Mike Nordell <tamlin at algonet dot se>.
6177
6178 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6179
6180         * lib/dnsapi.def: New file.
6181         * lib/test.c: Include windns.h.
6182
6183 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
6184
6185         * include/windns.h: New file.
6186
6187 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6188
6189         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
6190         defines.
6191         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
6192         (SQLSetDescFieldW): Correct prototype.
6193         (SQLSetDescFieldA): Add prototype.
6194         (SQLGetDescFieldW): Add prototype.
6195
6196 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
6197
6198         * include/winuser.h (DFC_POPUPMENU): Add define.
6199
6200 2004-02-07  Dan Aloni  <da-x@gmx.net>
6201
6202         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
6203         suffix.
6204
6205 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6206
6207         * include/oleacc.h (LIBID_Accessibility): Declare.
6208         * lib/uuid.c (LIBID_Accessibility): Define.
6209
6210 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6211
6212         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
6213         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
6214
6215 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6216
6217         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
6218         defines.
6219
6220 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
6221
6222         * include/winuser.h (RT_MANIFEST): Make conditional on
6223         RC_INVOKED.
6224         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
6225         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
6226         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6227         defines.
6228
6229 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6230
6231         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6232
6233 2004-01-15  Filip Navara  <xnavara@volny.cz>
6234
6235         * include/ddk/mcd.h: Don't care about value of DBG define.
6236         * include/ddk/srb.h: Ditto.
6237         * include/ddk/storport.h: Ditto.
6238         * include/ddk/video.h: Ditto.
6239         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6240         GetAddressByNameW): Correct protoype.
6241         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6242
6243 2004-01-05  Filip Navara  <xnavara@volny.cz>
6244
6245         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6246         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6247         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6248         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6249         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6250         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6251         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6252         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6253         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6254         SSF_*): Add defines.
6255         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6256         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6257         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6258         Correct.
6259         (IEnumIDList): Add COBJMACROS.
6260         * include/winuser.h (MIM_*): Add define.
6261
6262 2004-01-04  Filip Navara  <xnavara@volny.cz>
6263
6264         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6265         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6266         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6267         PERSIST_FOLDER_TARGET_INFO): Define structures.
6268         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6269         IPersistFolder2, IPersistFolder3): Add COM interface
6270         definitions.
6271         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6272         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6273         Add COBJMACROS.
6274         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6275         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6276         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6277
6278 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6279
6280         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6281         declarations.
6282         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6283
6284 2004-01-03  Filip Navara  <xnavara@volny.cz>
6285
6286         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6287         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6288         declare IID's.
6289         (IErrorInfo): Add COBJMACROS.
6290         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6291         (CoGetPSClsid): Add protototype,
6292         (CoRegisterPSClsid): Likewise.
6293         * include/objidl.h (IMarshal): Correct methods.
6294         (IMallocSpy): Likewise,
6295         (LPPSFACTORYBUFFER): Add typedef.
6296         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6297         IID.
6298         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6299         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6300         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6301         structures.
6302         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6303         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6304         IQuickActivate): Define interfaces. Declare IID's.
6305         (IPersistPropertyBag2): Add COBJMACROS.
6306         (LPOLEUNDOMANAGER): Add typedef.
6307         (LPPROPERTYBAG2): Likewise.
6308         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6309         (BINDSPEED): Add definition.
6310         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6311         IDropTarget): Add COBJMACROS.
6312         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6313         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6314         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6315         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6316         Add IID definitions.
6317
6318 2004-01-02  Filip Navara  <xnavara@volny.cz>
6319
6320         * include/ddk/winddk.h: Don't care about value of
6321         DBG define.
6322
6323 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6324             Filip Navara  <xnavara@volny.cz>
6325
6326         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6327         _DDK_DUMMYUNION_N_MEMBER): New macros.
6328         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6329         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6330         Use them.
6331
6332 2004-01-01  Filip Navara  <xnavara@volny.cz>
6333
6334         * include/objbase.h: Don't care about value of DBG define.
6335         * include/objidl.h: Add some COBJMACROS.
6336         * include/ocidl.h: Ditto.
6337         * include/oleidl.h: Ditto.
6338         * include/servprov.h: Ditto.
6339         * include/shlobj.h: Ditto.
6340         * include/shlobj.h (IContextMenu2): Correct parent in
6341         DECLARE_INTERFACE.
6342         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6343         Define interfaces.
6344         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6345         Add new constants for _SETUPAPI_VER >= 0x501.
6346
6347 2004-01-01  Filip Navara  <xnavara@volny.cz>
6348
6349         * include/winnt.h (NtCurrentTeb): Add inline definition.
6350
6351 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6352
6353         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6354         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6355
6356 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6357
6358         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6359         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6360         * include/ddk/cfg.h (DN_*): Add defines.
6361
6362 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6363
6364         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6365
6366 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6367
6368         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6369         (NMTVGETINFOTIP): Add structure.
6370
6371 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6372
6373         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6374         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6375         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6376
6377 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6378
6379         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6380         Add macros.
6381         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6382         constants.
6383         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6384         (SHCOLUMNDAT): Likwise.
6385         (SHCOLUMNID): Likewise.
6386         (SHCOLUMNINFO): Likewise.
6387         (SHCOLSTATE): Add enum.
6388         (IColumnProvider): Add COM interface.
6389         (IQueryInfo): Likewise.
6390         (IShellIconOverlayIdentifier): Likewise.
6391         * include/shlguid.h (IID_IColumnProvider) Declare.
6392         (IID_IQueryInfo): Likweise.
6393         (IID_IShellIconOverlayIdentifier): Likwise.
6394         * lib/shell32.c (IID_IColumnProvider) Define.
6395         (IID_IQueryInfo): Likweise.
6396         (IID_IShellIconOverlayIdentifier): Likwise.
6397
6398 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6399
6400         * include/winuser.h (RT_MANIFEST): Add define.
6401
6402 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6403
6404         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6405
6406 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6407
6408         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6409         (GetFiberData): Likewise.
6410         (GetCurrentFiber): Change volatile to __volatile__.
6411         (GetFiberData): Likewise.
6412
6413 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6414
6415         * lib/Makefile.in: Use make function to locate .mri file to allow
6416         building in directory other than source directory.
6417
6418 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6419
6420         * lib/vfw32.def: Remove, replacing with ...
6421         * lib/msvfw32.def: New file.
6422         * lib/avicap32.def: New file.
6423         * lib/avifil32.def: New file.
6424         * lib/vfw32.mri: New file.
6425         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6426         import libs with multiple dll's.
6427         (LIBS): Add MIMPLIBS.
6428         (DISTFILES): Add MRI_FILES.
6429         (libvfw32.a): Build using mri script.
6430
6431 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6432
6433         * include/winnt.h (PAGE_*): Group defines together. Change
6434         constants to hex notation.
6435
6436 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6437
6438         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6439
6440 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6441
6442         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6443         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6444         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6445         Add prototypes.
6446         * lib/shell32.def: Add stubs.
6447
6448         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6449         compiler warnings.
6450
6451 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6452
6453         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6454
6455 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6456
6457         * include/windows.h (CopyCursor): Define as macro.
6458
6459 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6460
6461         * include/winnt.h (CONTAINING_RECORD): Add macro.
6462
6463 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6464
6465         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6466         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6467         defines.
6468
6469 2003-10-13  Filip Navara  <xnavara@volny.cz>
6470
6471         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6472         defines for Dynamic Storage Arrays.
6473         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6474         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6475         and defines for Flat ScrollBars.
6476         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6477         DefSubclassProc): Add prototypes for subclassing.
6478         (DrawShadowText): Add prototype.
6479         (COMCTL32_VERSION): Define.
6480
6481 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6482
6483         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6484         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6485
6486 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6487
6488         * include/winnt.h (SM_REMOTESESSION): Add define.
6489         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6490
6491 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6492
6493         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6494         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6495         duplicate definitions.
6496         (KP_X, KP_Y): Correct typos.
6497
6498 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6499
6500         * include/afxres.h: New file.
6501
6502         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6503         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6504         ENM_SCROLLEVENTS): Add constants.
6505
6506         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6507
6508 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6509
6510         * include/errorep.h: New file.
6511
6512         * lib/faultrep.def: New file.
6513
6514 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6515
6516         * include/winbase.h (AddVectoredExceptionHandler): Define if
6517         _WIN32_WINNT >= 0x0500.
6518
6519         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6520         _WIN32_WINNT >= 0x0500.
6521
6522 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6523
6524         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6525         _WIN32_WINNT >= 0x0501.
6526
6527 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6528
6529         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6530         UnregisterWaitEx): Add functions.
6531
6532         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6533         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6534         or guard function. The MSDN says it is available on Windows XP and
6535         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6536         Huh?
6537
6538         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6539         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6540         ZombifyActCtx, QueryActCtxW): Add functions.
6541
6542         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6543         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6544         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6545         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6546
6547         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6548         SetFirmwareEnvironmentVariable[AW]): Add functions.
6549
6550         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6551         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6552         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6553         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6554         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6555
6556         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6557         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6558
6559         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6560         (ACTIVATION_CONTEXT_INFO_CLASS,
6561         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6562         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6563         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6564         Add structures.
6565
6566         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6567         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6568         SetFileShortName[AW], SetFileValidData,
6569         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6570         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6571
6572 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6573
6574         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6575         ResetWriteWatch): Add function.
6576
6577         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6578         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6579         Add functions.
6580
6581         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6582         (GetSystemWow64Directory[AW], HeapQueryInformation,
6583         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6584         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6585         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6586         RemoveVectoredExceptionHandler): Add functions.
6587
6588         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6589         Add enumeration.
6590
6591         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6592         Add function.
6593
6594         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6595         Add function. The MSDN Magazine of June 2003 reads:
6596                 RestoreLastError is an enigma. It's code is identical to
6597                 SetLastError. It's unclear to me why it was made into a
6598                 separate API.
6599
6600         * lib/user32.def (GetSystemWindowsDirectory[AW],
6601         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6602         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6603         InterlockedFlushSList, InterlockedPopEntrySList,
6604         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6605         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6606         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6607         RestoreLastError): Add functions.
6608
6609 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6610
6611         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6612         GetProcessIoCounters): Add functions.
6613
6614         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6615         Move around, needed by GetComputerNameEx.
6616
6617         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6618         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6619         Add functions.
6620
6621         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6622         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6623
6624         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6625         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6626         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6627         Windows XP SP1 and better.
6628
6629         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6630         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6631         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6632         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6633         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6634         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6635         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6636         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6637         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6638
6639         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6640         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6641         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6642         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6643         Add functions.
6644
6645 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6646
6647         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6648         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6649         DebugSetProcessKillOnExit): Add functions.
6650
6651         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6652         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6653         DnsHostnameToComputerName[AW]): Add functions.
6654
6655         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6656         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6657         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6658
6659 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6660
6661         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6662         on Windows XP and later.
6663
6664 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6665
6666         * include/commctrl.h (TreeView_Select): Returns BOOL.
6667
6668 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6669
6670         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6671
6672         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6673         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6674
6675         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6676         CreateTimerQueueTimer): Add function.
6677
6678         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6679         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6680
6681         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6682         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6683
6684         * include/winnt.h (WT_*): Add constants.
6685
6686         * lib/user32.def (CancelDeviceWakeupRequest,
6687         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6688         DeactivateActCtx): Add functions.
6689
6690 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6691
6692         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6693         Add function. Sometimes I don't understand MSDN. This function is
6694         available on Windows XP and Server 2003, but the SDK is supposed to
6695         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6696         Mmmh...
6697
6698         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6699         Guard function. Same remark as above.
6700
6701         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6702         Add functions.
6703
6704 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6705
6706         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6707         Add constants.
6708
6709         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6710         structures.
6711
6712         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6713         function. MSDN says the first argument is HACTCTX but I'm not sure
6714         where such a specialized handle is defined, so use HANDLE instead.
6715
6716         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6717         CheckNameLegalDOS8Dot3[AW]): Add functions.
6718
6719         * lib/user32.def (ActivateActCtx, AttachConsole,
6720         CheckNameLegalDOS8Dot3[AW]): Add functions.
6721
6722         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6723         Unfortunately I don't know which header to put the declarations in.
6724
6725 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6726
6727         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6728         Add constants.
6729
6730         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6731         constants for National Language Support.
6732
6733         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6734         Language Support.
6735
6736         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6737         Language Support.
6738
6739         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6740         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6741         Add functions.
6742
6743         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6744         functions. Strange... I am unable to find which library contains
6745         these functions. Can't find anything with pexports. Any clue?
6746
6747         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6748         SetUserGeoID): Add functions.
6749
6750 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6751
6752         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6753         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6754
6755         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6756         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6757         value for constants.
6758
6759 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6760
6761         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6762         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6763         the algorithms.
6764
6765 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6766
6767         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6768
6769 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6770
6771         * include/wincrypt.h (KP_*): Add constants. Needed by
6772         CryptSetKeyParam() and other functions.
6773
6774 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6775
6776         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6777         Add constants, related to Console Accessibility.
6778
6779 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6780
6781         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6782         wrong value for constant.
6783
6784 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6785
6786         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6787
6788         * include/uxtheme.h: Cleanup.
6789         * include/tmschema.h: Cleanup.
6790
6791 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6792
6793         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6794         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6795
6796 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6797
6798         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6799
6800 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6801
6802         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6803         both winuser.h and dbt.h.
6804         * include/dbt.h (BSF_*, BSM_*): Likewise.
6805
6806         * include/winuser.h (struct tagRAWINPUT): Remove
6807         _ANONYMOUS_UNION tag from named union.
6808         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6809
6810 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6811
6812         * include/dhcpcdsk.h: New file.
6813         Note that MSDN is confused about whether it should start constant
6814         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6815         experience suggests it's DHCPCAPI with `C'.
6816
6817         * lib/dhcpcsvc.def: New file.
6818
6819 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6820
6821         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6822         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6823
6824         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6825         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6826         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6827         for use in RAWINPUTDEVICE.
6828
6829         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6830         (GetRawInputDeviceInfo[AW]): Ooops... there are
6831         ANSI/Unicode versions of this function.
6832
6833         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6834         are ANSI/Unicode versions of this function.
6835
6836 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6837
6838         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6839         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6840         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6841         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6842         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6843         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6844         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6845         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6846         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6847         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6848         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6849         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6850         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6851         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6852         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6853         RIDI_DEVICEINFO): Add constants.
6854
6855         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6856         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6857         RAWINPUTDEVICELIST): Add structures.
6858
6859         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6860         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6861         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6862
6863         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6864         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6865         GetRegisteredRawInputDevices): Add functions.
6866
6867 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6868
6869         * include/winable.h (BlockInput): Add function.
6870
6871         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6872         For use with WINDOWINFO structure.
6873
6874         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6875         Add function.
6876
6877         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6878         Add function.
6879
6880         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6881         Add function...
6882
6883         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6884         ...and duplicate.
6885
6886         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6887         Guard function...
6888
6889         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6890         ...and duplicate.
6891
6892         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6893         Guard function...
6894
6895         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6896         ...and duplicate.
6897
6898         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6899         HARDWAREINPUT, INPUT): Guard structures...
6900
6901         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6902         HARDWAREINPUT, INPUT): ...and duplicate.
6903
6904         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6905         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6906
6907         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6908         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6909
6910         * include/winuser.h: Move around some lines. Reformat according
6911         to recommended or dominant style. Remove FAR keyword.
6912
6913         * include/winable.h: Move around some lines.
6914
6915         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6916         LockWorkStation, UnhookWinEvent): Add functions.
6917
6918 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6919
6920         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6921         PW_CLIENTONLY): Add function and constant.
6922
6923         * lib/user32.def (PrintWindow): Add function.
6924
6925 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6926
6927         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6928
6929         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6930
6931 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6932
6933         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6934         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6935         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6936
6937         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6938
6939 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6940
6941         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6942         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6943         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6944
6945         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6946         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6947         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6948
6949         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6950         Add function.
6951
6952         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6953         Add functions.
6954
6955 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6956
6957         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6958         ACE_OBJECT_TYPE_PRESENT): Add constants.
6959         For use with OBJECTS_AND_NAME structure.
6960
6961 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6962
6963         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6964         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6965         void* instead.
6966
6967         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6968         PINHERITED_FROM[AW]): Add structures.
6969
6970         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6971
6972 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6973
6974         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6975
6976 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6977
6978         * lib/version.def (LIBRARY): Quote name.
6979
6980 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6981
6982         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6983         and constants.
6984
6985         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6986         GR_USEROBJECTS): Add functions and constants.
6987
6988         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6989         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6990
6991         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6992         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6993         constants.
6994
6995         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6996         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6997
6998 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6999
7000         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
7001         BroadcastSystemMessageW, BroadcastSystemMessageEx,
7002         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7003         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
7004         BSF_RETURNHDESK): Add functions and constants.
7005
7006         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
7007         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
7008
7009         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
7010         GetProcessDefaultLayout, SetProcessDefaultLayout,
7011         RealChildWindowFromPoint, SetProcessDefaultLayout,
7012         SwitchToThisWindow): Add functions.
7013
7014         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
7015         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7016         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
7017         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
7018         RealChildWindowFromPoint, SetProcessDefaultLayout,
7019         SwitchToThisWindow): Add function.
7020
7021 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7022
7023         * include/winuser.h (DeregisterShellHookWindow): Add function.
7024
7025         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
7026
7027         * lib/user32.def (EndTask): Add function.
7028
7029         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
7030         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
7031
7032         * include/winable.h: Reorder target macros.
7033
7034         * lib/*.def: Cleanup.
7035
7036 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7037
7038         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
7039         function.
7040
7041         * lib/user32.def (AnimateWindow): Add function. By the way
7042         there are ~ 140 symbols missing from this file when comparing
7043         to user32.dll on Windows XP.
7044
7045 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7046
7047         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
7048         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
7049         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
7050         AnimateWindow().
7051
7052 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7053
7054         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
7055         LPGUITHREADINFO): Add function and associated typedef...
7056
7057         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
7058         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
7059         seems to be required on older versions of Windows.
7060
7061 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7062
7063         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
7064         function. MSDN suggests using gluErrorUnicodeStringWIN
7065         instead of gluErrorString, as it allows both ANSI and Unicode
7066         error strings.
7067
7068         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
7069         returned pointer const for consistency reasons.
7070
7071 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7072
7073         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
7074         Function exists in glu32.def but is undocumented on MSDN.
7075         A Google search came up with this declaration.
7076
7077 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7078
7079         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
7080         headers from OpenGL Sample Implementation. Windows ships with
7081         GLU 1.2 so some constants and functions were removed. Then some
7082         typedef's and function declarations were reworked to look like
7083         the previous GL/glu.h.
7084
7085 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7086
7087         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
7088         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
7089         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
7090
7091         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
7092         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
7093         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
7094         and `enum THEMESIZE'.
7095
7096 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7097
7098         * include/uxtheme.h: New file.
7099         * include/tmschema.h: New file.
7100         * include/uxtheme.def: New file.
7101         * lib/test.c: Include uxtheme.h, tmschema.h.
7102
7103 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7104
7105         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
7106         Add defines.
7107
7108 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7109
7110         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7111         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
7112         <winable.h> as seems to be required on older versions of
7113         Windows.
7114
7115 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7116
7117         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
7118         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7119         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
7120         Add defines, the last one only on Windows XP...
7121
7122         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
7123         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7124         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
7125         them in <winable.h> as seems to be required on older
7126         versions of Windows.
7127
7128 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7129
7130         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
7131         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7132         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7133         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
7134         back into <winuser.h>...
7135
7136         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
7137         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7138         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7139         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
7140         comment out in <winable.h>. MSDN may say <winable.h> but this
7141         breaks many programs. It seems it used to be <winable.h> on
7142         older versions of Windows.
7143
7144 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
7145
7146         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
7147         Thanks to Will Levine  <willll@users.sourceforge.net>
7148
7149 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7150
7151         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
7152         const struct sockaddr*.
7153         (LPWSPCONNECT): Likewise.
7154         (LPWSPJOINLEAF): Likewise.
7155         (LPWSPSENDTO): Likewise.
7156         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
7157
7158 2003-09-15  Filip Navara  <xnavara@volny.cz>
7159
7160         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
7161         Add definitions.
7162
7163 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
7164
7165         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
7166         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
7167         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
7168         DISPLAY_DEVICE_MODESPRUNED): Define constants.
7169         (ChangeDisplaySettingsEx[A,W]): Add prototype.
7170
7171         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
7172         (EnumDisplayDevices[A,W]): Likewise.
7173
7174 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7175
7176         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
7177         throughout.
7178
7179 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7180
7181         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7182         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7183         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7184         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7185         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
7186         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7187         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7188         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
7189         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7190         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7191         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7192         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7193         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
7194         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7195         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7196         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
7197         with documentation.
7198         * include/olectl.h: Do #include <ocidl.h>.
7199         * include/ocidl.h: Don't #include <olectl.h>.
7200
7201 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7202
7203         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
7204         Change guards to use numeric constants, throughout.
7205
7206 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
7207
7208         * include/w32api.h: Increment version to 2.5.
7209         * Makefile.in: Ditto.
7210
7211 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
7212
7213         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
7214         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
7215
7216 2003-09-08  Filip Navara  <xnavara@volny.cz>
7217
7218         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
7219         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
7220
7221 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
7222
7223         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
7224         * include/winbase.h (_NT5, etc): Ditto.
7225
7226 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7227
7228         * lib/snmpapi.def (LIBRARY) Add library name.
7229         Remove '\r', throughout.
7230         * lib/wsnmp32.def: Remove '\r', throughout.
7231         * lib/igmpagnt.def: Likewise.
7232
7233 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7234
7235         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7236         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7237         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7238         (MWMO_*): Add flags.
7239
7240         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7241         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7242         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7243         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7244
7245 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7246
7247         * lib/test.c: Add vfw.h to includes.
7248         * include/mmsystem.h: Add #ifndef guard to definition of
7249         mmioFOURCC macro.
7250         * include/vfw.h: Protect __OBJC__ from COM declarations.
7251
7252 2003-08-26  Filip Navara  <xnavara@volny.cz>
7253
7254         * include/vfw.h: New file.
7255
7256 2003-08-26  Filip Navara  <xnavara@volny.cz>
7257
7258         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7259         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7260         PIO_COMPLETION_ROUTINE.
7261
7262 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7263
7264         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7265         includes.
7266
7267 2003-08-26  Filip Navara  <xnavara@volny.cz>
7268
7269         * include/snmp.h: New file.
7270         * include/winsnmp.h: New file.
7271         * include/mgmtapi.h: New file.
7272         * lib/snmpapi.def: New file.
7273         * lib/wsnmp32.def: New file.
7274         * lib/igmpagnt.def: New file.
7275         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7276         (SnmpMgrGetTrapEx): Ditto.
7277         (SnmpMgrMIB2Disk): Remove.
7278         (dbginit): Remove.
7279
7280 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7281
7282         * include/ddk/ntifs.h: Change all C++ style comments to C.
7283         * include/GL/gl.h: Ditto.
7284
7285 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7286
7287         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7288         (SFGAO_HIDDEN): Add define.
7289
7290 2003-08-25  Filip Navara  <xnavara@volny.cz>
7291
7292         * include/commctrl.h (ILCF_*): Add defines.
7293         (ILD_*): Ditto.
7294         (HDS_*): Ditto.
7295         (IPN_FIRST, IPN_LAST): Cast to UINT.
7296         (SBN_FIRST, SBN_LAST): Add defines.
7297         (PGN_*): Ditto.
7298         (HDF_JUSTIFYMASK): Fix typo.
7299         (HDM_*): Add defines.
7300         (HICF_*): Ditto.
7301         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7302         (TBSTATE_MARKED): Add define.
7303         (TBSTYLE_EX_*): Add defines.
7304         (TBCDRF_*): Ditto.
7305         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7306         (TB_*): Ditto.
7307         (TBN_*): Ditto.
7308         (TBNRF_*): Ditto.
7309         (TTF_*): Ditto.
7310         (TBCD_*): Ditto.
7311         (TBDDRET_*): Ditto.
7312         (TBIMHT_*): Ditto.
7313         (TTM_*): Ditto.
7314         (UDM_*): Ditto.
7315         (TBIF_BYINDEX): Define as hex constant.
7316         (CDIS_*): Add defines.
7317         (CDDS_SUBITEM): Add define.
7318         (LVIF_*): Add defines.
7319         (LVM_*): Ditto.
7320         (LVGIT_UNFOLDED): Add define.
7321         (TVM_): Add defines.
7322         (TVE_EXPANDPARTIAL): Add define.
7323         (TVGN_LASTVISIBLE): Ditto.
7324         (TVN_*): Add defines.
7325         (TVNRET_*): Add defines.
7326         (TCIF_STATE): Add define.
7327         (NM_TOOLTIPSCREATED): Ditto.
7328         (CCM_*): Add defines.
7329         (INFOTIPSIZE): Add numeric value.
7330         (ODT_LISTVIEW): Ditto.
7331         (MCM_GETMAXTODAYWIDTH): Ditto.
7332         (MCHT_*): Add defines.
7333         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7334         (PGF_*): Add defines.
7335         (PGM_*): Ditto.
7336         (TBINSERTMARK): Add structure.
7337         (LPIMAGEINFO) Add typedef.
7338         (LPHDHITTESTINFO): Ditto.
7339         (NMLVGETINFOTIP[AW]: Add structures.
7340         (NMTBCUSTOMDRAW): Add structure.
7341         (TTTOOLINFOA_V*_SIZE): Add macros.
7342         (TTTOOLINFOW_V1_SIZE): Ditto.
7343         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7344         (LVITEM[AW]: Ditto.
7345         (TCITEM[AW]):Ditto.
7346         (CCSIZEOF_STRUCT): Correct macro definition.
7347         (ListView_*): Add new macros.
7348         (HIMAGELIST): Correct typedef.
7349         (HTREEITEM): Ditto.
7350
7351 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7352
7353         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7354         TCHITTESTINFO for backward compatibility.
7355         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7356         compatibility.
7357
7358 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7359
7360         * include/objidl.h (COBJMACROS): Define macros only
7361         if using C interace.
7362         * include/unknwn.h: Ditto.
7363         * include/comcat.h: Ditto.
7364
7365 2003-08-24  Filip Navara  <xnavara@volny.cz>
7366
7367         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7368         PSH_NOCONTEXTHELP): Define.
7369         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7370         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7371         (LPDLGTEMPLATE[AW]): Add typedefs.
7372
7373 2003-08-22  Filip Navara  <xnavara@volny.cz>
7374
7375         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7376         Add prototypes.
7377         BuildImpersonateTrustee[AW]): Add prototypes.
7378         GetMultipleTrustee[AW]): Add prototypes.
7379         GetMultipleTrusteeOperation[AW]): Add prototypes.
7380
7381 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7382
7383         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7384
7385 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7386
7387         * include/shlobj.h (IPersistFolder::GetClassID):
7388         Correct declaration.
7389         (CMF_*) Add missing defines.
7390
7391 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7392
7393         * include/winuser.h (DC_BUTTONS): Add define.
7394
7395 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7396
7397         * include/winuser.h (DC_GRADIENT): Add define.
7398
7399 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7400
7401         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7402         older TBSTYLE_* constants.
7403
7404 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7405
7406         * include/commctrl.h (TB_*) Group defines together.
7407
7408 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7409
7410         * include/winuser.h (ICON_SMALL2): Define.
7411         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7412         Define.
7413         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7414         (IDragSourceHelper) Define interface.
7415         (IDropTargetHelper): Likewise.
7416         (IExtractIcon): Unicode it.
7417         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7418         OnStateChange and IncludeObject methods.
7419
7420 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7421
7422         * include/commctrl.h (TreeView_GetScrollTime,
7423         TreeView_SetScrollTime): Define macros.
7424         * include/winuser.h (GetShellWindow): Add prototype.
7425         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7426
7427 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7428
7429         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7430         IID_IDragSourceHelper): Declare.
7431         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7432         IID_IDragSourceHelper): Define.
7433
7434 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7435
7436         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7437         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7438         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7439
7440 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7441
7442         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7443         CGID_ShellServiceObject): Remove definitions.
7444         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7445
7446 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7447
7448         * include/shlobj.h (SHELLSTATE): Add structure.
7449         (SHGetSetSettings): Add prototype.
7450         (SHGetSettings): Add prototype.
7451         * lib/shell32.def (SHGetSetSettings): Add stub.
7452
7453 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7454
7455         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7456         (Header_OrderToIndex): Add macro.
7457         (Header_GetOrderArray): Add macro.
7458
7459         * include/commdlg.h (FR_MATCHALEFHAMZA,
7460         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7461
7462 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7463
7464         * include/commctrl.h (TVM_GETSCROLLTIME,
7465         TVM_SETSCROLLTIME): Add defines.
7466
7467 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7468
7469         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7470         (SHGetInstanceExplorer): Correct return type.
7471         (SHGetFolderPath[AW]): Likewise.
7472         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7473         for report.
7474
7475 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7476
7477         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7478
7479 2003-08-01  Filip Navara  <xnavara@volny.cz>
7480
7481         * include/winldap.h: New file.
7482         * include/ntldap.h: New file.
7483         * include/winber.h: New file.
7484         * lib/winldap32.def: New file.
7485
7486 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7487
7488         * include/ddk/atm.h: Remove stray '.';
7489
7490 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7491
7492         * include/ddk/winddk.h: Remove trailing ';' from macros,
7493         throughout. Add () around defines with cast returns, throughout.
7494
7495 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7496
7497         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7498         (SFGAOF, SHGDNF): Add typedef's.
7499         (SHCONTF): Extend enum.
7500
7501 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7502
7503         * include/shellapi.h: Include all structs within pshpack2.h/
7504         poppack.h block.
7505
7506 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7507
7508         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7509         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7510         _WIN32_WINDOWS, not WINVER.
7511         (AllowSetForegroundWindow,LockSetForegroundWindow,
7512         SetLayeredWindowAttributes): Likewise.
7513         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7514         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7515         Add stubs.
7516
7517 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7518
7519         * include/objidl.h (IMalloc): Fix typo.
7520
7521 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7522
7523         * include/dkk/ntifs.h: Fix typo in guard for
7524         #pragma GCC system_header.
7525
7526 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7527
7528         * include/objidl.h (PropVariant): Add CHAR cVal field
7529         to union.
7530         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7531         FMTID_UserDefinedProperties): Declare.
7532
7533 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7534
7535         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7536
7537 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7538
7539         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7540         DUPLICATE_SAME_ACCESS): Remove defines.
7541         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7542         ddk/ntapi.h defines.
7543         (SEM_*) : Likewise.
7544         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7545         ddk/ntifs.h defines.
7546         (FILE_*): Likewise.
7547         (MEM_IMAGE, SEC_*): Likewise.
7548         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7549         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7550         (TOKEN_*): Sync with ddk/ntifs.h defines.
7551         * include/ddk/ntapi.h: Add comments noting definitions in
7552         winbase.h.
7553         * include/ddk/ntifs.h: Add comments noting definitions in
7554         winnt.h.
7555         * include/ddk/winddk.h: Add comments noting definitions in
7556         winnt.h.
7557
7558 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7559
7560         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7561         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7562
7563 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7564
7565         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7566
7567 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7568
7569         Clean up warnings in ddk.
7570
7571         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7572         conditional on  __cplusplus.
7573         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7574         defines, throughout.
7575         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7576         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7577         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7578         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7579         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7580         defines, throughout.
7581         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7582         defines, throughout. Remove trailing semicolon from *_S 'structure'
7583         macro expansion, throughout. Remove trailing semicolon from
7584         DECLARE_UNKNOWN_STRUCT macro expansion.
7585         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7586         _ANONYMOUS_UNION.
7587         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7588         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7589         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7590         Add _ANONYMOUS_UNION.
7591         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7592         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7593         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7594         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7595         match proto in ntapi.h.
7596         (ZwSetInformationObject): Likewise.
7597         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7598         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7599         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7600         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7601         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7602         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7603         last comma.
7604         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7605         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7606         trailing semicolon when expanding macro.
7607         (GENERAL_LOOKASIDE_S): Likewise.
7608         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7609         Change inline to __inline, throughout.
7610         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7611
7612 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7613
7614         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7615         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7616         KPRIORITY.
7617         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7618         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7619         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7620         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7621         to anonymous structs.
7622
7623 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7624
7625         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7626
7627         * include/winuser.h (mouse_event): Correct type of fifth param,
7628         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7629
7630 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7631
7632         * include/winnt.h (HANDLE): Define based on STRICT filter.
7633         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7634         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7635
7636 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7637
7638         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7639         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7640         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7641         for report.
7642
7643 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7644
7645         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7646
7647 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7648
7649         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7650         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7651         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7652         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7653         (TPM_RECURSE): Add guard for Win98/Win2K.
7654         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7655
7656 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7657
7658         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7659         avoid user namespace conflicts.
7660
7661 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7662
7663         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7664         _IE3, _IE4, _IE5, _IE6): Add definitions.
7665         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7666         >= Win98.
7667         Change existing guards to use the above macro names as appropriate.
7668         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7669         Note: Also added to mingw/include/_mingw.h.
7670
7671 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7672
7673         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7674         PathFindSuffixArrayA, PathFindSuffixArrayW,
7675         PathFindExtensionA, PathFindExtensionW, StrStrW
7676         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7677         explicit type.
7678
7679 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7680
7681         * include/richedit.h (PARAFORMAT2): Add definition.
7682         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7683         missing constants.
7684
7685 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7686
7687         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7688         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7689         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7690         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7691
7692 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7693
7694         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7695         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7696         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7697         that these are obsolete no-ops.
7698
7699 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7700
7701         * include/winbase.h (GetProcessWorkingSetSize,
7702         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7703         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7704         Correct prototypes.
7705
7706 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7707
7708         * include/winuser.h (TPM_RECURSE): Add define.
7709
7710 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7711
7712         * lib/test.c: #include <powrprof.h>.
7713
7714 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7715
7716         * include/powerprof.h: New file.
7717         * lib/powerprof.def: New file.
7718
7719 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7720
7721         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7722         protection.
7723
7724 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7725
7726         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7727         hInstance members to HINSTANCE.
7728         Thanks to: Brenden T. <brenden@rcsis.com>
7729
7730 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7731
7732         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7733         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7734
7735 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7736
7737         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7738         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7739         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7740         Remove.
7741         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7742
7743 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7744
7745         * lib/oleacc.def: New file.
7746         * include/winable.h: New file.
7747         * include/oleacc.h: Add extern "C" guard.
7748         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7749         (AccessibleChildren, AccessibleObjectFromEvent,
7750         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7751         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7752         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7753         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7754         * include/winuser.h (NotifyWinEvent): Add prototype.
7755         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7756         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7757         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7758         OBJID_SOUND): Move from here to...
7759         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7760         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7761         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7762         OBJID_SOUND): Here, as per documentation.
7763         * lib/test.c: Include winable.h.
7764         * lib/user32.def (NotifyWinEvent): Add missing export.
7765
7766 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7767
7768         * include/winbase.h (HeapCompact): Correct prototype.
7769         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7770         SLIST_HEADER): Add.
7771
7772 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7773
7774         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7775
7776 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7777
7778         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7779
7780 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7781
7782         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7783         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7784
7785 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7786
7787         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7788         lpGlyphs field to LPWSTR.
7789
7790 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7791
7792         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7793         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7794         (PP_*): Add defines.
7795         (CryptContextAddRef): Add prototype.
7796         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7797
7798 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7799
7800         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7801
7802 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7803
7804         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7805         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7806         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7807         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7808         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7809         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7810         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7811         readability.
7812         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7813         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7814
7815 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7816
7817         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7818         Unname anonymous unions if NONAMELESSUNION not defined.
7819
7820 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7821
7822         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7823
7824 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7825
7826         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7827         anonymous unions as GCC extension.
7828
7829 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7830
7831         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7832         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7833         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7834         commented out).
7835         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7836
7837 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7838
7839         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7840         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7841         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7842
7843 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7844
7845         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7846         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7847         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7848         IProvideClassInfo2,IConnectionPointContainer,
7849         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7850         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7851         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7852         IPicture,IPictureDisp): Move from here to...
7853         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7854         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7855         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7856         IProvideClassInfo2,IConnectionPointContainer,
7857         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7858         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7859         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7860         IPicture,IPictureDisp): Here, as per documentation.
7861
7862 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7863
7864         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7865         * include/winbase.h (TerminateJobObject,
7866         AssignProcessToJobObject): Likewise.
7867         * include/servprov.h: New header.
7868         * lib/test.c: Include servprov.h.
7869
7870 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7871
7872         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7873         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7874         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7875         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7876         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7877         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7878
7879 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7880
7881         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7882         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7883         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7884
7885 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7886
7887         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7888         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7889         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7890         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7891         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7892         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7893         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7894
7895 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7896
7897         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7898
7899 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7900
7901         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7902         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7903
7904 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7905
7906         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7907         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7908         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7909
7910 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7911
7912         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7913
7914 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7915
7916         * include/oaidl.h (ITypeMarshal): Add interface.
7917
7918 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7919
7920         * include/winioctl.h: Clean up formatting.
7921         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7922         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7923         (DISK_CACHE_INFORMATION): Likewise.
7924         (DISK_DETECTION_INFO): Likewise.
7925         (DISK_PARTITION_INFO): Likewise.
7926         (PARTITION_INFORMATION_EX): Likewise.
7927         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7928
7929 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7930
7931         * include/winbase.h (DeleteVolumeMountPoint[AW],
7932         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7933         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7934         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7935         SetVolumeMountPoint[AW]): Add prototypes.
7936         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7937         IOCTL_DISK_SET_PARTITION_INFO_EX,
7938         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7939         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7940         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7941         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7942         IOCTL_DISK_GET_CACHE_INFORMATION,
7943         IOCTL_DISK_SET_CACHE_INFORMATION,
7944         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7945         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7946         FSCTL_MOVE_FILE): Define.
7947         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7948         DISK_CACHE_INFORMATION,
7949         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7950         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7951         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7952         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7953         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7954         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7955         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7956         MOVE_FILE_DATA,
7957         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7958         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7959         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7960         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7961         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7962         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7963         F3_240M_512, and F3_32M_512.
7964         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7965         stubs.
7966
7967 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7968
7969         * include/wingdi.h (DM_SPECVERSION): Define.
7970         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7971         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7972         appropriate _WIN32_WINNT values.
7973
7974 2003-04-15  Chris January  <chris@atomice.net>
7975
7976         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7977         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7978
7979 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7980
7981         * include/winuser.h (VK_*): Add missing defines.
7982
7983 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7984
7985         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7986         documented typedefs for struct _NM_UPDOWN.
7987         Add defines for backward comapatibility.
7988         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7989         * include/wininet.h (IRF_*): Add missing defines.
7990
7991 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7992
7993         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7994
7995 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7996
7997         * include/sspi.h: Add comment for FreeCredentialsHandle.
7998
7999 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
8000
8001         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
8002
8003 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
8004
8005         * include/olectl.h (OleLoadPicturePath): Correct prototype.
8006
8007 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
8008
8009         * lib/uuid.c (IID_IHTML*): Move definitions to...
8010         * lib/mshtml-uuid.c: New file.
8011         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
8012
8013 2003-03-30  Michael Sazonov  <traip@comset.net>
8014
8015         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
8016         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
8017         IHTMLImgElement): Add interface definitions.
8018
8019 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
8020
8021         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
8022         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
8023         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
8024         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
8025         RC_INVOKED guard.
8026         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
8027         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
8028
8029 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
8030
8031         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
8032
8033 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
8034
8035         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
8036         TranslateName[AW]): Add prototypes.
8037         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
8038         TranslateName[AW]): Add stubs.
8039         * lib/test.c: Include secext.h.
8040
8041 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
8042
8043         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
8044         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
8045         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
8046         _SpinLock.
8047
8048 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
8049
8050         * include/w32api.h: Increment version to 2.4.
8051         * Makefile.in: Ditto.
8052
8053 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
8054
8055         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
8056         Move structure from here...
8057         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
8058
8059         * include/ddk/ntapi.h (JOBOBJECT_*):
8060         Remove structures and enums definitions.
8061         (JOB_OBJECT*): Move defines from here...
8062         * include/winnt.h (JOB_OBJECT* ): To here.
8063
8064         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
8065         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8066         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8067         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8068         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8069         SYSTEM_POWER_CAPABILITIES): Move enums, structures
8070         and associated defines from here ...
8071         * include/winnt.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):To here.
8077
8078         * include/ddk/winddk.h (DEVICE_POWER_STATE,
8079         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
8080         from here...
8081         * include/winnt.h (DEVICE_POWER_STATE,
8082         SYSTEM_POWER_STATE, POWER_ACTION): To here.
8083
8084 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
8085
8086         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
8087         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
8088         (NdisUpdateSharedMemory): Likewise.
8089         (NdisMFreeSharedMemory: Likewise.
8090         (NdisMMapIoSpace: Likewise.
8091
8092 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
8093
8094         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
8095         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
8096         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
8097
8098 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
8099
8100         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
8101         (EnumResourceNames[AW]): Ditto.
8102         (EnumResourceTypes[AW]): Ditto.
8103         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
8104
8105 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
8106
8107         * include/winuser.h (SendInput): Add prototype.
8108         * lib/user32.def (SendInput): Add stub.
8109
8110 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
8111
8112         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
8113         (FSCTL_DELETE_REPARSE_POINT): Likewise.
8114
8115 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
8116
8117         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
8118         (JOBOBJECT_*): Define corresponding structures.
8119
8120 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
8121
8122         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
8123         typedef.
8124
8125 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
8126
8127         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
8128         (Process32{First,Next}{,W}): Ditto.
8129         (Thread32{First,Next}): Ditto.
8130         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
8131
8132 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
8133
8134         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
8135         Thanks to Jim Barton <jmbarton@users.sf.net>.
8136
8137 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
8138
8139         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
8140         member SectionAlignment.
8141
8142 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
8143
8144         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
8145         warnings.
8146         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
8147         * Makefile.in (bindist): Correct process.
8148         * lib/Makefile.in (install): Ditto.
8149         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
8150
8151 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
8152
8153         * include/rasdlg.h: New file.
8154         * lib/rasdlg.def: New file.
8155         * lib/test.c: Include rasdlg.h.
8156
8157 2003-03-06  Christopher January  <chris@atomice.net>
8158
8159         * include/winbase.h (FindFirstVolume): Add declaration.
8160         (FindNextVolume): Add declaration.
8161         (FindVolumeClose): Add declaration.
8162         (GetSystemTimes): Add declaration.
8163         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
8164
8165 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
8166
8167         *lib/kernel32.def (GetSystemTimes): Add stub.
8168
8169 2003-03-04  Heiko Gerdau  <hg@technosis.de>
8170
8171         * oleidl.h (IOleObject): Correct GetUserType prototype.
8172         (IViewObject2): Correct GetExtent prototype.
8173         * olectl.h (DISPIP_): Add new defines
8174         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
8175
8176 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8177
8178         * include/olectl.h (OleLoadPictureEx) Add prototype.
8179         (OleLoadPictureFile): Ditto.
8180         (OleLoadPictureFileEx): Ditto.
8181         (OleLoadPicturePath): Ditto.
8182         (OleSavePictureFile): Ditto.
8183
8184 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8185
8186         * include/objbase.h (CoAddRefServerProcess): Add prototype.
8187         (CoAddReleaseServerProcess): Ditto.
8188         (CoResumeClassObjects): Ditto.
8189         (CoSuspendClassObjects): Ditto.
8190         * include/oleauto.h (V_I1): Define.
8191         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
8192
8193 2003-03-01  Heiko Gerdau  <hg@technosis.de>
8194
8195         * include/oleidl.h (USERCLASSTYPE): Add enum.
8196         * include/ocidl.h (IObjectWithSite): Add interface.
8197
8198 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
8199
8200         Fixup UNICODE thinko in 2003-02-22 patch.
8201         * include/wingdi.h (AddFontMemResourceEx): Add.
8202         (RemoveFontMemResourceEx): Ditto.
8203         (AddFontMemResourceEx[AW]): Remove.
8204         (RemoveFontMemResourceEx[AW]): Ditto
8205         * lib/gdi32.def: (AddFontResourceEx): Add.
8206         (RemoveFontMemResourceEx): Ditto.
8207         (AddFontMemResourceEx[AW]): Remove.
8208         (RemoveFontResourceEx[AW]): Ditto.
8209
8210 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
8211
8212         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
8213         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
8214
8215 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
8216
8217         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
8218         (RemoveFontMemResourceEx[AW]): Ditto
8219         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
8220         (RemoveFontMemResourceEx[AW]): Ditto.
8221
8222 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
8223
8224         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
8225         (NtCurrentTeb): Remove.
8226
8227 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8228
8229         * include/wsahelp.h: Remove ';' after closing
8230         #ifdef __cplusplus brace.
8231         * include/ws2spi.h: Likewise.
8232
8233 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8234
8235         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8236         (GlobalMemoryStatusEx): Add prototype.
8237         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8238
8239 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8240
8241         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8242
8243 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8244
8245         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8246         (RemoveFontResourceEx[AW]): Ditto
8247         (FR_PRIVATE): Define.
8248         (FR_NOT_ENUM): Define.
8249         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8250         (RemoveFontResourceEx[AW]): Ditto.
8251
8252 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8253
8254         * include/w32api.h: Increment version to 2.3.
8255         * Makefile.in: Ditto.
8256
8257 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8258
8259         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8260         (Ke386QueryToAccessMap): Ditto.
8261         (Ke386SetIoAccessMap): Ditto.
8262         Thanks to Marcel Telka <telka@users.sf.net>
8263         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8264         * include/security.h: Include secext.h.
8265         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8266         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8267         * include/GL/gl.h: Remove include of glext.h.
8268         Thanks to Greg Couch <gregcouch@users.sf.net>
8269
8270 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8271
8272         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8273         using GUID_DEFINED instead.
8274         * include/sqltypes.h: Ditto.
8275         * include/winnt.h: Ditto.
8276         * include/ddk/scsiwmi.h: Ditto.
8277
8278 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8279
8280         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8281         prototypes.
8282         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8283
8284 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8285
8286         * include/commctrl.h (TCM_*): Add missing defines.
8287
8288 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8289             Danny Smith  <dannysmith@users.sourceforge.net>
8290
8291         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8292         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8293         for (_WIN32_IE >= 0x0400).
8294         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8295         fields for (_WIN32_IE >= 0x0400).
8296
8297 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8298
8299         * include/winbase.h (CreateFiber): Change first parameter
8300         to SIZE_T.
8301         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8302         if (_WIN32_WINNT >= 0x0500).
8303
8304 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8305
8306         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8307         Add missing typedefs.
8308         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8309         prototypes.
8310         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8311
8312 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8313
8314         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8315         define.
8316         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8317
8318 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8319
8320         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8321         define.
8322         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8323         definition.
8324         (WAIT_FAILED): Cast to DWORD.
8325         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8326         definition.
8327
8328 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8329
8330         * include/winerror.h: Protect against multiple
8331         definition of WSA* error codes.
8332         * include/winsock.h: Likewise.
8333         * include/winsock2.h: Likewise.
8334
8335 2003-01-27  Bang Dong-Heui
8336             Bang Jun-Young  <junyoung@netbsd.org>
8337
8338         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8339         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8340         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8341
8342
8343 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8344
8345         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8346         (WINVER >= 0x501).
8347
8348 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8349
8350         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8351         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8352         fields for (WINVER >= 0x501).
8353
8354 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8355
8356         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8357         Add stubs.
8358         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8359         options.
8360
8361 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8362
8363         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8364         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8365
8366 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8367
8368         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8369         SE_REGISTRY_WOW64_32KEY.
8370         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8371
8372 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8373
8374         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8375         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8376         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8377
8378 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8379
8380         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8381
8382 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8383
8384         * lib/dxguid.c: Don't #include <objbase.h>.
8385         * include/unknwn.h: Partially revert change of 2002-12-26.
8386         Don't include <ole2.h>.
8387
8388 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8389
8390         * lib/dinput.c: Don't #include <objbase.h>.
8391
8392 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8393
8394         * include/windows.h (ole2.h):Do #include for
8395         __WATCOMC__.
8396
8397 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8398
8399         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8400         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8401         definition.
8402         (WHEEL_PAGESCROLL): Likewise.
8403         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8404
8405 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8406
8407         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8408         (WHEEL_PAGESCROLL): Add define.
8409
8410 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8411
8412         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8413         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8414         compatability. Add RECT field. Add UNICODE mappings for new
8415         names.
8416         (tagNMREBARCHEVRON): Add struct and typedefs for
8417         _WIN32_IE >= 0x0500.
8418
8419 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8420
8421         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8422         (LVHITTESTINFO): Likewise.
8423
8424         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8425         (GRADIENT_RECT): Likewise.
8426
8427 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8428
8429         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8430         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8431         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8432         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8433         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8434         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8435         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8436         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8437         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8438         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8439         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8440         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8441         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8442         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8443         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8444         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8445         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8446         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8447         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8448         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8449         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8450         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8451         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8452         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8453         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8454         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8455         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8456         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8457         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8458         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8459         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8460         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8461         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8462         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8463         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8464         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8465         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8466         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8467         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8468         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8469         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8470         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8471         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8472         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8473         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8474         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8475         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8476         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8477         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8478         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8479         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8480         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8481         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8482         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8483         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8484         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8485         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8486         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8487         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8488         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8489         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8490         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8491         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8492         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8493         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8494         Add missing error codes.
8495
8496 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8497
8498         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8499         asm code.
8500         (GetFiberData): Likewise.
8501
8502 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8503
8504         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8505         asm code.
8506         (GetFiberData): Likewise.
8507
8508 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8509
8510         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8511         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8512         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8513         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8514         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8515         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8516         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8517         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8518         error codes.
8519         Re-sort codes.
8520
8521 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8522
8523         * include/winspool.h (PRINTER_INFO_6): Add.
8524         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8525
8526 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8527
8528         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8529
8530         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8531         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8532         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8533         Add stubs.
8534
8535 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8536
8537         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8538         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8539
8540 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8541
8542         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8543
8544 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8545
8546         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8547         VIETNAMESE_CHARSET): Remove duplicate defines.
8548         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8549
8550 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8551
8552         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8553         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8554
8555 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8556
8557         * include/unknwn.h: Include windows.h and ole2.h before header
8558         guard to avoid circular inclusion of COM headers.
8559
8560 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8561
8562         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8563         ReuseDDElParam): Use __WIN64 compatible typedefs.
8564
8565 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8566
8567         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8568         lpInheritProperty member const.
8569         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8570         const.
8571
8572 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8573
8574         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8575         COM_NO_WINDOWS_H.
8576         * include/unknwn.h: Ditto.
8577
8578 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8579
8580         * include/imm.h (ImmGetCompositionFont[AW],
8581         ImmSetCompositionFont[AW]): Add NOGDI guard.
8582
8583 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8584
8585         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8586         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8587         before using.
8588         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8589         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8590         definition.
8591         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8592         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8593         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8594         definition.
8595         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8596         (LPCGUID): Likewise.
8597         * include/ddk/tdi.h: Close "Listen flags" comment.
8598         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8599         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8600         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8601         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8602         * include/ddk/win2k.h: Likewise.
8603         * include/ddk/winddi.h: Likewise.
8604         * include/ddk/winddk.h: Likewise.
8605         * include/ddk/winnt4.h: Likewise.
8606         * include/ddk/ws2san.h: Likewise.
8607         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8608         * include/ddk/video.h: Don't process rest of file ifdef
8609         __WINDDI_H.
8610         * include/ddk/winddi.h: Don't process rest of file ifdef
8611         __VIDEO_H.
8612         * include/ddk/usb.h: Don't process rest of file ifdef
8613         __USBDI_H.
8614         * include/ddk/usbdi.h: Don't process rest of file ifdef
8615         __USB_H.
8616         * include/ddk/usbcamdi.h: Don't process rest of file if
8617         !defined(__USB_H) && !defined(__USBDI_H)
8618
8619 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8620
8621         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8622         prototypes.
8623         * include/winuser.h (GetAncestor) Add prototype.
8624         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8625         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8626         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8627         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8628         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8629         defines.
8630         * lib/user32.def (GetAncestor@8): Add stub.
8631
8632 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8633
8634         * include/windows.h: Guard inclusion of wingdi.h,
8635         commdlg.h, winspool.h, ole2.h with NOGDI.
8636         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8637         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8638         Guard with NOGDI.
8639
8640 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8641
8642         * include/oleacc.h (SELFLAG_*): Change to enum.
8643
8644 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8645
8646         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8647         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8648
8649 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8650
8651         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8652         to UINT.
8653         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8654
8655 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8656
8657         * include/winuser.h (AllowSetForegroundWindow,
8658         LockSetForegroundWindow): Add prototypes.
8659         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8660         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8661         * lib/winuser.def (AllowSetForegroundWindow,
8662         LockSetForegroundWindow): Add stubs.
8663
8664 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8665
8666         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8667         UNICODE mappings.
8668         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8669         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8670         compatability. Add lParam field. Add UNICODE mappings for new
8671         names.
8672
8673 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8674
8675         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8676         Wrap with pshpack2.h/poppack.h to correct alignment.
8677
8678 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8679
8680         * include/commctrl.h (LVBKIF_*): Add defines.
8681         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8682         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8683         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8684         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8685         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8686         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8687         (ListView_GetBkImage): Add define.
8688         (ListView_SetBkImage): Add define.
8689         (LVBKIMAGE): Add structures and typedefs.
8690
8691 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8692
8693         * include/w32api.h: Increment to version 2.2
8694         * Makefile.in: Ditto.
8695
8696 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8697
8698         * lib/Makefile.in (dist, install): Correct the install destinations.
8699         * lib/ddk/Makefile.in (dist, install): Ditto.
8700
8701 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8702
8703         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8704         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8705         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8706         in definitions.
8707         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8708         IID_IOleControlSite89): Remove.
8709
8710 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8711
8712         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8713         (IID_IStdMarshalInfo): Ditto.
8714
8715 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8716
8717         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8718         (IID_IPersistStorage): Ditto.
8719
8720 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8721
8722         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8723         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8724         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8725         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8726         Correct definitions.
8727
8728 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8729
8730         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8731         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8732         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8733         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8734         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8735         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8736         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8737         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8738         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8739         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8740         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8741         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8742         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8743         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8744         xfilter.h): Change comment to refer w32api package, not MinGW.
8745
8746 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8747
8748         * include/ddk/ntddk.h: Include winnt.h as system header.
8749
8750 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8751
8752         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8753         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8754         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8755         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8756         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8757         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8758         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8759         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8760         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8761         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8762         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8763         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8764         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8765         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8766         xfilter.h): Fix typo in disclaimer comment.
8767
8768 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8769
8770         * include/exdisp.h: Include oaidl.h as system header.
8771
8772 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8773
8774         * include/w32api.h (__W32API_VERSION): Fix.
8775
8776 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8777
8778         * lib/uuid.c (IID_ICatInformation): Correct definition.
8779
8780 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8781
8782         * include/oleauto.h (DeregisterTypeLib): Remove.
8783         (UnRegisterTypeLib): Add prototype.
8784
8785 2002-11-07  Christopher January  <chris@atomice.net>
8786
8787         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8788
8789 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8790
8791         * include/winnt.h (VerSetConditionMask): Add prototype.
8792         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8793
8794 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8795
8796         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8797         definitions and ANSI/UNICODE mappings.
8798         Cleanup whitespace.
8799
8800 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8801
8802         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8803         * configure.in: Ditto.
8804         * lib/Makefile.in: Ditto.
8805         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8806         autoconf-2.53.
8807         * configure: Regenerate.
8808
8809 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8810
8811         * include/windows.h: Don't include basetyps.h.
8812         * include/objfwd.h: Do include basetyps.h.
8813
8814 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8815
8816         * include/objbase.h: Include rpc.h and rpcndr.h
8817         before header guard.
8818
8819 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8820
8821         * include/olectl.h (PROPPAGEINFO): Change type of
8822         field cb to ULONG.
8823
8824 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8825
8826         * lib/ntdll.def (RtlAcquireResourceExclusive,
8827         RtlAcquireResourceShared, RtlDeleteResource,
8828         RtlInitializeResource, RtlReleaseResource,
8829         RtlTimeToSecondsSince1970) : Added missing exports.
8830
8831 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8832
8833         * include/oleacc.h: New file.
8834         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8835         (OBJID_*) Add defines.
8836         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8837         * lib/test.c: Include oleacc.h.
8838
8839 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8840
8841         * include/ddk: New subdir.
8842         * lib/ddk: Ditto.
8843         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8844         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8845         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8846         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8847         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8848         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8849         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8850         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8851         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8852         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8853         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8854         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8855         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8856         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8857         xfilter.h): New files.
8858         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8859         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8860         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8861         win32k.def): Ditto.
8862
8863 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8864
8865         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8866         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8867         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8868         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8869         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8870         RtlAddAccessAllowedAce, RtlCreateAcl,
8871         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8872         RtlGetAce, RtlGetControlSecurityDescriptor,
8873         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8874         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8875         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8876         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8877         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8878         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8879         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8880         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8881         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8882         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8883         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8884         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8885         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8886
8887 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8888
8889         *include/windef.h (WPARAM): Update typedef.
8890         (LPARAM): Ditto.
8891         (LRESULT): Ditto.
8892
8893 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8894
8895         * include/shlobj.h (CSIDL_*): Add defines.
8896
8897 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8898
8899         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8900         has been included first.
8901
8902 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8903
8904         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8905         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8906         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8907
8908 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8909
8910         * include/winuser.h (DS_SHELLFONT): Define.
8911
8912 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8913
8914         * include/winnt.h (VER_SUITE_BLADE): Define.
8915
8916 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8917
8918         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8919         Add _WIN32_IE guard. Correct prototype for wide version.
8920         (SHGetFolderPath): Add comment on shfolder.dll.
8921         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8922         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8923
8924 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8925
8926         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8927         * lib/shfolder.def: New file.
8928
8929 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8930
8931         * include/winsock.h (timeval): Guard struct and associated
8932         macros with _TIMEVAL_DEFINED.
8933         * include/winsock2.h (timeval): Likewise.
8934
8935 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8936
8937         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8938         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8939         SHCreateShellItem,SHEmptyRecycleBin[AW],
8940         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8941         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8942         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8943         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8944         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8945         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8946         SHLoadNonloadedIconOverlayIdentifiers,
8947         SHOpenFolderAndSelectItems,SHParseDisplayName,
8948         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8949         SHSetLocalizedName,SHSetUnreadMailCountW,
8950         SHUpdateRecycleBinIcon: Add missing stubs.
8951
8952 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8953
8954         * include/windef.h (WINVER): Add documentation.
8955         (_WIN32_WINNT): Ditto.
8956         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8957
8958 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8959
8960         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8961
8962 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8963
8964         * include/winbase.h (AllocateUserPhysicalPages,
8965         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8966         FreeUserPhysicalPages): Add prototypes.
8967         * lib/kernel32.def: Add function stubs for above.
8968
8969 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8970
8971         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8972         Add WINVER guards for dialog box command id defines.
8973
8974 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8975
8976         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8977
8978 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8979
8980         * include/wincon.h: Define GetConsoleWindow(void).
8981
8982 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8983
8984         * include/w32api.h: Increment version to 2.1.
8985         * Makefile.in: Ditto.
8986
8987 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8988
8989         * include/winsock2.h (SOCKET_ADDRESS): Define if
8990         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8991         (CSADDR_INFO): Ditto.
8992         (nspapi.h) : Don't include. Removed FIXME comment.
8993         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8994         __CSADDR_T_DEFINED is not defined.
8995         (CSADDR_INFO): Ditto.
8996         (BLOB): Add structure and typedef if not already defined.
8997         (NS_*): Add defines.
8998         (SERVICE_*): Ditto.
8999         (SERVICE_ADDRESS): Add structure and typedefs.
9000         (SERVICE_ADDRESSES): Ditto.
9001         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
9002         (LPSERVICE_ASYNC_INFO): Add typedef.
9003         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
9004         mappings.
9005         * include/wsipx.h: New file.
9006         * include/svcguid.h: New file.
9007         * lib/test.c: Include wspix.h and svcguid.h.
9008
9009 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9010
9011         * include/wsahelp.h: New file.
9012         * lib/test.c: Include wsahelp.h.
9013
9014 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
9015
9016         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
9017         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
9018
9019 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9020
9021         * include/ws2spi.h: Modify comment about being part of
9022         mingw32 package.
9023         (winsock2.h): Change "" to <>.
9024
9025 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9026
9027         * include/ws2spi.h: New file.
9028         * lib/test.c: Include ws2spi.h.
9029
9030 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9031
9032         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
9033         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
9034         functions.
9035
9036 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9037
9038         * include/winuser.h (CURSOR_SHOWING) Add define.
9039         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
9040
9041 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9042
9043         * include/winerror.h: Cast OLE error codes to HRESULT.
9044         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
9045
9046 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9047
9048         * include/wincrypt.h (ALG_*): Add defines.
9049         (CALG_*): Ditto.
9050         (CRYPT_*): Ditto.
9051         (PP_*): Ditto.
9052         (PROV_*): Ditto.
9053         (PRIVATEKEYBLOB): Add define.
9054
9055 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
9056
9057         * include/shlobj.h (SHGetFolderPath): Add define.
9058         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
9059         (SHGetFolderPath): Ditto.
9060
9061 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9062
9063         * include/commdlg.h: Don't include COM headers or use
9064         COM-dependent symbols if __OBJC__.
9065
9066 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9067
9068         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
9069         Add prototypes.
9070
9071 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
9072
9073         * include/shellapi.h (FOF_NOERRORUI): Add define.
9074
9075 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
9076
9077         * include/objidl.h (IEnumMoniker): Put 'interface' back.
9078
9079 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
9080
9081         * include/objidl.h (IEnumMoniker): Correct declaration.
9082
9083 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
9084
9085         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
9086
9087 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
9088
9089         * include/commctrl.h: Whitespace change.
9090
9091 2002-08-09  Lars Munch  <lars@segv.dk>
9092
9093         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
9094         struct name _TVHITTESTINFO and typedefs and add defines for
9095         backward compatability.
9096         (ListView_SetExtendedListViewStyleEx): Add macro.
9097
9098 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
9099
9100         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
9101         Add prototypes.
9102         * lib/msimg32.def: New file, with stubs for above.
9103
9104 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
9105
9106         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
9107         GetFileSizeEx, SetFilePointerEx): Add prototypes.
9108         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
9109         and UNICODE mappings.
9110
9111 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9112
9113         * include/winbase.h (ReadFileScatter, WriteFileGather):
9114         Change second parameter to pointer.
9115
9116 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
9117
9118         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
9119         UNICODE mappings.
9120         * lib/wininet.def: Regenerate.
9121
9122 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9123
9124         * include/windef.h (PVOID): Move typedef to...
9125         * include/winnt: ...here.
9126         (PVOID64): New typedef.
9127
9128         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
9129         * include/winbase.h (ReadFileScatter, WriteFileGather):
9130         Add prototypes.
9131
9132         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
9133         (PROCESSOR_INTEL_IA64): Add define.
9134
9135 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9136
9137         * include/oleidl.h (MK_ALT): Define.
9138
9139 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9140
9141         * include/exdisp.h: New file.
9142         * include/exdispid.h: New file.
9143         * include/mshtml.h: New file.
9144         * lib/test.c: #include exdisp.h and mshtml.h
9145         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
9146         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
9147         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
9148         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
9149         New GUIDs.
9150
9151 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9152
9153         * include/docobj.h: New file.
9154         * include/idispids.h: New file.
9155         * include/objidl.h (IID_IMoniker): Declare.
9156         * include/ocidl.h (READYSTATE): New enum.
9157         (IOleInPlaceSiteEx): New interface.
9158         * include/olectlid.h (IID_IEnumSTATSTG): New interface
9159         identifier.
9160         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
9161         IOleInPlaceSite): New interfaces.
9162         * lib/test.c: #include docobj.h,idispids.h,
9163
9164 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9165
9166         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
9167         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
9168
9169 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
9170
9171         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
9172         * include/commdlg.h: Likewise.
9173
9174 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
9175
9176         * include/oleauto.h (V_UNION): Correct definition for case of
9177         NONAMELESSUNION:
9178         (V_VT): Likewise.
9179
9180 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
9181
9182         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
9183         not bool, for C as well as C++.
9184
9185 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
9186
9187         * include/shlwapi.h: New file.
9188         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
9189         Victor Porton  <porton@narod.ru> for contributions.
9190         * lib/shlwapi.def: New file.
9191         * lib/test.c: #include shlwapi.h.
9192
9193 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
9194
9195         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
9196         character.
9197         * include/winsock2.h (struct sockaddr): Use __int64 instead of
9198         long long.
9199         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
9200         does not need external *Fiber library functions.
9201
9202 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9203
9204         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
9205         definition.
9206         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
9207         avoid compile error when already defined.
9208
9209 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
9210
9211         * include/winuser.h (WM_MENURBUTTONUP): Add define.
9212
9213 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9214
9215         * include/commdlg.h: Define CDN_* notification message constants
9216         as UINT.
9217
9218 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
9219
9220         * include/commctrl.h: Define notification message constants for
9221         NMHDR.code as UINT.
9222
9223 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
9224
9225         * include/ddeml.h (MH_*) Add defines.
9226         (MONHSZSTRUCT): Add structure and typedefs.
9227         (MONLINKSTRUCT): Ditto.
9228         (MONCONVSTRUCT): Ditto.
9229         (MONCBSTRUCT): Ditto.
9230         (MONERRSTRUCT): Ditto.
9231         (MONMSGSTRUCT): Ditto.
9232         * include/windef.h: Don't define __cdecl or _cdecl for
9233         __WATCOM__.
9234         Don't define _export or __export for __WATCOM__.
9235         * include/windows.h (imm.h): #include.
9236         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9237
9238 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9239
9240         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9241         rpcndr.h.
9242
9243 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9244
9245         * include/winbase.h (OpenThread): Add prototype.
9246         * lib/kernel32.def (OpenThread): Add symbol.
9247
9248 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9249
9250         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9251
9252 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9253
9254         * include/rpc.h: Conditionally include <windows.h> before
9255         header guard.
9256         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9257         header guard.
9258
9259 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9260
9261         * include/commctrl.h (WC_*): Remove some duplicate defines.
9262
9263 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9264
9265         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9266         UNICODE mappings.
9267         (IPM*): Add defines.
9268         (IPN_*): Add defines.
9269         (NMIPADDRESS): Add structure and typedefs.
9270         (MAKEIPADDRESS): Add macro.
9271         (MAKEIPRANGE): Add macro.
9272         (FIRST_IPADDRESS): Add macro.
9273         (SECOND_IPADDRESS): Add macro.
9274         (THIRD_IPADDRESS): Add macro.
9275         (FOURTH_IPADDRESS): Add macro.
9276
9277 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9278
9279         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9280
9281 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9282
9283         * include/winbase.h (WINBASEAPI): Don't define if prior
9284         definition.
9285
9286         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9287         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9288         PARTITION_UNIX): Add defines.
9289         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9290         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9291         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9292         (IsContainerPartition): Add macro.
9293
9294 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9295
9296         * include/commctrl.h: (CBEIF_*): Add defines.
9297         (CBEN_*): Add defines and UNICODE mappings
9298         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9299         (CBEMAXSTRLEN): Add define.
9300         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9301         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9302         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9303         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9304
9305 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9306
9307         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9308         union member _VARIANT_BOOL bool.
9309
9310 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9311
9312         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9313
9314 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9315
9316         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9317         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9318         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9319         Add typedefs.
9320         (CCHAR): Correct typedef.
9321         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9322         Add defines.
9323
9324 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9325
9326         * README.w32api: Correct spelling error.
9327
9328 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9329
9330         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9331         INPUT_HARDWARE): Add defines.
9332         (HDEVNOTIFY): Add typedef.
9333         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9334         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9335         typedefs.
9336         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9337         GetClassInfoEx[AW],GetKeyboardLayoutList,
9338         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9339         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9340         RegisterClassEx[AW]): Correct prototypes.
9341
9342 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9343
9344         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9345         prototypes.
9346         * include/winsvc.h (StartServiceW): Correct prototype.
9347         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9348         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9349         GetTickCount,InterlockedExchangeAdd,
9350         WritePrivateProfileStruct[AW]: Correct prototypes.
9351         (GetEnvironmentStrings): Correct mapping to
9352         GetEnvironmentStringsA.
9353         * include/winver.h (VerQueryValueA,VerQueryValueW):
9354         Correct prototypes.
9355         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9356         prototype.
9357         * include/winreg.h (RegQueryMultipleValues[AW],
9358         RegQueryValueEx[AW]):Correct prototypes.
9359         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9360         PPOLYTEXTW): Add typedefs.
9361         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9362         structures and typedefs.
9363         (MM_MAX_NUMAXES): Add define.
9364         (EnumFontsW,GetEnhMetaFilePixelFormat,
9365         wglGetLayerPaletteEntries): Correct prototypes.
9366         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9367         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9368         RPC_S_SEND_INCOMPLETE): Add defines.
9369
9370 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9371
9372         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9373         Add defines.
9374
9375 2002-06-16  Egor Duda  <deo@logos-m.ru>
9376
9377         * include/ntdll.h: New file.
9378         * lib/ntdll.def: Add NtShutdownSystem.
9379
9380 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9381
9382         * lib/dinput.def (DirectInputCreateEx): Add stub.
9383         * lib/ntdll.def: New file.
9384
9385 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9386
9387         * include/w32api.h: Change to version 2.0 to reflect the change
9388         in the license.
9389         * README: Renamed.
9390         * README.w32api: Renamed from README.  Modified license to remove
9391         the restriction of notifying the author based on the fact that the
9392         author is unreachable at the notified address.
9393         * Makefile.in (VERSION): Change to 2.0.
9394
9395 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9396
9397         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9398         * Makefile.in (bindist): Correct the MinGW distribution.
9399
9400 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9401
9402         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9403         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9404
9405 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9406
9407         * lib/test.c: #include comcat.h.
9408
9409 2002-06-13  John K. Hohm  <jhohm@acm.org>
9410
9411         * include/comcat.h: New file.
9412
9413 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9414
9415         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9416         (GETTEXTEX): Add structure definition.
9417
9418 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9419
9420         * include/windows.h (ole2.h): #include if !__OBJC__ and
9421         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9422
9423 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9424
9425         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9426
9427 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9428
9429         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9430         PACCESS_DENIED_ACE): Add typedefs.
9431
9432 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9433
9434         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9435
9436 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9437
9438         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9439
9440 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9441
9442         * include/windef.h: Fix typo in last change.
9443
9444 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9445
9446         * include/windef.h: Add no-op __try, __except, __finally
9447         defines from ...
9448         * include/excpt.h: Remove file.
9449         * include/windows.h: Don't include excpt.h.
9450
9451 2002-05-30  Christopher January  <chris@atomice.net>
9452
9453         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9454         Add missing typedefs.
9455
9456 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9457
9458         * include/w32api.h: Increment version to 1.5
9459         * Makefile.in: Ditto.
9460
9461
9462 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9463
9464         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9465         LP[W]STR with LPC[W]STR.
9466         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9467         Clean up whitespace.
9468
9469 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9470
9471         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9472
9473 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9474
9475         * Makefile.in: Increment VERSION to 1.4.
9476         (conf_prefix): New variable.
9477         (bindist): Modify target to use $(conf_prefix).
9478
9479 2002-05-20  Philip Aston  <philipa@mail.com>
9480
9481         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9482
9483 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9484
9485         * include/lmaccess.h: (NetAccess*, NetGroup*,
9486         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9487         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9488
9489 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9490
9491         * include/commctrl.h (ImageList_DragShowNolock): Remove
9492         conflicting redeclaration.
9493
9494 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9495
9496         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9497         STRICT and related defines to ...
9498         * include/windef.h: Here.
9499
9500 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9501
9502         * include/winsock2.h (int32): Remove typedef.
9503         (SERVICETYPE): Add typedef.
9504         (struct _flowspec):Revise struct definition,  Comment
9505         on types used for members.
9506
9507 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9508
9509         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9510         more defines added in earlier change.
9511         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9512
9513 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9514
9515         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9516         added in last change.
9517
9518 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9519
9520         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9521         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9522
9523 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9524
9525         * include/commctrl.h (SNDMSG): Define and use throughout
9526         in other macros instead of SendMessage.
9527         * include/commdlg.h (SNDMSG): Ditto.
9528
9529 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9530
9531         * include/GL/gl.h: New file.
9532         * include/GL/glext.h: Ditto.
9533         * include/GL/glu.h: Ditto.
9534
9535 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9536
9537         * include/w32api.h: Increment version.
9538         * Makefile.in: Ditto.
9539
9540 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9541
9542         * Makefile.in (bindist): Use * instead of . for file list for tar
9543         command.
9544
9545 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9546
9547         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9548
9549 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9550
9551         * include/objidl.h (IRunningObjectTable.Register): Correct
9552         prototype.
9553         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9554         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9555
9556 2002-03-31  Victor Porton  <porton@narod.ru>
9557
9558         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9559
9560 2002-03-29  David Robinow  <drobinow@yahoo.com>
9561
9562         * include/wingdi.h (SetPixelFormat): Correct prototype.
9563
9564 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9565
9566         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9567
9568 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9569
9570         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9571         Add defines.
9572
9573 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9574
9575         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9576         * include/shlobj.h (IContextMenu2): Put methods in right order.
9577         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9578         CINTERFACE before defining.
9579
9580 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9581
9582         * include/accctrl.h: Add #pragma GCC system_header
9583         if __GNUC__ >= 3.
9584         * include/aclapi.h: Same.
9585         * include/basetsd.h: Same.
9586         * include/basetyps.h: Same.
9587         * include/cderr.h: Same.
9588         * include/cguid.h: Same.
9589         * include/commctrl.h: Same.
9590         * include/commdlg.h: Same.
9591         * include/cpl.h: Same.
9592         * include/cplext.h: Same.
9593         * include/custcntl.h: Same.
9594         * include/dbt.h: Same.
9595         * include/dde.h: Same.
9596         * include/ddeml.h: Same.
9597         * include/dlgs.h: Same.
9598         * include/excpt.h: Same.
9599         * include/httpext.h: Same.
9600         * include/imagehlp.h: Same.
9601         * include/imm.h: Same.
9602         * include/initguid.h: Same.
9603         * include/intshcut.h: Same.
9604         * include/ipexport.h: Same.
9605         * include/iphlpapi.h: Same.
9606         * include/ipifcons.h: Same.
9607         * include/iprtrmib.h: Same.
9608         * include/iptypes.h: Same.
9609         * include/isguids.h: Same.
9610         * include/largeint.h: Same.
9611         * include/lm.h: Same.
9612         * include/lmaccess.h: Same.
9613         * include/lmalert.h: Same.
9614         * include/lmapibuf.h: Same.
9615         * include/lmat.h: Same.
9616         * include/lmaudit.h: Same.
9617         * include/lmbrowsr.h: Same.
9618         * include/lmchdev.h: Same.
9619         * include/lmconfig.h: Same.
9620         * include/lmcons.h: Same.
9621         * include/lmerr.h: Same.
9622         * include/lmerrlog.h: Same.
9623         * include/lmmsg.h: Same.
9624         * include/lmremutl.h: Same.
9625         * include/lmrepl.h: Same.
9626         * include/lmserver.h: Same.
9627         * include/lmshare.h: Same.
9628         * include/lmsname.h: Same.
9629         * include/lmstats.h: Same.
9630         * include/lmsvc.h: Same.
9631         * include/lmuse.h: Same.
9632         * include/lmuseflg.h: Same.
9633         * include/lmwksta.h: Same.
9634         * include/lzexpand.h: Same.
9635         * include/mapi.h: Same.
9636         * include/mciavi.h: Same.
9637         * include/mcx.h: Same.
9638         * include/mmsystem.h: Same.
9639         * include/mswsock.h: Same.
9640         * include/nb30.h: Same.
9641         * include/nddeapi.h: Same.
9642         * include/nspapi.h: Same.
9643         * include/ntdef.h: Same.
9644         * include/ntsecapi.h: Same.
9645         * include/ntsecpkg.h: Same.
9646         * include/oaidl.h: Same.
9647         * include/objbase.h: Same.
9648         * include/objfwd.h: Same.
9649         * include/objidl.h: Same.
9650         * include/odbcinst.h: Same.
9651         * include/ole.h: Same.
9652         * include/ole2.h: Same.
9653         * include/ole2ver.h: Same.
9654         * include/oleauto.h: Same.
9655         * include/olectl.h: Same.
9656         * include/olectlid.h: Same.
9657         * include/oledlg.h: Same.
9658         * include/oleidl.h: Same.
9659         * include/pbt.h: Same.
9660         * include/prsht.h: Same.
9661         * include/psapi.h: Same.
9662         * include/rapi.h: Same.
9663         * include/ras.h: Same.
9664         * include/raserror.h: Same.
9665         * include/rassapi.h: Same.
9666         * include/regstr.h: Same.
9667         * include/richedit.h: Same.
9668         * include/richole.h: Same.
9669         * include/rpc.h: Same.
9670         * include/rpcdce.h: Same.
9671         * include/rpcdce2.h: Same.
9672         * include/rpcdcep.h: Same.
9673         * include/rpcndr.h: Same.
9674         * include/rpcnsi.h: Same.
9675         * include/rpcnsip.h: Same.
9676         * include/rpcnterr.h: Same.
9677         * include/rpcproxy.h: Same.
9678         * include/schannel.h: Same.
9679         * include/schnlsp.h: Same.
9680         * include/scrnsave.h: Same.
9681         * include/security.h: Same.
9682         * include/setupapi.h: Same.
9683         * include/shellapi.h: Same.
9684         * include/shlguid.h: Same.
9685         * include/shlobj.h: Same.
9686         * include/sql.h: Same.
9687         * include/sqlext.h: Same.
9688         * include/sqltypes.h: Same.
9689         * include/sqlucode.h: Same.
9690         * include/sspi.h: Same.
9691         * include/subauth.h: Same.
9692         * include/tlhelp32.h: Same.
9693         * include/unknwn.h: Same.
9694         * include/userenv.h: Same.
9695         * include/w32api.h: Same.
9696         * include/winbase.h: Same.
9697         * include/wincon.h: Same.
9698         * include/wincrypt.h: Same.
9699         * include/windef.h: Same.
9700         * include/windows.h: Same.
9701         * include/windowsx.h: Same.
9702         * include/winerror.h: Same
9703         * include/wingdi.h: Same.
9704         * include/wininet.h: Same.
9705         * include/winioctl.h: Same.
9706         * include/winnetwk.h: Same.
9707         * include/winnls.h: Same.
9708         * include/winnt.h: Same.
9709         * include/winperf.h: Same.
9710         * include/winreg.h: Same.
9711         * include/winresrc.h: Same.
9712         * include/winsock.h: Same.
9713         * include/winsock2.h: Same.
9714         * include/winspool.h: Same.
9715         * include/winsvc.h: Same.
9716         * include/winuser.h: Same.
9717         * include/winver.h: Same.
9718         * include/ws2tcpip.h: Same.
9719         * include/wsnetbs.h: Same.
9720         * include/wtypes.h: Same.
9721         * include/zmouse.h: Same.
9722         * include/mapi.h: Change header guard name to _MAPI_H  for
9723         consistency.
9724
9725 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9726
9727         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9728         Remove unnecessary inclusion of <wtypes.h>.
9729         * ChangeLog: Fix omission of name in recent entries.
9730
9731 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9732
9733         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9734
9735 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9736
9737         * include/mswsock.h: Group winsock2 dependants
9738         together and protect with #ifdef _WINSOCK2_H.
9739         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9740         has been included.
9741
9742 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9743
9744         * include/mswsock.h (TP_*): Add new defines.
9745         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9746         (WSAMSG): Likewise.
9747         (WSACMSGHDR): Likewise.
9748         (DisconnectEx): Add new prototype.
9749         (WSARecvMsg): Likewise.
9750         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9751
9752 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9753
9754         * ChangeLog: Fix typo in last entry.
9755         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9756         * include/ws2tcpip.h: (IP_*): Add new defines.
9757         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9758         (NI_*): Add getnameinfo constants and bitmasks.
9759         (AI_*): Add getaddrinfo flags.
9760         (EAI_*): Add getaddrinfo error codes.
9761         (ip_mreq_source): Add new structure.
9762         (ip_msfilter): Add new structure.
9763         (IP_MSFILTER_SIZE): Add new macro.
9764         (in_pktinfo): Add new structure.
9765         Add preliminary IPv6 support.
9766         (in6_addr): Add new structure and some defines.
9767         (sockaddr_in6): Add new structure.
9768         (in6addr_any, in6addr_loopback): Declare extern structures.
9769         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9770         initialization macros for above.
9771         (IN6_ARE_ADDR_EQUAL): Define macro.
9772         (IN6_IS_ADDR_*): Define address testing macros.
9773         (socklen_t) Add new typedef.
9774         (ipv6_mreq): Add new structure.
9775         (in6_pktinfo): Same.
9776         (addrinfo): Same.
9777         (freeaddrinfo):Add new prototype.
9778         (getaddrinfo): Same.
9779         (gai_strerror[AW]): Same.
9780         (getnameinfo): Same.
9781         (sockaddr_in6_old): Add structure.
9782         (sockaddr_gen): Add union definition.
9783         (INTERFACE_INFO): Use sockaddr_gen as members.
9784         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9785         with INTERFACE_INFO on NT4 prior to sp4.
9786
9787 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9788
9789         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9790         when selecting winsock interface.
9791         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9792         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9793         Expand FIXME comment.
9794         (WSACOMPLETIONTYPE): Add enum.
9795         (WSACOMPLETION): Add structure and typedefs.
9796         (WSANSPIoctl): Add function prototpe and callback typedef.
9797         (SIO_NSP_NOTIFY_CHANGE): Add define.
9798         (sockaddr_storage): Add structure and typedefs.
9799
9800 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9801
9802         * include/winuser.h (OIC_*): Add resource constants.
9803
9804 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9805
9806         * include/ntsecpkg.h: New file.
9807         * include/schannel.h: New file.
9808         * include/schnlsp.h: New file.
9809         * include/security.h: New file.
9810         * include/sspi.h: New file.
9811         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9812         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9813         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9814         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9815         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9816         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9817         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9818         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9819         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9820         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9821         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9822         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9823         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9824         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9825         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9826         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9827         CERT_CHAIN_CONTEXT): Add missing structures.
9828         (CertCloseStore, CertGetCertificateChain,
9829         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9830         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9831         CertFindCertificateInStore, CertFreeCertificateContext,
9832         CertGetIssuerCertificateFromStore,
9833         CertFindChainInStore): Add missing functions.
9834         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9835         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9836         * lib/crypt32.def: New file.
9837         * lib/secur32.def: Add mising stubs.
9838         * lib/test.c: Include new headers.
9839
9840 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9841
9842         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9843         parameter.
9844
9845 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9846
9847         * lib/test.c: Include mapi.h.
9848         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9849         Thanks to: "Ron"  <ron@debian.org>
9850
9851 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9852
9853         * include/mapi.h: New file.
9854         * lib/mapi.def: Add missing function stubs.
9855
9856 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9857
9858         * include/winuser.h (GetWindowLongPtr[AW],
9859         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9860
9861 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9862
9863         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9864         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9865         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9866         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9867
9868 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9869
9870         * lib/test.c: Include wsnetbs.h.
9871
9872 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9873
9874         * include/wsnetbs.h: New file.
9875
9876 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9877
9878         * include/winnt.h: Remove merge conflict.
9879
9880 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9881
9882         * include/winnt.h (_TCHAR): Add typedefs.
9883
9884 2002-01-25  Tim Hughes  <tjh@delcam.com>
9885
9886         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9887         defines.
9888
9889 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9890
9891         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9892         Add defines.
9893         (LPACCESSTIMEOUT): Add typedef.
9894
9895 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9896
9897         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9898
9899 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9900
9901         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9902         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9903         backward compatability with old names. Update UNICODE mappings.
9904         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9905         for struct _HD_LAYOUT and add defines for backward
9906         compatability with old names.
9907         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9908         parallel chages to typedefs. Add defines for backward
9909         compatability with old names.
9910         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9911
9912 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9913
9914         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9915         hex for readability.
9916
9917 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9918
9919         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9920         and typedefs.
9921         (SPI_SETSCREENSAVERRUNNING): Add define.
9922         (LLKHF_ALTDOWN): Add define.
9923         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9924         PFD_DEPTH_DONTCARE): Add defines.
9925
9926 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9927
9928         * include/objbase.h (CoGetObject): Add prototype.
9929
9930 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9931
9932         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9933         ENUM_REGISTRY_SETTINGS): Add defines.
9934
9935 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9936
9937         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9938         (FILE_ATTRIBUTE_DEVICE): Add define.
9939
9940 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9941
9942         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9943
9944 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9945
9946         * ChangeLog: correct date in last entry.
9947
9948 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9949
9950         * include/winuser.h (MONITORENUMPROC): Add typedef.
9951         (EnumDisplayMonitors): Add prototype.
9952         * lib/user32.def (EnumDisplayMonitors): Add stub.
9953
9954 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9955
9956         * include/ntsecapi.h:  Fixed missing void parameter type in some
9957         prototypes.
9958         * include/objbase.h: Ditto.
9959         * include/rapi.h: Ditto.
9960         * include/rpc.h: Ditto.
9961         * include/rpcdce.h: Ditto.
9962         * include/rpcdcep.h: Ditto.
9963         * include/rpcndr.h: Ditto.
9964         * include/rpcnsip.h: Ditto.
9965         * include/rpcproxy.h: Ditto.
9966         * include/windef.h: Ditto.
9967
9968 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9969
9970         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9971
9972 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9973
9974         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9975          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9976         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9977         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9978         WS_EX_NOINHERITLAYOUT): Add defines.
9979         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9980         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9981         MEM_WRITE_WATCH): Add defines.
9982
9983
9984 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9985
9986         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9987         Add prototype.
9988         (SetCriticalSectionSpinCount): Likewise.
9989
9990 2001-12-30  Guido Serassio  <serassio@libero.it>
9991
9992         * include/winsvc.h: Add EnumServiceStatusEx(),
9993         QueryServiceStatusEx()
9994         & RegisterServiceCtrlHandlerEx()
9995
9996 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9997
9998         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9999
10000 2001-12-20  Christopher Faylor  <cgf@redhat.com>
10001
10002         * lib/Makefile.in: Revert inst_installdir definitions to working
10003         versions.
10004
10005 2001-12-17  Guido Serassio  <serassio@libero.it>
10006
10007         * include/winsvc.h: Add ChangeServiceConfig2() &
10008         QueryServiceConfig2() definition
10009
10010 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
10011
10012         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
10013         on MSDN documentation for XP.
10014
10015 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
10016
10017         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
10018         mappings.
10019
10020 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
10021
10022         * include/commctrl.h (ACS_*): Add new defines.
10023         (PGS_*): Ditto.
10024         (CBES_*): Ditto.
10025         (TBSTYLE_*): Ditto.
10026         (TB_*): Ditto.
10027         (TTS_*): Ditto.
10028         (UDS_HOTTRACK): Add define.
10029         (SBT_TOOLTIPS): Ditto.
10030         (TBS_*): Add new defines.
10031         (HDS_*): Ditto.
10032         (LVS_EX_*) Ditto.
10033         (LVKF_*): Ditto.
10034         (TCM_GETEXTENDEDSTYLE): Add define.
10035         (TVS_NOHSCROLL): Ditto.
10036         (TVIF_INTEGRAL): Ditto.
10037         (DTS_SHORTDATECENTURYFORMAT): Ditto.
10038         (TCS_*): Add new defines.
10039         (CBEM_*): Add defines.
10040         (tagNMITEMACTIVATE): Add structure definition and typedefs.
10041         (tagTVITEMEX[AW]: Ditto.
10042         (tagTVINSERTSTRUCT[AW]: Add union member.
10043         * include/winbase.h (VirtualAllocEx): Add prototype.
10044         * include/winuser.h (SS_*): Add new defines.
10045
10046 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10047
10048         * Makefile.in: Increment VERSION.
10049         * include/w32api.h: Ditto.
10050
10051 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10052
10053         * Makefile.in: Increment VERSION.
10054         * include/w32api.h: Ditto.
10055
10056 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
10057
10058         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
10059         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
10060         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
10061         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
10062         SetupDiOpenDevRegKey): Correct function names.
10063
10064 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
10065
10066         * include/winuser.h (IDC_STATIC): Don't define.
10067
10068 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
10069
10070         Cleanup merge between SourceForge and winsup CVS.
10071         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
10072         definitions.
10073         * include/winnt.h (VER_NT*): Remove duplicate defines.
10074         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
10075
10076 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
10077
10078         * include/accctrl.h: Change \r\n to \n.
10079
10080 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
10081
10082         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
10083         Add structure definition.
10084         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
10085         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
10086         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
10087         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
10088         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
10089         UnenableRouter) Declare functions.
10090         * lib/iphlpapi.def: Add function names to import lib.
10091
10092 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
10093
10094         * include/winnt.h (PACCESS_MASK): Add typedef.
10095         * include/aclapi.h: New file.
10096         * include/acctrl.h: New file.
10097         * lib/advapi32.def: Add missing symbols.
10098         * lib/test.c: Add #include <aclapi.h>.
10099
10100 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
10101
10102         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
10103         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
10104         here ...
10105         * include/winnt.h: ... to here.
10106         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
10107         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
10108         and typedefs.
10109         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
10110         Add defines.
10111
10112 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10113
10114         * w32api/include/winnt.h: prepare SSE register support.
10115         (CONTEXT_EXTENDED_REGISTERS): Add new define.
10116         (MAXIMUM_SUPPORTED_EXTENSION): New define.
10117         (struct CONTEXT): ExtendedRegisters field added.
10118
10119 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
10120
10121         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
10122         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
10123         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
10124         tagLASTINPUTINFO ): Define new structures.
10125         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
10126         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
10127         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
10128         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
10129         SetMenuInfo): Add new prototypes.
10130         * lib/user32.def: Add import stubs for above functions.
10131
10132         * include/winuser.h (IDC_STATIC): Protect against prior
10133         definition.
10134
10135 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
10136
10137         * include/winbase.h (OSVERSIONINFOEX): Add definition.
10138         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
10139
10140 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
10141
10142         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
10143         warnings with _AUTHORITY #defines.
10144
10145 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10146
10147         * include/winnt.h (GetCurrentFiber): Create a prototype before the
10148         implementation.
10149         (GetFiberData): Ditto.
10150
10151 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10152
10153         * include/winnt.h: Backout last change.
10154
10155 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
10156
10157         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
10158         GetCurrentFiber: Create a prototype before the implementation.
10159         GetFiberData: Ditto.
10160
10161 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
10162
10163         * include/winuser.h (IDC_STATIC): Add define.
10164         Thanks to: Benoit Laniel.
10165
10166 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
10167
10168         * include/commdlg.h: Include <unknwn.h> rather than local
10169         definition of LPUKNOWN.
10170         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
10171         Emit warning.
10172
10173 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
10174
10175         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
10176         for Watcom.
10177         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
10178         functions of the form 'type * function(...)' in a way compatible
10179         with both Watcom and GCC.
10180         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
10181         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
10182         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
10183         * include/windows.h: Watcom can use anonymous structs/unions.
10184         * include/winnt.h: Watcom can use 64 bit ints.
10185         (GetCurrentFiber): Add another inline definition using
10186         Watcom inline assembly syntax.
10187         (GetFiberData): Likewise.
10188         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
10189         (gethostbyname): Likewise.
10190         (gethostbyaddr}: Likewise.
10191         (getservbyport}: Likewise.
10192         (getservbyname}: Likewise.
10193         (getprotobynumber}: Likewise.
10194         (getprotobyname}: Likewise.
10195         * include/winsock2.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         * lib/diinut.c: Correction for Watcom.
10203         * lib/kernel32.c (GetCurrentFiber): Add another definition
10204         using Watcom inline assembly syntax.
10205         (GetFiberData): Likewise.
10206         * lib/scrnsave.c (WinMain): Add break after default:
10207         clause.
10208
10209 2001-11-04  "stefan"  <stefan@lkcc.org>
10210
10211         * include/winnt.h (GetCurrentFiber): Add prototype.
10212         (GetFiberData): Likewise.
10213
10214 2001-11-04  Christopher Faylor  <cgf@redhat.com>
10215
10216         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
10217         parallel invocations.
10218
10219 2001-11-03  Christopher Faylor  <cgf@redhat.com>
10220
10221         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
10222
10223 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10224
10225         * include/basetyps.h (DECLARE_INTERFACE): Don't add
10226         __attribute__((com_interface)) for __GNUC__ >= 3.
10227
10228 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10229
10230         * include/commdlg.h (PRINTPAGERANGE): Add structure
10231         definition.
10232         (PRINTDLGEX[AW]): Likewise.
10233         (PrintDlgEx[AW]): Add function declaration.
10234         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10235         * ChangeLog: Fix typo in last entry.
10236
10237 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10238
10239         * include/objbase.h (CoGetClassObject): Change third parameter
10240         to COSERVERINFO*.
10241
10242 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10243
10244         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10245         Thanks to: Kim Saunders.
10246         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10247         Thanks to: Pat Thoyts.
10248         * include/winnt.h: Change C++ style comment to C style.
10249         * include/shlobj.h: Ditto.
10250         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10251         list.
10252         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10253         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10254         (enum not limited to range of int).
10255         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10256         (struct with no named members), ifndef NONAMELESSUNION.
10257
10258 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10259
10260         * include/winuser.h (CREATESTRUCT): UNICODE it.
10261         (CBT_CREATEWND): Likewise.
10262
10263 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10264
10265         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10266         (WNetGetResourceInformationW): Ditto.
10267         (WNetGetResourceInformation): Add define.
10268
10269 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10270
10271         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10272         before extracting words.
10273
10274 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10275
10276         * include/winnt.h: Add PF_* defines.
10277         Thanks to: "Wizord"  <wizord@argoslabs.com>
10278
10279 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10280
10281         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10282         field as _ANONYMOUS_STRUCT.
10283         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10284         for UNICODE.
10285         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10286         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10287         test.
10288
10289 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10290
10291         * include/commctrl.h: Add some ListView constants.
10292
10293 2001-09-17  Earnie Boyd  <earnie@sf.net>
10294
10295         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10296         portion of the directory from the install.
10297         (inst_libdir): Ditto.
10298         * Makefile.in (VERSION): Increment.
10299         * include/w32api.h: Increment version.
10300
10301 2001-09-13  Earnie Boyd  <earnie@SF.net>
10302
10303         * lib/Makefile.in (inst_includedir): Change to always use w32api
10304         subdirectory for target == cygwin.
10305         (inst_libdir): Ditto.
10306
10307 2001-09-13  Earnie Boyd  <earnie@SF.net>
10308
10309         * lib/Makefile.in (config_prefix): New variable.
10310         (inst_includedir): Manipulate special value only if target == cygwin
10311         and build == target and prefix != config_prefix.
10312         (inst_libdir): Ditto.
10313
10314 2001-09-12  Earnie Boyd  <earnie@SF.net>
10315
10316         * Makefile.in (TARFLAGS): New variable.
10317         (TARFILEEXT): Ditto.
10318
10319 2001-09-12  Earnie Boyd  <earnie@SF.net>
10320
10321         * Makefile.in: Increment version.
10322         * include/w32api.h: Ditto.
10323         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10324
10325 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10326
10327         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10328         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10329         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10330
10331 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10332
10333         * include/wininet.h (InternetAutodial): Add prototype.
10334         (InternetAutodialHangup): Ditto.
10335         (InternetDial): Ditto.
10336         (InternetGetConnectedState): Ditto.
10337         (InternetGoOnline): Ditto.
10338         (InternetHangUp): Ditto.
10339         (InternetSetDialState): Ditto.
10340         Add associated INTERNET_* auto dial flags.
10341         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10342
10343 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10344
10345         * lib/Makefile.in: Move the setting of variable libdir to after the
10346         setting of exec_prefix since the value of libdir is dependant on it.
10347
10348 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10349
10350         * include/winbase.h: Add missing closing parentheses to
10351         InterlockedExchangePointer declaration.
10352
10353 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10354
10355         * include/shlobj.h (CFSTR_* ): Add new defines.
10356         Thanks to: "Ron" <ron@debian.org> .
10357         Unicode them.
10358
10359 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10360
10361         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10362         anonymous structs are available rather than just testing preprocessor
10363         variable directly.
10364
10365 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10366
10367         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10368         with new `LARGE_INTEGER' definition.
10369
10370 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10371
10372         * include/winsock2.h: Remove "extra token" after #endif.
10373
10374 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10375
10376         * config.guess: Remove the \r from the end of line.
10377         * config.sub: Ditto.
10378
10379 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10380
10381         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10382         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10383
10384 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10385
10386         * config.guess: Add the MSYS system.
10387         * config.sub: Ditto.
10388         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10389         * incldue/winsock2.h: Ditto.
10390
10391 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10392
10393         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10394         non-anonymous (Xxx.u.LowPart) access to HighPart and
10395         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10396
10397 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10398
10399         * include/wingdi.h (HANGUL_CHARSET): Add define.
10400
10401 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10402
10403         * include/setupapi.h: Formatting.
10404
10405 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10406
10407         * include/shlobj.h: Remove \r from the line endings.
10408
10409 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10410
10411         * include/setupapi.h : New file.
10412         * lib/setupapi.def:New file.
10413         * lib/test.c: Include setupapi.h.
10414
10415 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10416         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10417
10418 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10419
10420         * include/richedit.h (ENLINK): Add structure definition.
10421         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10422
10423 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10424
10425         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10426         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10427         (GCS_*): Make UNICODE.
10428         (CSIDL_*): Add more defines.
10429         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10430         (_DISK_GEOMETRY): Ditto.
10431         (_DISK_PERFORMANCE): Ditto.
10432         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10433
10434 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10435
10436         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10437         of block protected by #ifndef VOID.
10438         (This reverts 1998-12-01 Anders Norlander change.)
10439         * include/odbcinst.h: End file with newline.
10440         * include/raserror.h: Ditto.
10441
10442 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10443
10444         * include/winsock2.h (#include <wtypes.h): Don't.
10445         (_BLOB): Define instead, if not already done.
10446         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10447         * include/wtypes.h (_BLOB): Guard against prior definition.
10448
10449 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10450
10451         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10452         as __extension__.
10453         (tagTYPEDESC): Ditto.
10454         (_wireBRECORD): Add structure definition.
10455         (_wireSAFEARR_BRECORD): Ditto.
10456         (_wireSAFEARR_HAVEIID): Ditto.
10457         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10458         SAFEARR_HAVEIID HaveIidStr.
10459         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10460         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10461         pparray to wirePSAFEARRAY*.
10462         (_wireVARIANT): Add field wireBRECORD brecVal.
10463         (wireVARIANT): Change typedef to struct _wireVariant*.
10464         (IRecordInfo): Add interface definition.
10465         (LPRECORDINFO): Add typedef for IRecordInfo*.
10466         (IID_IRecordInfo): Add forward decalaration.
10467
10468 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10469
10470         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10471         * include/nddeapi.h: Likewise.
10472
10473 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10474
10475         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10476         Add more includes of w32api headers.
10477
10478 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10479
10480         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10481         Swap asm code with that of GetFiberData.
10482         (GetFiberData): Ditto.
10483         * lib/kernel32.c: New file, containing library versions of
10484         GetCurrentFiber and GetFiberData.
10485         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10486
10487 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10488
10489         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10490         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10491
10492 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10493
10494         * lib/oleaut32.def: Regenerate.
10495
10496 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10497
10498         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10499
10500 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10501
10502         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10503         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10504         * include/oaidl.h: ... to here.
10505         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10506         (IErrorInfo::GetGUID): Change arg to GUID.
10507         (LPSUPPORTERRORINFO): Add typedef.
10508         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10509
10510 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10511
10512         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10513         defines.
10514
10515 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10516
10517         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10518
10519 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10520
10521         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10522         Thanks to: Jason Craig  <jacraig@softhome.net>
10523
10524 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10525
10526         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10527         and UNICODE mappings, if _WIN32_IE >= 0x400.
10528         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10529         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10530         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10531         (tagNMLVCUSTOMDRAW): Likewise.
10532         (tagNMTVCUSTOMDRAW): Likewise.
10533         (tagNMLVCACHEHINT): Likewise.
10534
10535 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10536
10537         * include/basetsd.h (#include <_mingw.h>): Remove.
10538         (__int64): Define.
10539
10540 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10541
10542         * include/wingdi.h (AC_SRC_OVER): Add define.
10543         (struct _BLENDFUNCTION): Add.
10544
10545 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10546
10547         * include/shlobj.h:  Add BIF_* defines.
10548
10549 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10550
10551         * include/winerror.h (E_PENDING): Add error code define.
10552
10553 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10554
10555         * include/basetsd.h (#include <_mingw.h>): Add directive.
10556
10557 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10558
10559         * include/winbase.h (InterlockedCompareExchange): Change args
10560         and return value from PVOID to LONG.
10561         (InterlockedExchange): Change first arg to LPLONG.
10562         (InterlockedCompareExchangePointer): New macro.
10563         (InterlockedExchangePointer): New macro.
10564
10565 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10566
10567         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10568         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10569
10570 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10571
10572         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10573         (IMalloc::Free()): Ditto.
10574
10575 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10576
10577         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10578         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10579         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10580
10581 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10582
10583         * include/shlobj.h (struct _browseinfo): UNICODE it.
10584         (SHBrowseForFolder): Ditto.
10585         (SHGetPathFromIDList): Ditto.
10586
10587 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10588
10589         * include/basetsd.h: RC_INVOKED protection and realignment.
10590         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10591
10592 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10593
10594         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10595         line.
10596
10597 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10598
10599         * lib/mapi32.def: Add MAPISendMail.
10600
10601 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10602
10603         * include/w32api.h: Update version.
10604         * Makefile.in: Ditto.
10605
10606 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10607
10608         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10609         compiler warnings.
10610
10611 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10612
10613         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10614         previous definition in include/ntsecapi.h.
10615         * include/ntsecapi.h: Vice versa.
10616
10617 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10618
10619         * include/winnt.h: Add defines for group attributes.
10620         Add define for SYSTEM_LUID.
10621         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10622         `PTOKEN_PRIMARY_GROUP'.
10623
10624 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10625
10626         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10627         for cygwin.
10628
10629 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10630
10631         * include/winsock2.h: Protect one *more* newlib defines when compiling
10632         cygwin.
10633
10634 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10635
10636         * include/winsock2.h: Protect some more newlib defines when compiling
10637         cygwin.
10638
10639 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10640
10641         * include/winsock.h: Protect some more newlib defines when compiling
10642         cygwin.
10643
10644 2001-04-17  Egor Duda  <deo@logos-m.ru>
10645
10646         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10647         as __extenstion__ when appropriate.
10648         * include/mmsystem.h: Mark anonymous structs and unions as
10649         __extension__ to prevent compiler warning when invoked with
10650         -pedantic
10651         * include/oaidl.h: Ditto.
10652         * include/objidl.h: Ditto.
10653         * include/olectl.h: Ditto.
10654         * include/prsht.h: Ditto.
10655         * include/shlobj.h: Ditto.
10656         * include/winbase.h: Ditto.
10657         * include/winnt.h: Ditto.
10658         * include/wtypes.h: Ditto.
10659
10660 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10661
10662         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10663         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10664
10665 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10666
10667         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10668
10669 2001-04-11  John Fortin  <fortinj@attglobal.net>
10670
10671         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10672         (*LPBOOL): Ditto.
10673
10674 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10675
10676         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10677         code will be included in every module which includes this header.
10678         (GetFiberData): Ditto.
10679
10680 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10681
10682         * include/winnt.h (GetCurrentFiber): Fix typo.
10683
10684 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10685
10686         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10687         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10688         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10689         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10690         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10691
10692         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10693         (GetCurrentFiber): Ditto.
10694         Thanks to: Andy Younger  <AndyY@redlemon.com>
10695
10696         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10697         DirectX 8 from complaining.
10698         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10699
10700 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10701
10702         * include/commctrl.h Updated TreeView and ListView defines and macros.
10703
10704 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10705
10706         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10707         and above.
10708
10709 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10710         * include/winuser.h (VK_KANA): New definition.
10711         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10712
10713 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10714
10715         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10716         (RT_FONT): Ditto.
10717         * include/basetsd.h (INT32): Ditto.
10718         * include/windef.h (ATOM): Ditto.
10719         (BOOL): Ditto.
10720         (BYTE): Ditto.
10721         * include/winbase.h (FreeResource): Ditto.
10722         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10723
10724 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10725
10726         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10727         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10728         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10729         macro now defined in newlib sys/types.h.  Emit warning if defined.
10730         * include/winsock2.h: Ditto.
10731         * include/windows.h (Win32_Winsock): Replace with new macros
10732         __USE_W32_SOCKETS and warn of deprecation.
10733
10734 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10735
10736         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10737         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10738
10739 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10740
10741         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10742         (TB_GETBUTTONSIZE): Ditto.
10743         (TCS_HOTTRACK): Ditto.
10744         Thanks to: Chris Hansen <popeofpop@softhome.net>
10745
10746 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10747
10748         * Makefile.in: (snapshot): Add target.
10749         * lib/Makefile.in: (install-headers): Use installdir variable.
10750         (installdir): Set value based on target-alias.
10751
10752 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10753
10754         * include/w32api.h: (_W32API_VERSION): Remove.
10755         (__W32API_VERSION): Add.
10756         (__W32API_MAJOR_VERSION): Ditto.
10757         (__W32API_MINOR_VERSION): Ditto.
10758
10759 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10760
10761         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10762         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10763         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10764         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10765
10766 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10767
10768         * include/mswsock.h: New file.
10769         * include/ws2tcpip.h: New file.
10770         * include/winsock.h (IPPROTO_IGMP): New define.
10771         (IPPROTO_GGP): Correct value.
10772         (SO_* macros): Remove mswsock defines.
10773         (TCP_BSDURGENT): Likewise.
10774         (IP_* macros): Add comment warning of WinSock2 incompatibility
10775         (WSARecvEx): Remove mswsock prototype.
10776         (TransmitFile): Likewise.
10777         (AcceptEx): Likewise.
10778         (GetAcceptExSockaddrs): Likewise.
10779         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10780         (#include <mswsock.h>): Add directive and explanatory comment
10781         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10782         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10783         (#include <winsock.h>): Replace directive with winsock.h file content
10784         The following changes apply to the merged file:
10785         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10786         (SOMAXCONN): Likewise
10787         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10788         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10789         in ws2tcpip.h)
10790         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10791         (FD_*_BIT and FD_* defines): Place together and extend to
10792         FD_MAX_EVENTS 10
10793         (AF* defines): Extend to AF_MAX 10
10794         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10795         (WSAUnhookBlockingHook): Likewise.
10796         (WSASetBlockingHook): Likewise.
10797         (WSACancelBlockingCall): Likewise.
10798         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10799         (#include <mswsock.h>): Delete directive inherited from winsock.h
10800         (WSA_QOS* defines): Add QualityOfService error codes.
10801         (SIO_* defines): Add new macros
10802         * include/ipexport.h (IP_STATUS flags): Add definitions.
10803         (IP_FLAG_DF): Likewise.
10804         (IP_OPT_* ): Likewise.
10805         (struct ip_option_information): Likewise.
10806         (struct icmp_echo_reply): Likewise.
10807
10808 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10809
10810         * include/commctrl.h: Revert TEXT change.
10811         * include/lmalert.h: Ditto.
10812         * include/lmcons.h: Ditto.
10813         * include/lmsname.h: Ditto.
10814         * include/lmsvc.h: Ditto.
10815         * include/ntsecapi.h: Ditto.
10816         * include/oledlg.h: Ditto.
10817         * include/ras.h: Ditto.
10818         * include/regstr.h: Ditto.
10819         * include/richedit.h: Ditto.
10820         * include/wininet.h: Ditto.
10821         * include/winnt.h: Ditto.
10822
10823 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10824
10825         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10826         * include/lmalert.h: Ditto.
10827         * include/lmcons.h: Ditto.
10828         * include/lmsname.h: Ditto.
10829         * include/lmsvc.h: Ditto.
10830         * include/ntsecapi.h: Ditto.
10831         * include/oledlg.h: Ditto.
10832         * include/ras.h: Ditto.
10833         * include/regstr.h: Ditto.
10834         * include/richedit.h: Ditto.
10835         * include/wininet.h: Ditto.
10836         * include/w32api.h: New File.
10837
10838 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10839
10840         * include/shlobj.h: Add missing SLR_* flags.
10841
10842 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10843
10844         * lib/Makefile.in: (host_alias): Add variable.
10845         (host_build): Ditto:
10846         (xinstall): Removed
10847         (xinstall-libraries): Ditto.
10848         (xinstall-headers): Ditto.
10849         (xuninstall): Ditto.
10850         (xuninstall-libraries): Ditto.
10851         (xuninstall-headers): Ditto.
10852         * Makefile.in: (host_alias): Add variable.
10853         (build_alias): Ditto.
10854
10855 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10856
10857         * include/winnt.h: (__TEXT): Add private macro.
10858         (_TEXT): Modify definition to use __TEXT.
10859         (_T): Ditto.
10860         This change allows the passing of a MACRO as an argument and have that
10861         MACRO resolved first.
10862         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10863
10864 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10865
10866         * Makefile.in: Increment VERSION to 0.5
10867         * include/winnt.h: Change TEXT to _TEXT throughout.
10868         (SID_RELEASE): Define.
10869         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10870
10871 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10872
10873         * Apply Phil Krylov patches.
10874         2001-01-19  Phil Krylov  <phil@mail.ru>
10875         * include/commctrl.h: (HDI_IMAGE) New definition.
10876         (HDI_DI_SETITEM) Ditto.
10877         (HDI_ORDER) Ditto.
10878         (HDI_FILTER) Ditto.
10879         (HDF_BITMAP_ON_RIGHT) Ditto.
10880         (HDF_IMAGE) Ditto.
10881         (HDM_SETORDERARRAY) Ditto.
10882         (Header_SetOrderArray) Ditto.
10883         (ICC_BAR_CLASSES) Ditto.
10884         (struct _HD_ITEMA) Change definition.
10885         (struct _HD_ITEMW) Ditto.
10886         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10887         (InitCommonControlsEx()) Ditto.
10888         2001-01-23  Phil Krylov  <phil@mail.ru>
10889         * include/richedit.h: Many Richedit 2.0 definitions.
10890
10891 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10892
10893         * include/winuser.h: (IDC_HAND)  New resource identifier.
10894         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10895
10896 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10897
10898         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10899         Fix typo's.
10900
10901 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10902
10903         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10904         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10905         Thanks To: <bge@users.sourceforge.net>
10906
10907 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10908
10909         * Apply Danny Smith patch 102386
10910         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10911         * lib/rasapi32.def: add symbols available in NT4 and W2k
10912
10913 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10914
10915         * Apply Danny Smith patch 102382
10916         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10917         * lib/mswsock.def: remove leading underscores from symbol names
10918
10919 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10920
10921         * Apply Danny Smith patch 102446
10922         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10923         * include/sql.h (ODBCVER): change default to 0x0351.
10924         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10925         (SQLColAttributes): likewise.
10926         (SQLBindParam): add prototype for ODBC 3.x function.
10927         (SQLCloseCursor): likewise.
10928         (SQLColAttribute): likewise.
10929         (SQLCopyDesc):likewise.
10930         (SQLEndTran): likewise.
10931         (SQLFetchScroll): likewise.
10932         (SQLGetConnectAttr): likewise.
10933         (SQLGetDescField): likewise.
10934         (SQLGetDescRec): likewise.
10935         (SQLGetDiagField): likewise.
10936         (SQLGetDiagRec): likewise.
10937         (SQLGetEnvAttr): likewise.
10938         (SQLGetStmtAttr): likewise.
10939         (SQLSetConnectAttr): likewise.
10940         (SQLSetDescField):likewise.
10941         (SQLSetDescRec): likewise.
10942         (SQLSetEnvAttr): likewise.
10943         (SQLSetStmtAttr): likewise.
10944         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10945         _WIN64 compatability;
10946         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10947         (SQL_ACTIVE_CONNECTIONS): likewise.
10948         (SQL_ACTIVE_STATEMENTS): likewise.
10949         (SQL_ALL_EXCEPT_LIKE): likewise.
10950         (SQL_API_ALL_FUNCTIONS): likewise.
10951         (SQL_API_LOADBYORDINAL): likewise.
10952         (SQL_API_SQLBINDPARAMETER): likewise.
10953         (SQL_API_SQLBROWSECONNECT): likewise.
10954         (SQL_API_SQLCOLATTRIBUTES): likewise.
10955         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10956         (SQL_API_SQLDESCRIBEPARAM): likewise.
10957         (SQL_API_SQLDRIVERCONNECT): likewise.
10958         (SQL_API_SQLDRIVERS): likewise.
10959         (SQL_API_SQLEXTENDEDFETCH): likewise.
10960         (SQL_API_SQLFOREIGNKEYS): likewise.
10961         (SQL_API_SQLMORERESULTS): likewise.
10962         (SQL_API_SQLNATIVESQL): likewise.
10963         (SQL_API_SQLNUMPARAMS): likewise.
10964         (SQL_API_SQLPARAMOPTIONS): likewise.
10965         (SQL_API_SQLPRIMARYKEYS): likewise.
10966         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10967         (SQL_API_SQLPROCEDURES): likewise.
10968         (SQL_API_SQLSETPOS): likewise.
10969         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10970         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10971         (SQL_ASYNC_ENABLE): likewise.
10972         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10973         (SQL_ASYNC_ENABLE_OFF): likewise.
10974         (SQL_ASYNC_ENABLE_ON): likewise.
10975         (SQL_ATTR_READONLY): likewise.
10976         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10977         (SQL_ATTR_WRITE): likewise.
10978         (SQL_AUTOCOMMIT): likewise.
10979         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10980         (SQL_AUTOCOMMIT_OFF): likewise.
10981         (SQL_AUTOCOMMIT_ON): likewise.
10982         (SQL_BEST_ROWID): likewise.
10983         (SQL_BIGINT): likewise.
10984         (SQL_BINARY): likewise.
10985         (SQL_BIND_BY_COLUMN): likewise.
10986         (SQL_BIND_TYPE): likewise.
10987         (SQL_BIND_TYPE_DEFAULT): likewise.
10988         (SQL_BIT): likewise.
10989         (SQL_BOOKMARK_PERSISTENCE): likewise.
10990         (SQL_BP_CLOSE): likewise.
10991         (SQL_BP_DELETE): likewise.
10992         (SQL_BP_DROP): likewise.
10993         (SQL_BP_OTHER_HSTMT): likewise.
10994         (SQL_BP_SCROLL): likewise.
10995         (SQL_BP_TRANSACTION): likewise.
10996         (SQL_BP_UPDATE): likewise.
10997         (SQL_C_BINARY): likewise.
10998         (SQL_C_BIT): likewise.
10999         (SQL_C_BOOKMARK): likewise.
11000         (SQL_C_CHAR): likewise.
11001         (SQL_C_DATE): likewise.
11002         (SQL_C_DEFAULT): likewise.
11003         (SQL_C_DOUBLE): likewise.
11004         (SQL_C_FLOAT): likewise.
11005         (SQL_C_LONG): likewise.
11006         (SQL_C_SHORT): likewise.
11007         (SQL_C_SLONG): likewise.
11008         (SQL_C_SSHORT): likewise.
11009         (SQL_C_STINYINT): likewise.
11010         (SQL_C_TIME): likewise.
11011         (SQL_C_TIMESTAMP): likewise.
11012         (SQL_C_TINYINT): likewise.
11013         (SQL_C_ULONG): likewise.
11014         (SQL_C_USHORT): likewise.
11015         (SQL_C_UTINYINT): likewise.
11016         (SQL_CB_NON_NULL): likewise.
11017         (SQL_CB_NULL): likewise.
11018         (SQL_CC_CLOSE): likewise.
11019         (SQL_CC_DELETE): likewise.
11020         (SQL_CC_PRESERVE): likewise.
11021         (SQL_CN_ANY): likewise.
11022         (SQL_CN_DIFFERENT): likewise.
11023         (SQL_CN_NONE): likewise.
11024         (SQL_COLATT_OPT_MAX): likewise.
11025         (SQL_COLATT_OPT_MIN): likewise.
11026         (SQL_COLUMN_ALIAS): likewise.
11027         (SQL_COLUMN_AUTO_INCREMENT): likewise.
11028         (SQL_COLUMN_CASE_SENSITIVE): likewise.
11029         (SQL_COLUMN_COUNT): likewise.
11030         (SQL_COLUMN_DISPLAY_SIZE): likewise.
11031         (SQL_COLUMN_DRIVER_START): likewise.
11032         (SQL_COLUMN_LABEL): likewise.
11033         (SQL_COLUMN_LENGTH): likewise.
11034         (SQL_COLUMN_MONEY): likewise.
11035         (SQL_COLUMN_NAME): likewise.
11036         (SQL_COLUMN_NULLABLE): likewise.
11037         (SQL_COLUMN_OWNER_NAME): likewise.
11038         (SQL_COLUMN_PRECISION): likewise.
11039         (SQL_COLUMN_QUALIFIER_NAME): likewise.
11040         (SQL_COLUMN_SCALE): likewise.
11041         (SQL_COLUMN_SEARCHABLE): likewise.
11042         (SQL_COLUMN_TABLE_NAME): likewise.
11043         (SQL_COLUMN_TYPE): likewise.
11044         (SQL_COLUMN_TYPE_NAME): likewise.
11045         (SQL_COLUMN_UNSIGNED): likewise.
11046         (SQL_COLUMN_UPDATABLE): likewise.
11047         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
11048         (SQL_CONCUR_DEFAULT): likewise.
11049         (SQL_CONCUR_LOCK): likewise.
11050         (SQL_CONCUR_READ_ONLY): likewise.
11051         (SQL_CONCUR_ROWVER): likewise.
11052         (SQL_CONCUR_TIMESTAMP): likewise.
11053         (SQL_CONCUR_VALUES): likewise.
11054         (SQL_CONCURRENCY): likewise.
11055         (SQL_CONN_OPT_MAX): likewise.
11056         (SQL_CONN_OPT_MIN): likewise.
11057         (SQL_CONNECT_OPT_DRVR_START): likewise.
11058         (SQL_CONVERT_BIGINT): likewise.
11059         (SQL_CONVERT_BINARY): likewise.
11060         (SQL_CONVERT_BIT): likewise.
11061         (SQL_CONVERT_CHAR): likewise.
11062         (SQL_CONVERT_DATE): likewise.
11063         (SQL_CONVERT_DECIMAL): likewise.
11064         (SQL_CONVERT_DOUBLE): likewise.
11065         (SQL_CONVERT_FLOAT): likewise.
11066         (SQL_CONVERT_FUNCTIONS): likewise.
11067         (SQL_CONVERT_INTEGER): likewise.
11068         (SQL_CONVERT_LONGVARBINARY): likewise.
11069         (SQL_CONVERT_LONGVARCHAR): likewise.
11070         (SQL_CONVERT_NUMERIC): likewise.
11071         (SQL_CONVERT_REAL): likewise.
11072         (SQL_CONVERT_SMALLINT): likewise.
11073         (SQL_CONVERT_TIME): likewise.
11074         (SQL_CONVERT_TIMESTAMP): likewise.
11075         (SQL_CONVERT_TINYINT): likewise.
11076         (SQL_CONVERT_VARBINARY): likewise.
11077         (SQL_CONVERT_VARCHAR): likewise.
11078         (SQL_CORRELATION_NAME): likewise.
11079         (SQL_CR_CLOSE): likewise.
11080         (SQL_CR_DELETE): likewise.
11081         (SQL_CR_PRESERVE): likewise.
11082         (SQL_CUR_DEFAULT): likewise.
11083         (SQL_CUR_USE_DRIVER): likewise.
11084         (SQL_CUR_USE_IF_NEEDED): likewise.
11085         (SQL_CUR_USE_ODBC): likewise.
11086         (SQL_CURRENT_QUALIFIER): likewise.
11087         (SQL_CURSOR_DYNAMIC): likewise.
11088         (SQL_CURSOR_FORWARD_ONLY): likewise.
11089         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
11090         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
11091         (SQL_CURSOR_STATIC): likewise.
11092         (SQL_CURSOR_TYPE): likewise.
11093         (SQL_CURSOR_TYPE_DEFAULT): likewise.
11094         (SQL_CVT_BIGINT): likewise.
11095         (SQL_CVT_BINARY): likewise.
11096         (SQL_CVT_BIT): likewise.
11097         (SQL_CVT_CHAR): likewise.
11098         (SQL_CVT_DATE): likewise.
11099         (SQL_CVT_DECIMAL): likewise.
11100         (SQL_CVT_DOUBLE): likewise.
11101         (SQL_CVT_FLOAT): likewise.
11102         (SQL_CVT_INTEGER): likewise.
11103         (SQL_CVT_LONGVARBINARY): likewise.
11104         (SQL_CVT_LONGVARCHAR): likewise.
11105         (SQL_CVT_NUMERIC): likewise.
11106         (SQL_CVT_REAL): likewise.
11107         (SQL_CVT_SMALLINT): likewise.
11108         (SQL_CVT_TIME): likewise.
11109         (SQL_CVT_TIMESTAMP): likewise.
11110         (SQL_CVT_TINYINT): likewise.
11111         (SQL_CVT_VARBINARY): likewise.
11112         (SQL_CVT_VARCHAR): likewise.
11113         (SQL_DATABASE_NAME): likewise.
11114         (SQL_DATE): likewise.
11115         (SQL_DRIVER_HDBC): likewise.
11116         (SQL_DRIVER_HENV): likewise.
11117         (SQL_DRIVER_HLIB): likewise.
11118         (SQL_DRIVER_HSTMT): likewise.
11119         (SQL_DRIVER_NAME): likewise.
11120         (SQL_DRIVER_ODBC_VER): likewise.
11121         (SQL_DRIVER_VER): likewise.
11122         (SQL_ENSURE): likewise.
11123         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
11124         (SQL_EXT_API_LAST): likewise.
11125         (SQL_EXT_API_START): likewise.
11126         (SQL_FD_FETCH_BOOKMARK): likewise.
11127         (SQL_FD_FETCH_PREV): likewise.
11128         (SQL_FD_FETCH_RESUME): likewise.
11129         (SQL_FETCH_PREV): likewise.
11130         (SQL_FETCH_RESUME): likewise.
11131         (SQL_FILE_NOT_SUPPORTED): likewise.
11132         (SQL_FILE_QUALIFIER): likewise.
11133         (SQL_FILE_TABLE): likewise.
11134         (SQL_FILE_USAGE): likewise.
11135         (SQL_FN_CVT_CONVERT): likewise.
11136         (SQL_FN_NUM_ABS): likewise.
11137         (SQL_FN_NUM_ACOS): likewise.
11138         (SQL_FN_NUM_ASIN): likewise.
11139         (SQL_FN_NUM_ATAN): likewise.
11140         (SQL_FN_NUM_ATAN2): likewise.
11141         (SQL_FN_NUM_CEILING): likewise.
11142         (SQL_FN_NUM_COS): likewise.
11143         (SQL_FN_NUM_COT): likewise.
11144         (SQL_FN_NUM_DEGREES): likewise.
11145         (SQL_FN_NUM_EXP): likewise.
11146         (SQL_FN_NUM_FLOOR): likewise.
11147         (SQL_FN_NUM_LOG): likewise.
11148         (SQL_FN_NUM_LOG10): likewise.
11149         (SQL_FN_NUM_MOD): likewise.
11150         (SQL_FN_NUM_PI): likewise.
11151         (SQL_FN_NUM_POWER): likewise.
11152         (SQL_FN_NUM_RADIANS): likewise.
11153         (SQL_FN_NUM_RAND): likewise.
11154         (SQL_FN_NUM_ROUND): likewise.
11155         (SQL_FN_NUM_SIGN): likewise.
11156         (SQL_FN_NUM_SIN): likewise.
11157         (SQL_FN_NUM_SQRT): likewise.
11158         (SQL_FN_NUM_TAN): likewise.
11159         (SQL_FN_NUM_TRUNCATE): likewise.
11160         (SQL_FN_STR_ASCII): likewise.
11161         (SQL_FN_STR_CHAR): likewise.
11162         (SQL_FN_STR_CONCAT): likewise.
11163         (SQL_FN_STR_DIFFERENCE): likewise.
11164         (SQL_FN_STR_INSERT): likewise.
11165         (SQL_FN_STR_LCASE): likewise.
11166         (SQL_FN_STR_LEFT): likewise.
11167         (SQL_FN_STR_LENGTH): likewise.
11168         (SQL_FN_STR_LOCATE): likewise.
11169         (SQL_FN_STR_LOCATE_2): likewise.
11170         (SQL_FN_STR_LTRIM): likewise.
11171         (SQL_FN_STR_REPEAT): likewise.
11172         (SQL_FN_STR_REPLACE): likewise.
11173         (SQL_FN_STR_RIGHT): likewise.
11174         (SQL_FN_STR_RTRIM): likewise.
11175         (SQL_FN_STR_SOUNDEX): likewise.
11176         (SQL_FN_STR_SPACE): likewise.
11177         (SQL_FN_STR_SUBSTRING): likewise.
11178         (SQL_FN_STR_UCASE): likewise.
11179         (SQL_FN_SYS_DBNAME): likewise.
11180         (SQL_FN_SYS_IFNULL): likewise.
11181         (SQL_FN_SYS_USERNAME): likewise.
11182         (SQL_FN_TD_CURDATE): likewise.
11183         (SQL_FN_TD_CURTIME): likewise.
11184         (SQL_FN_TD_DAYNAME): likewise.
11185         (SQL_FN_TD_DAYOFMONTH): likewise.
11186         (SQL_FN_TD_DAYOFWEEK): likewise.
11187         (SQL_FN_TD_DAYOFYEAR): likewise.
11188         (SQL_FN_TD_HOUR): likewise.
11189         (SQL_FN_TD_MINUTE): likewise.
11190         (SQL_FN_TD_MONTH): likewise.
11191         (SQL_FN_TD_MONTHNAME): likewise.
11192         (SQL_FN_TD_NOW): likewise.
11193         (SQL_FN_TD_QUARTER): likewise.
11194         (SQL_FN_TD_SECOND): likewise.
11195         (SQL_FN_TD_TIMESTAMPadd): likewise.
11196         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
11197         (SQL_FN_TD_WEEK): likewise.
11198         (SQL_FN_TD_YEAR): likewise.
11199         (SQL_FN_TSI_DAY): likewise.
11200         (SQL_FN_TSI_FRAC_SECOND): likewise.
11201         (SQL_FN_TSI_HOUR): likewise.
11202         (SQL_FN_TSI_MINUTE): likewise.
11203         (SQL_FN_TSI_MONTH): likewise.
11204         (SQL_FN_TSI_QUARTER): likewise.
11205         (SQL_FN_TSI_SECOND): likewise.
11206         (SQL_FN_TSI_WEEK): likewise.
11207         (SQL_FN_TSI_YEAR): likewise.
11208         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
11209         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
11210         (SQL_GB_NO_RELATION): likewise.
11211         (SQL_GB_NOT_SUPPORTED): likewise.
11212         (SQL_GD_BLOCK): likewise.
11213         (SQL_GD_BOUND): likewise.
11214         (SQL_GET_BOOKMARK): likewise.
11215         (SQL_GROUP_BY): likewise.
11216         (SQL_INFO_DRIVER_START): likewise.
11217         (SQL_INFO_FIRST): likewise.
11218         (SQL_INFO_LAST): likewise.
11219         (SQL_INTERVAL_DAY): likewise.
11220         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
11221         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
11222         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
11223         (SQL_INTERVAL_HOUR): likewise.
11224         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
11225         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
11226         (SQL_INTERVAL_MINUTE): likewise.
11227         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11228         (SQL_INTERVAL_MONTH): likewise.
11229         (SQL_INTERVAL_SECOND): likewise.
11230         (SQL_INTERVAL_YEAR): likewise.
11231         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11232         (SQL_KEYSET_SIZE): likewise.
11233         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11234         (SQL_KEYWORDS): likewise.
11235         (SQL_LCK_EXCLUSIVE): likewise.
11236         (SQL_LCK_NO_CHANGE): likewise.
11237         (SQL_LCK_UNLOCK): likewise.
11238         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11239         (SQL_LIKE_ONLY): likewise.
11240         (SQL_LOCK_TYPES): likewise.
11241         (SQL_LOGIN_TIMEOUT): likewise.
11242         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11243         (SQL_LONGVARBINARY): likewise.
11244         (SQL_LONGVARCHAR): likewise.
11245         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11246         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11247         (SQL_MAX_DSN_LENGTH): likewise.
11248         (SQL_MAX_LENGTH): likewise.
11249         (SQL_MAX_LENGTH_DEFAULT): likewise.
11250         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11251         (SQL_MAX_OWNER_NAME_LEN): likewise.
11252         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11253         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11254         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11255         (SQL_MAX_ROWS): likewise.
11256         (SQL_MAX_ROWS_DEFAULT): likewise.
11257         (SQL_MODE_DEFAULT): likewise.
11258         (SQL_MODE_READ_ONLY): likewise.
11259         (SQL_MODE_READ_WRITE): likewise.
11260         (SQL_MULT_RESULT_SETS): likewise.
11261         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11262         (SQL_NC_END): likewise.
11263         (SQL_NC_START): likewise.
11264         (SQL_NEED_LONG_DATA_LEN): likewise.
11265         (SQL_NNC_NON_NULL): likewise.
11266         (SQL_NNC_NULL): likewise.
11267         (SQL_NO_TOTAL): likewise.
11268         (SQL_NON_NULLABLE_COLUMNS): likewise.
11269         (SQL_NOSCAN): likewise.
11270         (SQL_NOSCAN_DEFAULT): likewise.
11271         (SQL_NOSCAN_OFF): likewise.
11272         (SQL_NOSCAN_ON): likewise.
11273         (SQL_NUM_EXTENSIONS): likewise.
11274         (SQL_NUM_FUNCTIONS): likewise.
11275         (SQL_NUMERIC_FUNCTIONS): likewise.
11276         (SQL_OAC_LEVEL1): likewise.
11277         (SQL_OAC_LEVEL2): likewise.
11278         (SQL_OAC_NONE): likewise.
11279         (SQL_ODBC_API_CONFORMANCE): likewise.
11280         (SQL_ODBC_CURSORS): likewise.
11281         (SQL_ODBC_KEYWORDS): likewise.
11282         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11283         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11284         (SQL_ODBC_SQL_OPT_IEF): likewise.
11285         (SQL_ODBC_VER): likewise.
11286         (SQL_OPT_TRACE): likewise.
11287         (SQL_OPT_TRACE_DEFAULT): likewise.
11288         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11289         (SQL_OPT_TRACE_OFF): likewise.
11290         (SQL_OPT_TRACE_ON): likewise.
11291         (SQL_OPT_TRACEFILE): likewise.
11292         (SQL_OSC_CORE): likewise.
11293         (SQL_OSC_EXTENDED): likewise.
11294         (SQL_OSC_MINIMUM): likewise.
11295         (SQL_OSCC_COMPLIANT): likewise.
11296         (SQL_OSCC_NOT_COMPLIANT): likewise.
11297         (SQL_OU_DML_STATEMENTS): likewise.
11298         (SQL_OU_INDEX_DEFINITION): likewise.
11299         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11300         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11301         (SQL_OU_TABLE_DEFINITION): likewise.
11302         (SQL_OUTER_JOINS): likewise.
11303         (SQL_OWNER_TERM): likewise.
11304         (SQL_OWNER_USAGE): likewise.
11305         (SQL_PACKET_SIZE): likewise.
11306         (SQL_PC_NOT_PSEUDO): likewise.
11307         (SQL_POS_add): likewise.
11308         (SQL_POS_DELETE): likewise.
11309         (SQL_POS_OPERATIONS): likewise.
11310         (SQL_POS_POSITION): likewise.
11311         (SQL_POS_REFRESH): likewise.
11312         (SQL_POS_UPDATE): likewise.
11313         (SQL_POSITIONED_STATEMENTS): likewise.
11314         (SQL_PROCEDURE_TERM): likewise.
11315         (SQL_PROCEDURES): likewise.
11316         (SQL_PS_POSITIONED_DELETE): likewise.
11317         (SQL_PS_POSITIONED_UPDATE): likewise.
11318         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11319         (SQL_QL_END): likewise.
11320         (SQL_QL_START): likewise.
11321         (SQL_QU_DML_STATEMENTS): likewise.
11322         (SQL_QU_INDEX_DEFINITION): likewise.
11323         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11324         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11325         (SQL_QU_TABLE_DEFINITION): likewise.
11326         (SQL_QUALIFIER_LOCATION): likewise.
11327         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11328         (SQL_QUALIFIER_TERM): likewise.
11329         (SQL_QUALIFIER_USAGE): likewise.
11330         (SQL_QUERY_TIMEOUT): likewise.
11331         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11332         (SQL_QUICK): likewise.
11333         (SQL_QUIET_MODE): likewise.
11334         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11335         (SQL_RD_DEFAULT): likewise.
11336         (SQL_RD_OFF): likewise.
11337         (SQL_RD_ON): likewise.
11338         (SQL_RETRIEVE_DATA): likewise.
11339         (SQL_ROW_NUMBER): likewise.
11340         (SQL_ROW_UPDATES): likewise.
11341         (SQL_ROWSET_SIZE): likewise.
11342         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11343         (SQL_ROWVER): likewise.
11344         (SQL_SC_NON_UNIQUE): likewise.
11345         (SQL_SC_TRY_UNIQUE): likewise.
11346         (SQL_SC_UNIQUE): likewise.
11347         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11348         (SQL_SCROLL_DYNAMIC): likewise.
11349         (SQL_SCROLL_FORWARD_ONLY): likewise.
11350         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11351         (SQL_SCROLL_OPTIONS): likewise.
11352         (SQL_SCROLL_STATIC): likewise.
11353         (SQL_SEARCHABLE): likewise.
11354         (SQL_SIGNED_OFFSET): likewise.
11355         (SQL_SIMULATE_CURSOR): likewise.
11356         (SQL_SO_DYNAMIC): likewise.
11357         (SQL_SO_FORWARD_ONLY): likewise.
11358         (SQL_SO_KEYSET_DRIVEN): likewise.
11359         (SQL_SO_MIXED): likewise.
11360         (SQL_SO_STATIC): likewise.
11361         (SQL_SPEC_MAJOR): likewise.
11362         (SQL_SPEC_MINOR): likewise.
11363         (SQL_SPEC_STRING): likewise.
11364         (SQL_SQ_COMPARISON): likewise.
11365         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11366         (SQL_SQ_EXISTS): likewise.
11367         (SQL_SQ_IN): likewise.
11368         (SQL_SQ_QUANTIFIED): likewise.
11369         (SQL_SQLSTATE_SIZE): likewise.
11370         (SQL_SS_addITIONS): likewise.
11371         (SQL_SS_DELETIONS): likewise.
11372         (SQL_SS_UPDATES): likewise.
11373         (SQL_STATIC_SENSITIVITY): likewise.
11374         (SQL_STMT_OPT_MAX): likewise.
11375         (SQL_STMT_OPT_MIN): likewise.
11376         (SQL_STRING_FUNCTIONS): likewise.
11377         (SQL_SUBQUERIES): likewise.
11378         (SQL_SYSTEM_FUNCTIONS): likewise.
11379         (SQL_TABLE_STAT): likewise.
11380         (SQL_TABLE_TERM): likewise.
11381         (SQL_TIME): likewise.
11382         (SQL_TIMEDATE_add_INTERVALS): likewise.
11383         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11384         (SQL_TIMEDATE_FUNCTIONS): likewise.
11385         (SQL_TIMESTAMP): likewise.
11386         (SQL_TINYINT): likewise.
11387         (SQL_TRANSLATE_DLL): likewise.
11388         (SQL_TRANSLATE_OPTION): likewise.
11389         (SQL_TXN_ISOLATION): likewise.
11390         (SQL_TXN_VERSIONING): likewise.
11391         (SQL_TYPE_DRIVER_END): likewise.
11392         (SQL_TYPE_DRIVER_START): likewise.
11393         (SQL_TYPE_MAX): likewise.
11394         (SQL_TYPE_MIN): likewise.
11395         (SQL_TYPE_NULL): likewise.
11396         (SQL_U_UNION): likewise.
11397         (SQL_U_UNION_ALL): likewise.
11398         (SQL_UB_DEFAULT): likewise.
11399         (SQL_UB_OFF): likewise.
11400         (SQL_UB_ON): likewise.
11401         (SQL_UNICODE): likewise.
11402         (SQL_UNICODE_CHAR): likewise.
11403         (SQL_UNICODE_LONGVARCHAR): likewise.
11404         (SQL_UNICODE_VARCHAR): likewise.
11405         (SQL_UNION): likewise.
11406         (SQL_UNSEARCHABLE): likewise.
11407         (SQL_UNSIGNED_OFFSET): likewise.
11408         (SQL_USE_BOOKMARKS): likewise.
11409         (SQL_VARBINARY): likewise.
11410         (SQL_TRUE): add define for ODBC3.x.
11411         (SQL_FALSE): likewise.
11412         (SQL_AM_CONNECTION): likewise.
11413         (SQL_AM_NONE): likewise.
11414         (SQL_AM_STATEMENT): likewise.
11415         (SQL_API_SQLALLOCHANDLE): likewise.
11416         (SQL_API_SQLBINDPARAM): likewise.
11417         (SQL_API_SQLCLOSECURSOR): likewise.
11418         (SQL_API_SQLCOLATTRIBUTE): likewise.
11419         (SQL_API_SQLCOPYDESC): likewise.
11420         (SQL_API_SQLENDTRAN): likewise.
11421         (SQL_API_SQLFETCHSCROLL): likewise.
11422         (SQL_API_SQLFREEHANDLE): likewise.
11423         (SQL_API_SQLGETCONNECTATTR): likewise.
11424         (SQL_API_SQLGETDESCFIELD): likewise.
11425         (SQL_API_SQLGETDESCREC): likewise.
11426         (SQL_API_SQLGETDIAGFIELD): likewise.
11427         (SQL_API_SQLGETDIAGREC): likewise.
11428         (SQL_API_SQLGETENVATTR): likewise.
11429         (SQL_API_SQLGETSTMTATTR): likewise.
11430         (SQL_API_SQLSETCONNECTATTR): likewise.
11431         (SQL_API_SQLSETDESCFIELD): likewise.
11432         (SQL_API_SQLSETDESCREC): likewise.
11433         (SQL_API_SQLSETENVATTR): likewise.
11434         (SQL_API_SQLSETSTMTATTR): likewise.
11435         (SQL_ARD_TYPE): likewise.
11436         (SQL_AT_add_CONSTRAINT): likewise.
11437         (SQL_ATTR_APP_PARAM_DESC): likewise.
11438         (SQL_ATTR_APP_ROW_DESC): likewise.
11439         (SQL_ATTR_AUTO_IPD): likewise.
11440         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11441         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11442         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11443         (SQL_ATTR_IMP_ROW_DESC): likewise.
11444         (SQL_ATTR_METADATA_ID): likewise.
11445         (SQL_ATTR_OUTPUT_NTS): likewise.
11446         (SQL_CATALOG_NAME): likewise.
11447         (SQL_CODE_DATE): likewise.
11448         (SQL_CODE_TIME): likewise.
11449         (SQL_CODE_TIMESTAMP): likewise.
11450         (SQL_COLLATION_SEQ): likewise.
11451         (SQL_CURSOR_SENSITIVITY): likewise.
11452         (SQL_DATE_LEN): likewise.
11453         (SQL_DATETIME): likewise.
11454         (SQL_DEFAULT): likewise.
11455         (SQL_DESC_ALLOC_AUTO): likewise.
11456         (SQL_DESC_ALLOC_TYPE): likewise.
11457         (SQL_DESC_ALLOC_USER): likewise.
11458         (SQL_DESC_COUNT): likewise.
11459         (SQL_DESC_DATA_PTR): likewise.
11460         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11461         (SQL_DESC_INDICATOR_PTR): likewise.
11462         (SQL_DESC_LENGTH): likewise.
11463         (SQL_DESC_NAME): likewise.
11464         (SQL_DESC_NULLABLE): likewise.
11465         (SQL_DESC_OCTET_LENGTH): likewise.
11466         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11467         (SQL_DESC_PRECISION): likewise.
11468         (SQL_DESC_SCALE): likewise.
11469         (SQL_DESC_TYPE): likewise.
11470         (SQL_DESC_UNNAMED): likewise.
11471         (SQL_DESCRIBE_PARAMETER): likewise.
11472         (SQL_DIAG_ALTER_DOMAIN): likewise.
11473         (SQL_DIAG_ALTER_TABLE): likewise.
11474         (SQL_DIAG_CALL): likewise.
11475         (SQL_DIAG_CLASS_ORIGIN): likewise.
11476         (SQL_DIAG_CONNECTION_NAME): likewise.
11477         (SQL_DIAG_CREATE_ASSERTION): likewise.
11478         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11479         (SQL_DIAG_CREATE_COLLATION): likewise.
11480         (SQL_DIAG_CREATE_DOMAIN): likewise.
11481         (SQL_DIAG_CREATE_INDEX): likewise.
11482         (SQL_DIAG_CREATE_SCHEMA): likewise.
11483         (SQL_DIAG_CREATE_TABLE): likewise.
11484         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11485         (SQL_DIAG_CREATE_VIEW): likewise.
11486         (SQL_DIAG_DELETE_WHERE): likewise.
11487         (SQL_DIAG_DROP_ASSERTION): likewise.
11488         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11489         (SQL_DIAG_DROP_COLLATION): likewise.
11490         (SQL_DIAG_DROP_DOMAIN): likewise.
11491         (SQL_DIAG_DROP_INDEX): likewise.
11492         (SQL_DIAG_DROP_SCHEMA): likewise.
11493         (SQL_DIAG_DROP_TABLE): likewise.
11494         (SQL_DIAG_DROP_TRANSLATION): likewise.
11495         (SQL_DIAG_DROP_VIEW): likewise.
11496         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11497         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11498         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11499         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11500         (SQL_DIAG_GRANT): likewise.
11501         (SQL_DIAG_INSERT): likewise.
11502         (SQL_DIAG_MESSAGE_TEXT): likewise.
11503         (SQL_DIAG_NATIVE): likewise.
11504         (SQL_DIAG_NUMBER): likewise.
11505         (SQL_DIAG_RETURNCODE): likewise.
11506         (SQL_DIAG_REVOKE): likewise.
11507         (SQL_DIAG_ROW_COUNT): likewise.
11508         (SQL_DIAG_SELECT_CURSOR): likewise.
11509         (SQL_DIAG_SERVER_NAME): likewise.
11510         (SQL_DIAG_SQLSTATE): likewise.
11511         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11512         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11513         (SQL_DIAG_UPDATE_WHERE): likewise.
11514         (SQL_FALSE): likewise.
11515         (SQL_FETCH_ABSOLUTE): likewise.
11516         (SQL_FETCH_LAST): likewise.
11517         (SQL_FETCH_PRIOR): likewise.
11518         (SQL_FETCH_RELATIVE): likewise.
11519         (SQL_HANDLE_DBC): likewise.
11520         (SQL_HANDLE_DESC): likewise.
11521         (SQL_HANDLE_ENV): likewise.
11522         (SQL_HANDLE_STMT): likewise.
11523         (SQL_INSENSITIVE): likewise.
11524         (SQL_INTEGRITY): likewise.
11525         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11526         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11527         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11528         (SQL_MAX_IDENTIFIER_LEN): likewise.
11529         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11530         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11531         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11532         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11533         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11534         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11535         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11536         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11537         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11538         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11539         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11540         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11541         (SQL_MAXIMUM_ROW_SIZE): likewise.
11542         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11543         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11544         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11545         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11546         (SQL_NAMED): likewise.
11547         (SQL_NONSCROLLABLE): likewise.
11548         (SQL_NTSL): likewise.
11549         (SQL_NULL_HANDLE): likewise.
11550         (SQL_NULL_HDESC): likewise.
11551         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11552         (SQL_PRED_BASIC): likewise.
11553         (SQL_PRED_CHAR): likewise.
11554         (SQL_PRED_NONE): likewise.
11555         (SQL_ROW_IDENTIFIER): likewise.
11556         (SQL_SCROLLABLE): likewise.
11557         (SQL_SENSITIVE): likewise.
11558         (SQL_SUCCEEDED(rc)): likewise.
11559         (SQL_TIME_LEN): likewise.
11560         (SQL_TIMESTAMP_LEN): likewise.
11561         (SQL_TRANSACTION_CAPABLE): likewise.
11562         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11563         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11564         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11565         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11566         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11567         (SQL_TYPE_DATE): likewise.
11568         (SQL_TYPE_TIME): likewise.
11569         (SQL_TYPE_TIMESTAMP): likewise.
11570         (SQL_UNKNOWN_TYPE): likewise.
11571         (SQL_UNNAMED): likewise.
11572         (SQL_UNSPECIFIED): likewise.
11573         (SQL_XOPEN_CLI_YEAR): likewise.
11574         (SQLAllocConnect): add comment marking as deperecated.
11575         (SQLAllocEnv): likewise.
11576         (SQLAllocStmt): likewise.
11577         (SQLFreeConnect): likewise.
11578         (SQLFreeEnv): likewise.
11579         (SQLGetConnectOption): likewise.
11580         (SQLGetStmtOption): likewise.
11581
11582         * include/sqlext.h (#include <sqlucode.h>): add directive.
11583         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11584         (SQLColAttributes): likewise.
11585         (SQLBulkOperations): add function prototype.
11586         (SQLAllocHandleStd): likewise
11587         (TraceReturn): add Trace API prototype.
11588         (TraceVersion): likewise.
11589         (ODBCGetTryWaitValue):likewise.
11590         (ODBCSetTryWaitValue): likewise.
11591         (SQL_LOCK_RECORD): correct function macro.
11592         (SQL_REFRESH_RECORD): likewise.
11593         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11594         _WIN64 compatability.
11595         move defines for non-core functions from sql.h to sqlext.h (refer
11596         changes for sql.h)
11597         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11598         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11599         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11600         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11601         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11602         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11603         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11604         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11605         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11606         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11607         (SQL_AF_ALL): likewise.
11608         (SQL_AF_AVG): likewise.
11609         (SQL_AF_COUNT): likewise.
11610         (SQL_AF_DISTINCT): likewise.
11611         (SQL_AF_MAX): likewise.
11612         (SQL_AF_MIN): likewise.
11613         (SQL_AF_SUM): likewise.
11614         (SQL_AGGREGATE_FUNCTIONS): likewise.
11615         (SQL_ALL_CATALOGS): likewise.
11616         (SQL_ALL_SCHEMAS): likewise.
11617         (SQL_ALL_TABLE_TYPES): likewise.
11618         (SQL_ALTER_DOMAIN): likewise.
11619         (SQL_AM_CONNECTION): likewise.
11620         (SQL_AM_NONE): likewise.
11621         (SQL_AM_STATEMENT): likewise.
11622         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11623         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11624         (SQL_API_SQLALLOCHANDLESTD): likewise.
11625         (SQL_API_SQLBULKOPERATIONS): likewise.
11626         (SQL_ASYNC_MODE): likewise.
11627         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11628         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11629         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11630         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11631         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11632         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11633         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11634         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11635         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11636         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11637         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11638         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11639         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11640         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11641         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11642         (SQL_ATTR_ACCESS_MODE): likewise.
11643         (SQL_ATTR_ASYNC_ENABLE): likewise.
11644         (SQL_ATTR_AUTOCOMMIT): likewise.
11645         (SQL_ATTR_CONCURRENCY): likewise.
11646         (SQL_ATTR_CONNECTION_POOLING): likewise.
11647         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11648         (SQL_ATTR_CP_MATCH): likewise.
11649         (SQL_ATTR_CURRENT_CATALOG): likewise.
11650         (SQL_ATTR_CURSOR_TYPE): likewise.
11651         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11652         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11653         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11654         (SQL_ATTR_ENLIST_IN_XA): likewise.
11655         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11656         (SQL_ATTR_KEYSET_SIZE): likewise.
11657         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11658         (SQL_ATTR_MAX_LENGTH): likewise.
11659         (SQL_ATTR_MAX_ROWS): likewise.
11660         (SQL_ATTR_NOSCAN): likewise.
11661         (SQL_ATTR_ODBC_CURSORS): likewise.
11662         (SQL_ATTR_ODBC_VERSION): likewise.
11663         (SQL_ATTR_PACKET_SIZE): likewise.
11664         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11665         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11666         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11667         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11668         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11669         (SQL_ATTR_PARAMSET_SIZE): likewise.
11670         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11671         (SQL_ATTR_QUIET_MODE): likewise.
11672         (SQL_ATTR_RETRIEVE_DATA): likewise.
11673         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11674         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11675         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11676         (SQL_ATTR_ROW_NUMBER): likewise.
11677         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11678         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11679         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11680         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11681         (SQL_ATTR_TRACE): likewise.
11682         (SQL_ATTR_TRACEFILE): likewise.
11683         (SQL_ATTR_TRANSLATE_LIB): likewise.
11684         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11685         (SQL_ATTR_TXN_ISOLATION): likewise.
11686         (SQL_ATTR_USE_BOOKMARKS): likewise.
11687         (SQL_BATCH_ROW_COUNT): likewise.
11688         (SQL_BATCH_SUPPORT): likewise.
11689         (SQL_BRC_EXPLICIT): likewise.
11690         (SQL_BRC_PROCEDURES): likewise.
11691         (SQL_BRC_ROLLED_UP): likewise.
11692         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11693         (SQL_BS_ROW_COUNT_PROC): likewise.
11694         (SQL_BS_SELECT_EXPLICIT): likewise.
11695         (SQL_BS_SELECT_PROC): likewise.
11696         (SQL_C_INTERVAL_DAY): likewise.
11697         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11698         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11699         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11700         (SQL_C_INTERVAL_HOUR): likewise.
11701         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11702         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11703         (SQL_C_INTERVAL_MINUTE): likewise.
11704         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11705         (SQL_C_INTERVAL_MONTH): likewise.
11706         (SQL_C_INTERVAL_SECOND): likewise.
11707         (SQL_C_INTERVAL_YEAR): likewise.
11708         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11709         (SQL_C_NUMERIC): likewise.
11710         (SQL_C_SBIGINT): likewise.
11711         (SQL_C_TYPE_DATE): likewise.
11712         (SQL_C_TYPE_TIME): likewise.
11713         (SQL_C_TYPE_TIMESTAMP): likewise.
11714         (SQL_C_UBIGINT): likewise.
11715         (SQL_C_VARBOOKMARK): likewise.
11716         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11717         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11718         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11719         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11720         (SQL_CA_CREATE_ASSERTION): likewise.
11721         (SQL_CA1_ABSOLUTE): likewise.
11722         (SQL_CA1_BOOKMARK): likewise.
11723         (SQL_CA1_BULK_ADD): likewise.
11724         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11725         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11726         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11727         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11728         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11729         (SQL_CA1_LOCK_UNLOCK): likewise.
11730         (SQL_CA1_NEXT): likewise.
11731         (SQL_CA1_POS_DELETE): likewise.
11732         (SQL_CA1_POS_POSITION): likewise.
11733         (SQL_CA1_POS_REFRESH): likewise.
11734         (SQL_CA1_POS_UPDATE): likewise.
11735         (SQL_CA1_POSITIONED_DELETE): likewise.
11736         (SQL_CA1_POSITIONED_UPDATE): likewise.
11737         (SQL_CA1_RELATIVE): likewise.
11738         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11739         (SQL_CA2_CRC_APPROXIMATE): likewise.
11740         (SQL_CA2_CRC_EXACT): likewise.
11741         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11742         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11743         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11744         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11745         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11746         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11747         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11748         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11749         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11750         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11751         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11752         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11753         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11754         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11755         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11756         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11757         (SQL_CATALOG_LOCATION): likewise.
11758         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11759         (SQL_CATALOG_TERM): likewise.
11760         (SQL_CATALOG_USAGE): likewise.
11761         (SQL_CCOL_CREATE_COLLATION): likewise.
11762         (SQL_CCS_COLLATE_CLAUSE): likewise.
11763         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11764         (SQL_CCS_LIMITED_COLLATION): likewise.
11765         (SQL_CDO_COLLATION): likewise.
11766         (SQL_CDO_CONSTRAINT): likewise.
11767         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11768         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11769         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11770         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11771         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11772         (SQL_CDO_CREATE_DOMAIN): likewise.
11773         (SQL_CDO_DEFAULT): likewise.
11774         (SQL_CL_END): likewise.
11775         (SQL_CL_START): likewise.
11776         (SQL_COL_PRED_BASIC): likewise.
11777         (SQL_COL_PRED_CHAR): likewise.
11778         (SQL_COLUMN_DRIVER_START): likewise.
11779         (SQL_COLUMN_IGNORE): likewise.
11780         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11781         (SQL_CONVERT_GUID): likewise.
11782         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11783         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11784         (SQL_CONVERT_WCHAR): likewise.
11785         (SQL_CONVERT_WLONGVARCHAR): likewise.
11786         (SQL_CONVERT_WVARCHAR): likewise.
11787         (SQL_CP_DEFAULT): likewise.
11788         (SQL_CP_MATCH_DEFAULT): likewise.
11789         (SQL_CP_OFF): likewise.
11790         (SQL_CP_ONE_PER_DRIVER): likewise.
11791         (SQL_CP_ONE_PER_HENV): likewise.
11792         (SQL_CP_RELAXED_MATCH): likewise.
11793         (SQL_CP_STRICT_MATCH): likewise.
11794         (SQL_CREATE_ASSERTION): likewise.
11795         (SQL_CREATE_CHARACTER_SET): likewise.
11796         (SQL_CREATE_COLLATION): likewise.
11797         (SQL_CREATE_DOMAIN): likewise.
11798         (SQL_CREATE_SCHEMA): likewise.
11799         (SQL_CREATE_TABLE): likewise.
11800         (SQL_CREATE_TRANSLATION): likewise.
11801         (SQL_CREATE_VIEW): likewise.
11802         (SQL_CS_AUTHORIZATION): likewise.
11803         (SQL_CS_CREATE_SCHEMA): likewise.
11804         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11805         (SQL_CT_COLUMN_COLLATION): likewise.
11806         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11807         (SQL_CT_COLUMN_DEFAULT): likewise.
11808         (SQL_CT_COMMIT_DELETE): likewise.
11809         (SQL_CT_COMMIT_PRESERVE): likewise.
11810         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11811         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11812         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11813         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11814         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11815         (SQL_CT_CREATE_TABLE): likewise.
11816         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11817         (SQL_CT_LOCAL_TEMPORARY): likewise.
11818         (SQL_CT_TABLE_CONSTRAINT): likewise.
11819         (SQL_CTR_CREATE_TRANSLATION): likewise.
11820         (SQL_CU_DML_STATEMENTS): likewise.
11821         (SQL_CU_INDEX_DEFINITION): likewise.
11822         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11823         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11824         (SQL_CU_TABLE_DEFINITION): likewise.
11825         (SQL_CVT_GUID): likewise.
11826         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11827         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11828         (SQL_CVT_WCHAR): likewise.
11829         (SQL_CVT_WLONGVARCHAR): likewise.
11830         (SQL_CVT_WVARCHAR): likewise.
11831         (SQL_DA_DROP_ASSERTION): likewise.
11832         (SQL_DATETIME_LITERALS): likewise.
11833         (SQL_DB_DEFAULT): likewise.
11834         (SQL_DB_DISCONNECT): likewise.
11835         (SQL_DB_RETURN_TO_POOL): likewise.
11836         (SQL_DC_DROP_COLLATION): likewise.
11837         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11838         (SQL_DD_CASCADE): likewise.
11839         (SQL_DD_DROP_DOMAIN): likewise.
11840         (SQL_DD_RESTRICT): likewise.
11841         (SQL_DDL_INDEX): likewise.
11842         (SQL_DELETE_BY_BOOKMARK): likewise.
11843         (SQL_DESC_ARRAY_SIZE): likewise.
11844         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11845         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11846         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11847         (SQL_DESC_BASE_TABLE_NAME): likewise.
11848         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11849         (SQL_DESC_BIND_TYPE): likewise.
11850         (SQL_DESC_CASE_SENSITIVE): likewise.
11851         (SQL_DESC_CATALOG_NAME): likewise.
11852         (SQL_DESC_CONCISE_TYPE): likewise.
11853         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11854         (SQL_DESC_DISPLAY_SIZE): likewise.
11855         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11856         (SQL_DESC_LABEL): likewise.
11857         (SQL_DESC_LITERAL_PREFIX): likewise.
11858         (SQL_DESC_LITERAL_SUFFIX): likewise.
11859         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11860         (SQL_DESC_MAXIMUM_SCALE): likewise.
11861         (SQL_DESC_MINIMUM_SCALE): likewise.
11862         (SQL_DESC_NUM_PREC_RADIX): likewise.
11863         (SQL_DESC_PARAMETER_TYPE): likewise.
11864         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11865         (SQL_DESC_SCHEMA_NAME): likewise.
11866         (SQL_DESC_SEARCHABLE): likewise.
11867         (SQL_DESC_TABLE_NAME): likewise.
11868         (SQL_DESC_TYPE_NAME): likewise.
11869         (SQL_DESC_UNSIGNED): likewise.
11870         (SQL_DESC_UPDATABLE): likewise.
11871         (SQL_DI_CREATE_INDEX): likewise.
11872         (SQL_DI_DROP_INDEX): likewise.
11873         (SQL_DIAG_COLUMN_NUMBER): likewise.
11874         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11875         (SQL_DIAG_ROW_NUMBER): likewise.
11876         (SQL_DL_SQL92_DATE): likewise.
11877         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11878         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11879         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11880         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11881         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11882         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11883         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11884         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11885         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11886         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11887         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11888         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11889         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11890         (SQL_DL_SQL92_TIME): likewise.
11891         (SQL_DL_SQL92_TIMESTAMP): likewise.
11892         (SQL_DM_VER): likewise.
11893         (SQL_DRIVER_HDESC): likewise.
11894         (SQL_DROP_ASSERTION): likewise.
11895         (SQL_DROP_CHARACTER_SET): likewise.
11896         (SQL_DROP_COLLATION): likewise.
11897         (SQL_DROP_DOMAIN): likewise.
11898         (SQL_DROP_SCHEMA): likewise.
11899         (SQL_DROP_TABLE): likewise.
11900         (SQL_DROP_TRANSLATION): likewise.
11901         (SQL_DROP_VIEW): likewise.
11902         (SQL_DS_CASCADE): likewise.
11903         (SQL_DS_DROP_SCHEMA): likewise.
11904         (SQL_DS_RESTRICT): likewise.
11905         (SQL_DT_CASCADE): likewise.
11906         (SQL_DT_DROP_TABLE): likewise.
11907         (SQL_DT_RESTRICT): likewise.
11908         (SQL_DTC_DONE): likewise.
11909         (SQL_DTR_DROP_TRANSLATION): likewise.
11910         (SQL_DV_CASCADE): likewise.
11911         (SQL_DV_DROP_VIEW): likewise.
11912         (SQL_DV_RESTRICT): likewise.
11913         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11914         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11915         (SQL_EXT_API_LAST): likewise.
11916         (SQL_EXT_API_START): likewise.
11917         (SQL_FETCH_BY_BOOKMARK): likewise.
11918         (SQL_FETCH_FIRST_SYSTEM): likewise.
11919         (SQL_FETCH_FIRST_USER): likewise.
11920         (SQL_FN_CVT_CAST): likewise.
11921         (SQL_FN_STR_BIT_LENGTH): likewise.
11922         (SQL_FN_STR_CHAR_LENGTH): likewise.
11923         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11924         (SQL_FN_STR_OCTET_LENGTH): likewise.
11925         (SQL_FN_STR_POSITION): likewise.
11926         (SQL_FN_TD_CURRENT_DATE): likewise.
11927         (SQL_FN_TD_CURRENT_TIME): likewise.
11928         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11929         (SQL_FN_TD_EXTRACT): likewise.
11930         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11931         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11932         (SQL_FUNC_EXISTS(exists,api)): likewise.
11933         (SQL_GB_COLLATE): likewise.
11934         (SQL_HANDLE_SENV): likewise.
11935         (SQL_IK_ALL): likewise.
11936         (SQL_IK_ASC): likewise.
11937         (SQL_IK_DESC): likewise.
11938         (SQL_IK_NONE): likewise.
11939         (SQL_INDEX_KEYWORDS): likewise.
11940         (SQL_INFO_DRIVER_START): likewise.
11941         (SQL_INFO_LAST): likewise.
11942         (SQL_INFO_SCHEMA_VIEWS): likewise.
11943         (SQL_INITIALLY_DEFERRED): likewise.
11944         (SQL_INITIALLY_IMMEDIATE): likewise.
11945         (SQL_INSERT_STATEMENT): likewise.
11946         (SQL_INTERVAL): likewise.
11947         (SQL_IS_INSERT_LITERALS): likewise.
11948         (SQL_IS_INSERT_SEARCHED): likewise.
11949         (SQL_IS_INTEGER): likewise.
11950         (SQL_IS_POINTER): likewise.
11951         (SQL_IS_SELECT_INTO): likewise.
11952         (SQL_IS_SMALLINT): likewise.
11953         (SQL_IS_UINTEGER): likewise.
11954         (SQL_IS_USMALLINT): likewise.
11955         (SQL_ISV_ASSERTIONS): likewise.
11956         (SQL_ISV_CHARACTER_SETS): likewise.
11957         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11958         (SQL_ISV_COLLATIONS): likewise.
11959         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11960         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11961         (SQL_ISV_COLUMNS): likewise.
11962         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11963         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11964         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11965         (SQL_ISV_DOMAINS): likewise.
11966         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11967         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11968         (SQL_ISV_SCHEMATA): likewise.
11969         (SQL_ISV_SQL_LANGUAGES): likewise.
11970         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11971         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11972         (SQL_ISV_TABLES): likewise.
11973         (SQL_ISV_TRANSLATIONS): likewise.
11974         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11975         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11976         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11977         (SQL_ISV_VIEWS): likewise.
11978         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11979         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11980         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11981         (SQL_NO_COLUMN_NUMBER): likewise.
11982         (SQL_NO_ROW_NUMBER): likewise.
11983         (SQL_NOT_DEFERRABLE): likewise.
11984         (SQL_NUM_EXTENSIONS): likewise.
11985         (SQL_NUM_FUNCTIONS): likewise.
11986         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11987         (SQL_OIC_CORE): likewise.
11988         (SQL_OIC_LEVEL1): likewise.
11989         (SQL_OIC_LEVEL2): likewise.
11990         (SQL_OV_ODBC2): likewise.
11991         (SQL_OV_ODBC3): likewise.
11992         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11993         (SQL_PARAM_ARRAY_SELECTS): likewise.
11994         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11995         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11996         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11997         (SQL_PARAM_ERROR): likewise.
11998         (SQL_PARAM_IGNORE): likewise.
11999         (SQL_PARAM_PROCEED): likewise.
12000         (SQL_PARAM_SUCCESS): likewise.
12001         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
12002         (SQL_PARAM_UNUSED): likewise.
12003         (SQL_PARC_BATCH): likewise.
12004         (SQL_PARC_NO_BATCH): likewise.
12005         (SQL_PAS_BATCH): likewise.
12006         (SQL_PAS_NO_BATCH): likewise.
12007         (SQL_PAS_NO_SELECT): likewise.
12008         (SQL_ROW_IGNORE): likewise.
12009         (SQL_ROW_NUMBER_UNKNOWN): likewise.
12010         (SQL_ROW_PROCEED): likewise.
12011         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
12012         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
12013         (SQL_SC_SQL92_ENTRY): likewise.
12014         (SQL_SC_SQL92_FULL): likewise.
12015         (SQL_SC_SQL92_INTERMEDIATE): likewise.
12016         (SQL_SCC_ISO92_CLI): likewise.
12017         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
12018         (SQL_SCHEMA_TERM): likewise.
12019         (SQL_SCHEMA_USAGE): likewise.
12020         (SQL_SDF_CURRENT_DATE): likewise.
12021         (SQL_SDF_CURRENT_TIME): likewise.
12022         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
12023         (SQL_SFKD_CASCADE): likewise.
12024         (SQL_SFKD_NO_ACTION): likewise.
12025         (SQL_SFKD_SET_DEFAULT): likewise.
12026         (SQL_SFKD_SET_NULL): likewise.
12027         (SQL_SFKU_CASCADE): likewise.
12028         (SQL_SFKU_NO_ACTION): likewise.
12029         (SQL_SFKU_SET_DEFAULT): likewise.
12030         (SQL_SFKU_SET_NULL): likewise.
12031         (SQL_SG_DELETE_TABLE): likewise.
12032         (SQL_SG_INSERT_COLUMN): likewise.
12033         (SQL_SG_INSERT_TABLE): likewise.
12034         (SQL_SG_REFERENCES_COLUMN): likewise.
12035         (SQL_SG_REFERENCES_TABLE): likewise.
12036         (SQL_SG_SELECT_TABLE): likewise.
12037         (SQL_SG_UPDATE_COLUMN): likewise.
12038         (SQL_SG_UPDATE_TABLE): likewise.
12039         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
12040         (SQL_SG_USAGE_ON_COLLATION): likewise.
12041         (SQL_SG_USAGE_ON_DOMAIN): likewise.
12042         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
12043         (SQL_SG_WITH_GRANT_OPTION): likewise.
12044         (SQL_SNVF_BIT_LENGTH): likewise.
12045         (SQL_SNVF_CHAR_LENGTH): likewise.
12046         (SQL_SNVF_CHARACTER_LENGTH): likewise.
12047         (SQL_SNVF_EXTRACT): likewise.
12048         (SQL_SNVF_OCTET_LENGTH): likewise.
12049         (SQL_SNVF_POSITION): likewise.
12050         (SQL_SP_BETWEEN): likewise.
12051         (SQL_SP_COMPARISON): likewise.
12052         (SQL_SP_EXISTS): likewise.
12053         (SQL_SP_IN): likewise.
12054         (SQL_SP_ISNOTNULL): likewise.
12055         (SQL_SP_ISNULL): likewise.
12056         (SQL_SP_LIKE): likewise.
12057         (SQL_SP_MATCH_FULL): likewise.
12058         (SQL_SP_MATCH_PARTIAL): likewise.
12059         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
12060         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
12061         (SQL_SP_OVERLAPS): likewise.
12062         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
12063         (SQL_SP_UNIQUE): likewise.
12064         (SQL_SQL_CONFORMANCE): likewise.
12065         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
12066         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
12067         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
12068         (SQL_SQL92_GRANT): likewise.
12069         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
12070         (SQL_SQL92_PREDICATES): likewise.
12071         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
12072         (SQL_SQL92_REVOKE): likewise.
12073         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
12074         (SQL_SQL92_STRING_FUNCTIONS): likewise.
12075         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
12076         (SQL_SR_CASCADE): likewise.
12077         (SQL_SR_DELETE_TABLE): likewise.
12078         (SQL_SR_GRANT_OPTION_FOR): likewise.
12079         (SQL_SR_INSERT_COLUMN): likewise.
12080         (SQL_SR_INSERT_TABLE): likewise.
12081         (SQL_SR_REFERENCES_COLUMN): likewise.
12082         (SQL_SR_REFERENCES_TABLE): likewise.
12083         (SQL_SR_RESTRICT): likewise.
12084         (SQL_SR_SELECT_TABLE): likewise.
12085         (SQL_SR_UPDATE_COLUMN): likewise.
12086         (SQL_SR_UPDATE_TABLE): likewise.
12087         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
12088         (SQL_SR_USAGE_ON_COLLATION): likewise.
12089         (SQL_SR_USAGE_ON_DOMAIN): likewise.
12090         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
12091         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
12092         (SQL_SRJO_CROSS_JOIN): likewise.
12093         (SQL_SRJO_EXCEPT_JOIN): likewise.
12094         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
12095         (SQL_SRJO_INNER_JOIN): likewise.
12096         (SQL_SRJO_INTERSECT_JOIN): likewise.
12097         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
12098         (SQL_SRJO_NATURAL_JOIN): likewise.
12099         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
12100         (SQL_SRJO_UNION_JOIN): likewise.
12101         (SQL_SRVC_DEFAULT): likewise.
12102         (SQL_SRVC_NULL): likewise.
12103         (SQL_SRVC_ROW_SUBQUERY): likewise.
12104         (SQL_SRVC_VALUE_EXPRESSION): likewise.
12105         (SQL_SSF_CONVERT): likewise.
12106         (SQL_SSF_LOWER): likewise.
12107         (SQL_SSF_SUBSTRING): likewise.
12108         (SQL_SSF_TRANSLATE): likewise.
12109         (SQL_SSF_TRIM_BOTH): likewise.
12110         (SQL_SSF_TRIM_LEADING): likewise.
12111         (SQL_SSF_TRIM_TRAILING): likewise.
12112         (SQL_SSF_UPPER): likewise.
12113         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
12114         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
12115         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
12116         (SQL_SU_DML_STATEMENTS): likewise.
12117         (SQL_SU_INDEX_DEFINITION): likewise.
12118         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
12119         (SQL_SU_PROCEDURE_INVOCATION): likewise.
12120         (SQL_SU_TABLE_DEFINITION): likewise.
12121         (SQL_SVE_CASE): likewise.
12122         (SQL_SVE_CAST): likewise.
12123         (SQL_SVE_COALESCE): likewise.
12124         (SQL_SVE_NULLIF): likewise.
12125         (SQL_UB_FIXED): likewise.
12126         (SQL_UB_VARIABLE): likewise.
12127         (SQL_UNION_STATEMENT): likewise.
12128         (SQL_UPDATE_BY_BOOKMARK): likewise.
12129         (SQL_US_UNION): likewise.
12130         (SQL_US_UNION_ALL): likewise.
12131         (SQL_DESC_ROWVER): likewise.
12132         (SQL_GUID): likewise.
12133         (SQL_C_GUID): likewise.
12134         (ODBC_STD): likewise.
12135         (SQLAllocHandle): likewise.
12136         (SQLAllocEnv(p)): likewise.
12137         (SQL_YEAR): likewise.
12138         (SQL_MONTH): likewise.
12139         (SQL_DAY): likewise.
12140         (SQL_HOUR): likewise.
12141         (SQL_MINUTE): likewise.
12142         (SQL_SECOND): likewise.
12143         (SQL_YEAR_TO_MONTH): likewise.
12144         (SQL_DAY_TO_HOUR): likewise.
12145         (SQL_DAY_TO_MINUTE): likewise.
12146         (SQL_DAY_TO_SECOND): likewise.
12147         (SQL_HOUR_TO_MINUTE): likewise.
12148         (SQL_HOUR_TO_SECOND): likewise.
12149         (SQL_MINUTE_TO_SECOND): likewise.
12150         (SQL_ATTR_ANSI_APP): likewise.
12151         (SQL_AA_TRUE): likewise.
12152         (SQL_AA_FALSE): likewise.
12153
12154         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
12155         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
12156         (struct tagSQL_DAY_SECOND): likewise.
12157         (struct tagSQL_INTERVAL_STRUCT): likewise.
12158         (struct tagSQL_NUMERIC_STRUCT): likewise.
12159         (struct tagSQLGUID): add for 0DBC3.50.
12160         (enum SQLINTERVAL): add for ODBC3.x.
12161         (SQLWCHAR): add typedef.
12162         (SQLTCHAR): add typedef, conditional on UNICODE.
12163         (SQLLEN): add typedef for _WIN64, define for _WIN32.
12164         (SQLULEN): likewise.
12165         (SQLROWOFFSET): likewise.
12166         (SQLROWCOUNT): likewise.
12167         (SQLTRANSID): likewise.
12168         (SQLSETPOSIROW): likewise.
12169         (SQLHANDLE): add ODBC3.x typedef.
12170         (SQLHDESC): likewise.
12171         (SQLDATE): likewise.
12172         (SQLDECIMAL): likewise.
12173         (SQLDOUBLE): likewise.
12174         (SQLFLOAT): likewise.
12175         (SQLNUMERIC): likewise.
12176         (SQLREAL): likewise.
12177         (SQLTIME): likewise.
12178         (SQLTIMESTAMP): likewise.
12179         (SQLVARCHAR): likewise.
12180         (SQLBIGINT): likewise.
12181         (SQLUBIGINT): likewise.
12182         (SQL_DATE_STRUCT): likewise.
12183         (SQL_TIME_STRUCT): likewise.
12184         (SQL_TIMESTAMP_STRUCT): likewise.
12185         (ODBCINT64): add ODBC3.x define.
12186
12187         * lib/odbc32.def : regenerate.
12188
12189 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
12190
12191         * Apply Danny Smith patch 102275
12192         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12193         * include/objbase.h: (COM_RIGHTS): Add definition.
12194         (tagSTDMSHLFLAGS): add enumeration.
12195         (CoInitializeEx): Add prototypes.
12196         (CoGetStdMarshalEx): ditto.
12197         (CoCreateInstanceEx): ditto.
12198         (CoInitializeSecurity): ditto.
12199         (CoGetCallContext): ditto.
12200         (CoQueryProxyBlanket): ditto.
12201         (CoSetProxyBlanket): ditto.
12202         (CoCopyProxy): ditto.
12203         (CoQueryClientBlanket): ditto.
12204         (CoImpersonateClient): ditto.
12205         (CoRevertToSelf): ditto.
12206         (CoQueryAuthenticationServices): ditto.
12207         (CoSwitchCallContext): ditto.
12208         (CoGetInstanceFromFile): ditto.
12209         (CoGetInstanceFromIStorage): ditto.
12210         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
12211         (SOLE_AUTHENTICATION_INFO): ditto.
12212         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
12213         (COLE_DEFAULT_PRINCIPAL): Add definition.
12214         (COLE_DEFAULT_AUTHINFO): Ditto.
12215         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
12216         (RPC_PROTSEQ_VECTOR) Fix typo.
12217         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
12218         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
12219         attribute.
12220
12221 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
12222
12223         * lib/msvcp60.def: Apply Danny Smith patch 103321.
12224         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
12225         New file.
12226
12227 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12228
12229         * include/winnt.h: Add PTOKEN_USER.
12230
12231 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12232
12233         * include/sqlucode.h: Apply Danny Smith patch 102443
12234         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12235         New file.
12236
12237 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12238
12239         * lib/odbccp32.def: Apply Danny Smith patch 102442
12240         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12241         New file.
12242
12243 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12244
12245         * include/odbcinst.h: Apply Danny Smith patch 102441
12246         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12247         New file.
12248
12249 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12250
12251         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12252
12253 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12254
12255         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12256
12257 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12258
12259         * lib/Makefile.in: Install headers and libraries in tooldir.
12260
12261 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12262
12263         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12264         SORT_STRINGSORT: ditto.
12265         CMAP*: ditto.
12266         CTRY_*: add new defines.
12267         LGRPID_*: ditto.
12268         LCMAP*: change defines to hex notation.
12269         CALID: change from ULONG to DWORD.
12270         CALTYPE: ditto.
12271         _cpinfoex[AW]: add structure.
12272         FoldString: correct Unicode mappings.
12273         GetCPInfoEx[AW]: add prototypes.
12274         EnumCalendarInfoEx[AW]: ditto.
12275         EnumDateFormatsEx[AW]: ditto.
12276         EnumSystemLanguageGroups[AW]: ditto.
12277         EnumLanguageGroupLocales[AW]: ditto.
12278         EnumUILanguages[AW]: ditto.
12279         GetSystemDefaultUILanguage[AW]: ditto.
12280         GetUserDefaultUILanguage[AW]: ditto.
12281         IsValidLanguageGroup[AW]: ditto.
12282         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12283         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12284         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12285         UILANGUAGE_ENUMPROC[AW]: ditto
12286         DATEFMT_ENUMPROCEX[AW]: ditto
12287         LPCURRENCYFMT[AW]: add structure pointer typedef
12288         LPNUMBERFMT[AW]: ditto
12289
12290 2000-12-02  Matt Hargett  <matt@use.net>
12291
12292         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12293         possible return code for the SetFilePointer() win32 API call.
12294
12295 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12296
12297         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12298
12299 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12300
12301         * Makefile.in: increment VERSION.
12302         (dist:) Rename to srcdist.  Create new dist target to call
12303         srcdist and bindist targets.
12304         (srcdist:) New target.
12305         (clean-top:) add call to mostlyclean-top and add rm of distribution
12306         tarballs.
12307         * lib/Makefile.in: (uninstall:) modify to remove files from the
12308         new w32api subdirectory and to remove w32api subdirectory.
12309         (xuninstall:) Ditto.
12310         TODO: Add a task to redo the clean targets of Makefile.in
12311
12312 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12313
12314         * lib/Makefile.in: Install header files in w32api subdirectory.
12315
12316 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12317
12318         * CONTRIBUTIONS: New file.
12319         * README: Change the maintained by header.
12320         * TODO: Add a note about checking the TODO.
12321
12322 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12323
12324         * Merge in accepted changes from
12325         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12326         * include/basetyps.h: add comment for GUID_DEFINED
12327         * include/lm.h: add includes for lmerr.h and lmserver.h
12328         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12329         * include/lmerr.h:  add error codes
12330         * include/lmserver.h: replace LPTSTR with LPWSTR,
12331         LPTCSTR with LPWCSTR in structures and prototypes
12332         * include/lmshare.h: ditto
12333         * include/lmuse.h: ditto
12334         * include/lmstats.h: ditto
12335         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12336         * include/winbase.h: change first argument of CommConfigDialog to const
12337         * include/windowsx.h: add macros  defining FAR versions of
12338         mem and string functions for porting from Win16 code
12339         * include/winioctl.h:  added IOCTL_STORAGE defines
12340         * include/winnetwk.h:  added WNNC_NET flags
12341         * include/winnt.h: add include of <basetsd.h>;
12342         add structs; add pointer typedefs  for TOKEN structs
12343         * include/winsock.h: add guard around BSD-ish typedefs
12344         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12345         * include/basetsd.h: new file
12346         * include/raserror.h: ditto
12347         * include/rassapi.h: ditto
12348         * include/ras.h: ditto
12349         comment from Earnie: replaced original ras.h contribution with Danny's
12350         contribution as it is more complete.
12351         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12352
12353 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12354
12355         * Makefile.in: increment VERSION.  Change tar file name for dist and
12356         bindist targets to be more standard.
12357         * config.guess: Update with the currently published file.
12358         * config.sub: ditto.
12359         * configure.in: Use value of build_alias instead of testing for
12360         directory names to set BUILDENV.
12361         * configure: ditto.
12362         * lib/Makefile.in: Change the name of the targets install,
12363         install-headers and install-libraries to xinstall, xinstall-headers
12364         and xinstall-libraries for system target specified installation.
12365         Recreate targets install, install-headers and install-libraries for
12366         exec-prefix specified installation.  Ditto for the uninstall targets of
12367         the same name.
12368
12369 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12370
12371         * include/iprtrmib.h: Further layout changes according to standard.
12372         * include/iptypes.h: Ditto.
12373         * include/ntdef.h: Ditto.
12374         * include/ntsecapi.h: Ditto.
12375         * include/subauth.h: Ditto.
12376
12377 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12378
12379         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12380
12381 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12382
12383         * include/ntsecapi.h: New file.
12384         * include/subauth.h: Ditto.
12385         * include/ipexport.h: Fix global header define not to contain
12386         trailing underscore. Change layout according to standard.
12387         * include/iphlpapi.h: Ditto.
12388         * include/ipifcons.h: Ditto.
12389         * include/iprtrmib.h: Ditto.
12390         * include/iptypes.h: Ditto.
12391         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12392         of inclusion of ntsecapi.h and subauth.h.
12393         * lib/secur32.def: New stub for secur32.dll.
12394
12395 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12396
12397         * include/ras.h: New file.
12398         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12399         RasEnumDevicesW.
12400
12401 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12402
12403         * include/ntdef.h: Add define for NTAPI.
12404
12405 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12406
12407         * include/ipexport.h: Add missing `extern "C"' directives.
12408         * include/iphlpapi.h: Ditto.
12409         * include/iprtrmib.h: Ditto.
12410         * include/iptypes.h: Ditto.
12411
12412 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12413
12414         * include/ipifcons.h: New header file.
12415         * include/iprtrmib.h: Move operational states to ipifcons.h.
12416         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12417         declaration.
12418
12419 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12420
12421         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12422
12423 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12424
12425         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12426         * include/iptypes.h: New header file.
12427         * include/ipexport.h: Ditto.
12428         * include/iphlpapi.h: Ditto.
12429         * include/iprtrmib.h: Ditto.
12430
12431 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12432
12433         * include/ntdef.h: New file.
12434
12435 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12436
12437         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12438         to TOKEN_INFORMATION_CLASS type.
12439         Add QUOTA_LIMITS type.
12440
12441 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12442
12443         * include/userenv.h: New header file.
12444         * lib/userenv.def: New stub for userenv.dll.
12445
12446 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12447
12448         * include/winuser.h: Correct PCWPSTRUCT typo.
12449         (discovered by Axel Riese)
12450
12451 2000-07-27  DJ Delorie  <dj@redhat.com>
12452
12453         * include/windows.h: optimize non-inclusion of repeat headers
12454
12455 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12456
12457         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12458         LPTOKEN_SOURCE.
12459
12460 2000-07-11  DJ Delorie  <dj@cygnus.com>
12461
12462         * include/shlobj.h: add CSIDL_COMMON_*
12463
12464 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12465
12466         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12467         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12468         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12469         FILE_FLAG_OPEN_NO_RECALL.
12470         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12471         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12472         * winnt.h: Add typedef for GUID.
12473         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12474         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12475         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12476         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12477         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12478         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12479         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12480         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12481         * lib/psapi.def: New file.
12482
12483 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12484
12485         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12486         previously defined.
12487         * windef.h : Ditto.
12488
12489 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12490
12491         * include/winnt.h: Add some missing defines related to locale
12492         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12493
12494 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12495
12496         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12497
12498 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12499
12500         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12501
12502 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12503
12504         * include/wininet.h: Add another "INTERNET_OPTIONS".
12505
12506 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12507
12508         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12509
12510 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12511
12512         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12513         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12514         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12515         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12516
12517 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12518
12519         * include/winbase.h: Change first argument of ENUMRES* types to
12520         coincide with Microsoft usage.
12521
12522 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12523
12524         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12525
12526 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12527
12528         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12529         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12530         * include/winnt.h (SEC_*): Add macros.
12531         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12532         * include/ole.h: Workaround for C++ parser bug.
12533         * include/rpcdcep.h: Likewise.
12534         * include/winsock.h: Likewise.
12535
12536 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12537
12538         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12539
12540 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12541
12542         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12543         * include/wtypes.h (PBLOB, LPBLOB): Define.
12544         * include/winsock2.h: Much more complete version.
12545         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12546
12547         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12548         * include/winsock.h (FD_CLR): Add missing ')'.
12549         (timercmp): Fix macro to handle all 6 comparison operators.
12550         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12551         (AF_MAX): Update.
12552         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12553
12554         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12555         namespace pollution.
12556         * include/rpcndr.h: Likewise.
12557         * include/winnt.h: Likewise.
12558         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12559         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12560         * lib/ole32.def: Add missing exports.
12561         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12562         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12563         (NT_TIB): Define.
12564         * include/tlhelp32.h: New file.
12565
12566 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12567
12568         * include/rapi.h: New file.
12569         * lib/rapi.def: New file.
12570
12571 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12572
12573         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12574
12575 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12576
12577         * Snapshot 2000-02-03.
12578
12579 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12580
12581         * include/winnt.h: Add ARM support.
12582
12583 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12584
12585         From Greg Primes <gregory.l.priem@intel.com>:
12586         * include/oaidl.h (DESCKIND): Define macro.
12587         (ITypeComp): Define interface.
12588         (ITypeComp): Likewise.
12589         * rpcndr.h (DECLSPEC_UUID): Define macro.
12590         (MIDL_INTERFACE): Likewise.
12591
12592         * include/psapi.h: New file.
12593         * include/imagehlp.h: New file.
12594         * lib/imagehlp.def: New file.
12595
12596         * include/oaidl.h (tagVARIANT): Update fields.
12597
12598         From Craig Lanning <CraigL@DyCon.com>:
12599         * include/commctrl.h: Add some TCS_* macros.
12600         * include/winnls.h (IsValidLocale): Add prototype.
12601
12602 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12603
12604         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12605         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12606         * include/objbase.h: Likewise.
12607         * include/objidl.h: Likewise.
12608         * include/ocidl.h: New file.
12609         * include/oleauto.h: Likewise.
12610         * include/wtypes.h: Likewise.
12611         * lib/oleaut32.def: Likewise.
12612
12613         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12614         Thanks to "Jon Leichter" <jon@symas.com>.
12615         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12616         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12617         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12618         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12619         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12620         Dorsselaer" <frans@bia-bv.demon.nl>.
12621         * include/httpext.h: New file. Thanks to Jan Nijtmans
12622         <j.nijtmans@chello.nl>.
12623         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12624         redefinition of LPCWAVEFORMATEX in DirectX headers.
12625         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12626         <krzych00@priv7.onet.pl>.
12627         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12628         * include/windef.h (HRESULT): Guard definition to avoid
12629         redefinition in DirectX headers.
12630         * include/winnt.h: Add target macros from windows.h.
12631         * include/windows.h: Update synch comment for target macros.
12632         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12633         (_ANONYMOUS_UNION): Likewise.
12634         * include/wingdi.h (AbortPrinter): Move from here ...
12635         * include/winspool.h (AbortPrinter): to here and fix linkage.
12636         (MONITOR_INFO_2{A,W}): Define.
12637         * include/winsock.h (htons): Fix argument.
12638         (htonl): Likewise.
12639         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12640         (GROUP): Define.
12641         (GUID): Define conditionally.
12642         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12643         (WSASocket*): Declare.
12644         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12645
12646         * lib/dsetup.def: Remove leading underscore.
12647         * lib/dsound.def: Likewise.
12648         * lib/ws2_32.def: Likewise.
12649
12650 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12651
12652         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12653         handles.
12654
12655         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12656         * lib/dinput.c: Include windows.h for GCC.
12657         * lib/dxguid.c: Likewise.
12658         (INITGUID): Define macro.
12659
12660         * include/objidl.h (ISequentialStream): Define interface.
12661         (IStream): Derive from ISequentialStream.
12662
12663         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12664         Clone}): Mark as PURE.
12665         (IDataObject::EnumDAdvise): Likewise.
12666         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12667         (IViewObject::Unfreeze): Likewise.
12668         (IViewObject2::Unfreeze): Likewise.
12669
12670         * include/objidl.h: Add various IID_ declarations.
12671         * include/olectl.h: Likewise.
12672         * include/oleidl.h: Likewise.
12673
12674 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12675
12676         * Snapshot 1999-12-21.
12677
12678         * include/winbase.h (CancelIO): Rename to CancelIo.
12679         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12680         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12681
12682         * Merge with winsup-19991218.
12683         * include/winnt.h: Add defines for W2K ACL control flags.
12684
12685         * Merge with Anders Norlander's 19991130 snapshot.
12686
12687         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12688         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12689
12690         Patch from Harold Weissfield
12691         * include/shellapi.h: Added some ABN_* defines.
12692
12693         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12694         * lib/comctl32.def (_TrackMouseEvent): Import.
12695         * include/winuser.h: Misc. fixes from Sang Cho
12696         <sangcho@alpha94.chongju.ac.kr>.
12697         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12698         value of _WIN32_WINNT.
12699         * include/winuser.h: Reorganize SM_* defines in numerical order.
12700
12701 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12702
12703         * include/windef.h: Make RECTL a distinct type from RECT.
12704         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12705         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12706         (COMPAREITEMSTRUCT): Fix fields.
12707         (SERIALKEYSA): Likewise.
12708         (SERIALKEYSW): Likewise..
12709         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12710         (WIN32_FIND_DATAA): Likewise.
12711         (WIN32_FIND_DATAW): Likewise.
12712         * include/commdlg.h (SNDMSG): Define.
12713         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12714         (SO_CONNECT_TIME): Likewise.
12715         (AcceptEx): Declare.
12716         (GetAcceptExSockaddrs): Likewise.
12717         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12718         * include/winspool.h: Add RC_INVOKED guard.
12719         * lib/wsock32.def (AcceptEx@32): Export.
12720         (GetAcceptExSockaddrs@32): Likewise.
12721
12722 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12723
12724         * Snapshot 1999-11-18.
12725
12726         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12727         Octopod C++ IDE (and MSVC compatibility).
12728         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12729         * include/shellapi.h (ShellAbout*): Fix typo.
12730         * wingdi.h (FW_ULTRABOLD): Likewise.
12731         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12732         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12733         Add packing directives for various structures. All structure
12734         sizes now conform to MSVC.
12735
12736 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12737
12738         Released 1999-11-07.
12739
12740 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12741
12742         * include/winsock2.h: New file. Mostly a stub for now.
12743         * include/winbase.h (DllMain): Delete prototype.
12744         * include/commctrl.h (Header_SetItem): Fix macro.
12745         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12746         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12747         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12748
12749         Merge in changes from wxWindows.
12750         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12751         * include/oaidl.h (DISPID_*): Add macros.
12752         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12753         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12754         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12755         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12756
12757         Merge in changes from Octopod C++ IDE group.
12758         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12759         (Header_InsertItem): Fix macro.
12760         * include/oaidl.h (IID_IDispatch): Declare.
12761         (IID_ISupportErrorInfo): Likewise.
12762         (IDispatch): Rename Invoked to Invoke.
12763         * include/objidl.h (IPersist): Fix GetClassID.
12764         * include/oleauto.h (VectorFromBstr): Declare.
12765         (BstrFromVector): Likewise.
12766         * include/olectl.h (OLEMISC_*): Update.
12767         * include/olectlid.h (IID_IDispatch): Declare.
12768         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12769         (IOleInPlaceFrame): Fix.
12770         (ISupportErrorInfo): Define.
12771         (IErrorInfo): Define.
12772         * include/winuser.h (SIF_TRACKPOS): Define.
12773
12774 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12775
12776         Fix Merge errors:
12777         * include/winnt.h (PSID): Uncomment definition.
12778         (PISID): Rename from PSID.
12779         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12780         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12781
12782         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12783         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12784         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12785         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12786         include/shellapi.h, include/winbase.h, include/wingdi.h,
12787         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12788
12789 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12790
12791         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12792         Marius Kjeldahl <kjeldahl@hotmail.com>.
12793
12794 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12795
12796         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12797         (ERROR_SEVERITY_*): Likewise.
12798
12799 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12800
12801         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12802         (DllMain): Fix prototype.
12803
12804 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12805
12806         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12807         (cderr.h): Don't include.
12808         * include/winuser.h: Fix macro definitions.
12809
12810 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12811
12812         Merge with winsup 1999-07-29:
12813         * include/wincon.h (MOUSE_WHEELED): Define.
12814         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12815         (SECURITY_DESCRIPTOR): Add struct type.
12816         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12817         is equal to PVOID in the Platform SDK! So don't depend on accessing
12818         members through ->.
12819
12820 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12821
12822         * lib/Makefile.in (install-headers): Don't @ commands.
12823         (install-libraries): Ditto.
12824
12825 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12826
12827         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12828
12829 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12830
12831         Patch from Mumit Khan:
12832         * include/windows.h: Fix typo in winsock.h include guard and add
12833         _UWIN to the list.
12834         * include/winnt.h (__int64): Undefine first.
12835         (struct _SID): Declare.
12836
12837 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12838
12839         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12840
12841 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12842
12843         Patch from Mumit Khan:
12844         * Makefile.in: Do the right thing when cross-compiling.
12845         * include/windef.h: Don't define _export and __export if already
12846         defined.
12847
12848 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12849
12850         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12851         (DECLARE_INTERFACE_): Ditto.
12852
12853 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12854
12855         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12856
12857         Reported by Brad Porter
12858         * include/wingdi.h (FW_ULTRALIGHT): Add.
12859         (FW_DEMIBOLD): Add.
12860         (FW_ULTRABOLD): Add.
12861         (FW_BLACK): Add.
12862         (JOHAB_CHARSET): Add.
12863         (VIETNAMESE_CHARSET): Add.
12864
12865
12866 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12867
12868         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12869         * lib/Makefile.in (Makefile): Regenerate.
12870         * include/pshpack[1248].h: New files, if a program would use any of
12871         them.
12872         * include/poppack.h: Ditto.
12873         * include/windef.h (_WIN32_WINNT): Define
12874         * include/windows.h: Remove DUMMYUNIONNAME[45].
12875         * include/windows.h: Correctly define _M_IX86 to reflect the target
12876         processor.
12877         * include/windows.h: Add preliminary support for other architectures.
12878         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12879         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12880         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12881         issue with LARGE_INTEGER.
12882         (ANSI_NULL): Define.
12883         (PSZ): Define.
12884         (ACL_REVISION[1234]): Define.
12885         (MIN/MAX_ACL_REVISION): Define.
12886         (PTCHAR): Define.
12887         (LANG_USER_DEFAULT): Define.
12888         (LANG_SYSTEM_DEFAULT): Define.
12889         (LOCALE_NEUTRAL): Define.
12890         (SORTVERSIONFROMLCID): Define.
12891         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12892         (UNREFERENCED_LOCAL_VARIABLE): Define.
12893         (DBG_UNREFERENCED_PARAMETER): Define.
12894         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12895         * lib/mswsock.def: New file. Imports for mswsock.dll.
12896         * include/custcntl.h: New file. Necessary to compile some SDK
12897         samples.
12898         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12899         (WM_MOUSEWHEEL): Define.
12900         (WHEEL_DELTA): Define.
12901         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12902         (WM_NEXTMENU): Define.
12903         (CharNextA): Fix prototype.
12904         (CharNextW): Ditto.
12905
12906 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12907
12908         * include/winsock.h: Enclose in extern "C" if C++, huh?
12909         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12910
12911 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12912
12913         * include/windef.h (NULL): Define only ifndef
12914         (TRUE): Ditto, was previously only defined ifndef FALSE
12915         (PASCAL): Define as _pascal
12916         (__pascal): Define
12917         (WINAPIV): Define
12918         (min,max): Define only ifndef NOMINMAX
12919
12920 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12921
12922         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12923         You must define _WIN32_IE if you want support for it.
12924         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12925
12926 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12927
12928         * include/wincon.h: Add some ButtonState flags and EventFlags.
12929
12930 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12931
12932         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12933         interface define causes mayhem.
12934         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12935         defined.
12936         * include/windows.h: Undefine BOOL if __OBJC__ defined
12937
12938 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12939
12940         * include/winnls.h: Define additional code pages.
12941
12942 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12943
12944         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12945         order, corrected.
12946         (RtlZeroMemory): Use RtlFillMemory
12947
12948 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12949
12950         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12951         to get the correct size when used in some structs.
12952         (ULARGE_INTEGER): Ditto.
12953         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12954         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12955
12956 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12957
12958         * include/wininet.h: Enclose in extern "C" if c++
12959         (INTERNET_BUFFERSA/W): Define struct
12960         * include/wininet.h: Add some HSR_* defines
12961
12962 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12963
12964         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12965         * include/winnt.h (UNALIGNED): Define
12966         * include/windef.h (DECLSPEC_NORETURN): Define
12967
12968         * include/wininet.h (INTERNET_MAX_NAME): Remove
12969         (INTERNET_MAX_SCHEME_LENGTH): Define
12970         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12971         * include/wininet.def: Completely redone, it was losing badly.
12972
12973 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12974
12975         * lib/dplayx.def: Remove '_' prefixes
12976         * lib/shell32.def: Remove imports for IID_ContextMenu
12977
12978 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12979
12980         * Makefile.in (dist): Support dist target
12981         * lib/Makefile.in (dist): Likewise
12982         * lib/Makefile.in (uninstall-headers): Fix command
12983         * Makefile.in (bindist): Target to build a prebuilt dist
12984
12985         * lib/ws2_32.def: Winsock2 implib
12986
12987         * include/largeint.h: New header
12988         * include/largeint.c: Large integer support library
12989         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12990         (EXTRA_OBJS): Add largeint.o
12991
12992         * include/Makefile: Remove
12993         * lib/Makefile: Remove
12994         * Makefile: Remove
12995         * configure.in: New autoconf script
12996         * configure: generated configure script
12997         * Makefile.in: autoconf makefile template
12998         * lib/Makefile.in: Ditto
12999         * include/test.c: mv to lib/test.c
13000         * include/res.rc: mv to lib/res.rc
13001         * include/TODO: mv to .
13002         * include/Notes: mv to ./NOTES
13003
13004 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
13005
13006         * include/zmouse.h (WHEEL_DELTA): Define
13007
13008 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
13009
13010         * include/ddeml.h (HSZPAIR): Declare.
13011         * include/zmouse.h: New file.
13012
13013 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
13014
13015         * lib/d3dim.def: New implib
13016         * lib/d3drm.def: Ditto
13017         * lib/d3dxof.def: Ditto
13018         * lib/ddraw.def: Ditto
13019         * lib/dinput.def: Ditto
13020         * lib/dplayx.def: Ditto
13021         * lib/dsetup.def: Ditto
13022         * lib/dsound.def: Ditto
13023         * lib/dinput.c: Guid library for DirectInput
13024         * lib/dxguid.c: Guid library for DirectX
13025
13026 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
13027
13028         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
13029         by Ron Aaron).
13030         * include/windowsx.h (GET_Y_LPARAM): Also missing
13031         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
13032         by Mumit Khan).
13033
13034 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
13035
13036         * include/scrnsave.h: New header file for screen saver library
13037         * lib/scrnsave.c: New file: screen saver library
13038
13039 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13040
13041         * include/regstr.h: Enclosed all strings in TEXT() macros so it
13042         works well in when UNICODE is defined
13043
13044 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
13045
13046         * include/winuser.h(STYLESTRUCT): New struct
13047         * include/wingdi.h:(GOBJENUMPROC): This function type should
13048         return void.
13049
13050 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13051
13052         * include/basetyps.h (LPGUID): New typedef
13053         * lib/glut.def: Import library defintions for glut.dll
13054         * lib/glu32.def: Ditto for glut32.dll
13055         * include/winnt.h: Fixed handling of wchar_t typedef
13056         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
13057         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
13058
13059 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
13060
13061         * include/winbase.h(AbnormalTermination): Define as FALSE
13062         * include/commctrl.h: Support for new progress bar messages/styles
13063
13064 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
13065
13066         * include/commdlg.h(PageSetupDlg): New define
13067         * include/richedit.h: Missing SCF_* defines
13068         * include/winnt.h: Lots o' defines
13069         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
13070
13071 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
13072
13073         * include/commdlg.h: Removed pack pragma
13074         * lib/comctl32.def(InitCommonControlsEx@4): Added import
13075
13076 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
13077
13078         * Makefile: Set version to 0.1.5
13079         * lib/Makefile (clean): Fix typo
13080
13081         * include/commctrl.h: Removed pack pragma
13082         * include/cpl.h: Likewise
13083         * include/dbt.h: Likewise
13084         * include/dde.h: Likewise
13085         * include/nddeapi.h: Likewise
13086         * include/shellapi.h: Likewise
13087         * include/wincrypt.h: Likewise
13088         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
13089
13090         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
13091         (servent): Likewise
13092         (protoent): Likewise
13093
13094         * include/windows.h: Prevent inclusion of winsock.h if we are
13095         using or compiling cygwin. Define Win32_Winsock to force inclusion.
13096
13097 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
13098
13099         * include/winbase.h (CREATE_FORCEDOS): New define
13100
13101 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
13102
13103         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
13104         (COORD): Likewise
13105         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
13106         * include/windows.h: Added DUMMYUNIONNAME4 and 5
13107         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
13108         (PLUID_AND_ATTRIBUTES_ARRAY): New type
13109
13110         * include/ddeml.h: Removed unnecessary `#pragma pack'
13111         * include/imm.h: Likewise
13112         * include/nddeapi.h: Likewise
13113         * include/nspapi.h: Likewise
13114         * include/regstr.h: Likewise
13115         * include/wincon.h: Likewise
13116         * include/windef.h: Likewise
13117         * include/winioctl.h: Likewise
13118         * include/winnls.h: Likewise
13119         * include/winsvc.h: Likewise
13120         * include/winuser.h: Likewise
13121         * include/winver.h: Likewise
13122         * include/wtypes.h: Likewise
13123
13124 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
13125
13126         * Makefile (VERSION): Set to 0.1.4
13127         * include/basetyps.h: Check for NOCOMOBJECT
13128         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
13129         on comobject attribute.
13130         * lib/kernel32.def: Added a few functions
13131         * include/windef.h (DWORD): Changed back to unsigned long
13132
13133         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
13134         winresrc.h in turn includes the necessary headers. This makes things
13135         much simpler, no need to protect blocks of code in headers that
13136         should not be seen by the resource compiler.
13137
13138 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
13139
13140         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
13141         * include/wincon.h: Added console event type flags
13142         * include/winnt.h (FILE_SHARE_DELETE): Added
13143           (SECURITY_DESCRIPTOR): typedef as DWORD
13144
13145         * include/winuser.h (WM_PENWINFIRST): Fixed typo
13146         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
13147         define u_* types only if _SYS_TYPES_H is not defined.
13148
13149 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
13150
13151         * COPYING.LIB: Deleted
13152         * README: Updated to reflect license changes
13153         * include/shlobj.h: Remove extra comma on some enums
13154         * include/windef.h: Changed DWORD typedef from unsigned long to
13155         unsigned int in order to avoid warnings on bit fields that
13156         use DWORD.
13157         * include/Makefile (test): Compile with all warnings
13158         * include/unknwn.h: Include objfwd.h
13159         * include/winsock.h: Added missing copyright notices.
13160
13161 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
13162
13163         * lib/winmm.def: Corrected LIBRARY statement
13164         * include/mmsystem.h: Define mmioSeek codes if not already defined
13165         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
13166         (CreateStatusWindowW): Likewise
13167
13168         * include/winresrc.h: Include only files necessary instead of windows.h
13169         * include/dde.h: Allow inclusion in resource scripts.
13170         * include/winnt.h: Likewise
13171         * include/commctrl.h: Likewise
13172         * include/prsht.h: Likewise
13173         * README: Updated
13174
13175 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
13176
13177         * include/sqltypes.h (SQLHANDLE): Added this type
13178         (SQLHDESC): Likewise
13179         * include/sql.h (SQLFreeHandle): Added this prototype
13180         (SQLAllocHandle): Likewise
13181
13182 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
13183
13184         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
13185         conflicts with cygwin headers.
13186
13187 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
13188
13189         * Makefile: Changed VERSION to 0.1.3
13190         * Makefile (dist-lib): New target to make import library only
13191         distribution
13192         * Makefile (dist-hdr): New target to make headers only distribution
13193         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
13194         building one single distribution file.
13195         * dist.mak: Deleted
13196
13197         * include/lm.h: New file
13198         * include/lmcons.h: New file
13199         * include/lmalert.h: New file
13200         * include/lmaudit.h: New file
13201         * include/lmconfig.h: New file
13202         * include/lmapibuf.h: New file
13203         * include/lmaccess.h: New file
13204         * include/lmchdev.h: New file
13205         * include/lmremutl.h: New file
13206         * include/lmrepl.h: New file
13207         * include/lmerrlog.h: New file
13208         * include/lmat.h: New file
13209         * include/lmuse.h: New file
13210         * include/lmuseflg.h: New file
13211         * include/lmserver.h: New file
13212         * include/lmerr.h: New file
13213         * include/lmsname.h: New file
13214         * include/lmstats.h: New file
13215         * include/lmsvc.h: New file
13216         * include/lmwksta.h: New file
13217         * include/lmbrowsr.h: New file
13218
13219 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
13220
13221         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
13222         * include/unknwn.h: Added extern declaration for IID_IClassFactory
13223
13224         * include/initguid.h: New file
13225
13226         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13227         int not supported
13228
13229         * include/winnt.h: Added USN
13230         * include/winnt.h: Changed handling of 64 bit int support
13231
13232         * include/windows.h: Added support for BC,LCC and MSVC
13233
13234         * include/windows.h: Changed handling machine architecture defines
13235
13236         * include/olectl.h: New file
13237
13238 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13239
13240         * include/oleidl.h: Added IViewObject and IViewObject2
13241
13242         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13243         IStorage::MoveElement
13244
13245         * include/oledlg.h: New file
13246
13247         * include/winresrc.h: New file
13248
13249         * include/wingdi.h: Added LPDOCINFO
13250
13251         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13252         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13253         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13254         TabCtrl_SetImageList and TabCtrl_GetItemCount
13255         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13256
13257         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13258
13259         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13260         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13261
13262         * include/commdlg.h: Added LPDEVNAMES
13263
13264         * include/windows.h: Include excpt.h
13265
13266         * include/excpt.h: New file. This file just contains some
13267         stubs for SEH that do nothing.
13268
13269         * include/commctrl.h: Added general WM_NOTIFY codes
13270
13271         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13272         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13273         not be in the headers.
13274         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13275         * include/winuser.h: Added old WM_SIZE parameter names so
13276         wxWindows compiles.
13277         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13278         * include/winuser.h: Added LPDLGITEMTEMPLATE
13279         * include/winuser.h: HTCAPTION was missing value
13280         * include/winuser.h: Added WM_ACTIVE flags
13281
13282         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13283         _fxx defines for memmove, memset and memcmp
13284
13285         * include/windef.h: Changed _export and __export to empty defines
13286
13287         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13288         String parameters were not const and ExtractAssociatedIcon takes
13289         a WORD pointer not DWORD pointer as last parameter.
13290
13291         * Makefile: Changed VERSION to 0.1.2
13292
13293         * include/ole2ver.h: New file
13294
13295         * Makefile: Removed all dependencies on GLUT
13296
13297         * include/GL/glut.h: Removed file because of decision to remove
13298         files that are not part of the library.
13299         * lib/glut.def: Likewise
13300         * lib/glut32.def: Likewise
13301
13302         * include/windows.h: Include winperf.h
13303
13304         * include/winperf.h: New file
13305
13306         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13307
13308         * include/winnls.h: Added calendar types
13309         * include/winnls.h: Added country codes
13310
13311 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13312
13313         * include/windef.h: Added PROC and NEARPROC
13314
13315         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13316         * include/wingdi.h: Added OpenGL types and prototypes
13317         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13318         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13319         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13320         * include/wingdi.h: Added truetype character outline types
13321         * include/wingdi.h: Added DEVMODE initialization flags
13322         * include/wingdi.h: Added panose codes
13323         * include/wingdi.h: Added missing character sets
13324         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13325         NONANTIALIASED_QUALITY
13326         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13327         * include/wingdi.h: Added pointer types for EXTLOGPEN
13328         * include/wingdi.h: Added PATTERN type
13329         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13330         * include/wingdi.h: Added new text metric flags
13331         * include/wingdi.h: Added pitch and family flags
13332         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13333         * include/wingdi.h: Added METAHEADER
13334         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13335         * include/wingdi.h: Added TA_MASK
13336         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13337         * include/wingdi.h: Added error codes
13338
13339         * include/winuser.h: Added missing winhelp structures
13340         * include/winuser.h: Added dialog flags/styles/messages
13341         * include/winuser.h: Added EM_SETMARGIN codes
13342         * include/winuser.h: Made it possiblie to use IDI_XX values
13343         in resource files.
13344         * include/winuser.h: Added missing LoadImage load flags
13345         * include/winuser.h: Added missing message box flags
13346         * include/winuser.h: Added ScrollWindow codes
13347         * include/winuser.h: Added DT_WORD_ELLIPSIS
13348         * include/winuser.h: Added drag and drop support
13349         * include/winuser.h: Added WM_MENUCHAR return codes
13350         * include/winuser.h: Added DLGWINDOWEXTRA
13351         * include/winuser.h: Added missing SetWindowPos flags.
13352         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13353         * include/winuser.h: Added IDHOT_xx defines
13354         * include/winuser.h: Added MOD_WIN
13355         * include/winuser.h: Added missing defines and structs for owner draw
13356         controls.
13357         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13358         WPF_SETMINPOSITION
13359         * include/winuser.h: Added DrawAnimatedRects flags
13360         * include/winuser.h: Added WM_PRINT codes
13361         * include/winuser.h: Added CS_IME class style
13362         * include/winuser.h: Added WM_SIZE codes
13363         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13364         * include/winuser.h: Added WM_NCHITTEST return codes
13365         * include/winuser.h: Added WM_SIZING parameters
13366         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13367         * include/winuser.h: Added menu loop codes.
13368         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13369         NF_REQUERY
13370         * include/winuser.h: Added WM_POWER flags
13371         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13372         * include/winuser.h: Added missing message filter codes
13373         * include/winuser.h: Added WM_KEYXX message flags
13374         * include/winuser.h: Added WM_SHOWMESSAGE flags
13375         * include/winuser.h: Added old ShowWindow commands
13376         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13377         structures.
13378
13379         * include/mciavi.h: New file for the MCI AVI driver that for some
13380         reason is not in mmsystem.h.
13381
13382         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13383         * include/winbase.h: Added SECURITY_xx for CreateFile
13384         * include/winbase.h: Added RTS and DTS control values
13385         * include/winbase.h: Fixed SYSTEM_INFO structure
13386         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13387         * include/winbase.h: Added FILE_TYPE_REMOTE
13388         * include/winbase.h: Added modem status flags
13389         * include/winbase.h: Added HINSTANCE_ERROR
13390         * include/winbase.h: Added DefineDosDevice defines
13391         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13392         * include/winbase.h: Added STARTF_XX flags
13393         * include/winbase.h: Fixed typo on _lcreat prototype.
13394         * include/winbase.h: Moved DBG_XX to winnt.h
13395         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13396         winnt.h
13397
13398         * include/unknwn.h: Added extern declaration of IID_IUnknown
13399
13400         * include/windowsx.h: Added hmemcpy.
13401
13402         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13403         * include/winnt.h: Added PACCESS_TOKEN
13404         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13405         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13406         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13407         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13408         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13409         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13410
13411         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13412         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13413         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13414
13415         * include/winsvc.h: Removed conflicting defines which were supposed
13416         to be in winnt.h
13417
13418         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13419         and SERVICE_ERROR_TYPE.
13420
13421         * include/winnt.h: Added SERVICE_XX defines.
13422         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13423         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13424
13425         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13426         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13427         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13428         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13429
13430 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13431
13432         * include/winbase.h: Corrected prototype for CreateProcessA
13433
13434         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13435         driver extensions.
13436
13437         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13438         be LPSHELLFOLDER* not LPSHELLFOLDER.
13439
13440         * include/windows.h: Include commdlg.h
13441
13442         * include/winuser.h: Added MDICREATESTRUCT
13443
13444         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13445         CB_ERRSPACE, and CB_OKAY
13446
13447         * include/wingdi.h: Added LPBITMAPINFOHEADER
13448
13449         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13450         are meaningless.
13451         * include/rpcdce2.h: Likewise.
13452
13453         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13454
13455         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13456         * include/olectlid.h: Likewise
13457         * include/shlguid.h: Likewise
13458
13459         * include/coguid.h: Delete file since it was for 16 bit windows only.
13460
13461         * lib/*.def: Appended .dll to library name where needed.
13462
13463         * include/windef.h: Define _stdcall and __stdcall only if not
13464         previously defined instead of undefining first.
13465
13466         * include/dlgs.h: Put RC_INVOKED around structure defs
13467
13468         * include/intshcut.h: New file
13469         * include/isguids.h: New file
13470
13471         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13472
13473 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13474
13475         * include/winnt.h: Added check if _T is defined before defining it
13476
13477         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13478
13479         * include/dlgs.h: New file
13480
13481         * include/winbase.h: Removed DllEntryPoint define
13482
13483         * include/winbase.h: Added SetupComm prototype
13484
13485         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13486         supported anyway.
13487
13488         * include/basetyps.h: Removed use of COMOBJECT define, instead
13489         DECLARE_INTERFACE directly uses comobject attribute when GCC
13490         is used.
13491
13492         * include/wtypes.h: STGC enum was missing typedef
13493
13494         * include/objidl.h: ADVC enum was missing typedef
13495
13496         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13497         they are nested within the VOID definition.
13498
13499         * include/winbase.h: Added stream ids and attributes
13500
13501         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13502         to an ANYSIZE_ARRAY array.
13503
13504 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13505
13506         * include/windef.h: defined _declspec as __declspec since
13507         some programs (like VWCL) use _declspec instead of __declspec
13508
13509         * include/winnt.h: added COMPRESS_FORMAT defines
13510
13511         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13512
13513         * include/winnt.h: added HEAP_XXXX defines
13514
13515         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13516
13517         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13518         specification.
13519
13520         * include/winnt.h: added NTAPI define
13521
13522 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13523
13524         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13525         instead of CHAR or WCHAR.
13526
13527         * include/winnt.h: added _T define
13528
13529         * include/winnt.h: added test for _TCHAR_DEFINED
13530
13531         * include/winnt.h: included string.h for memory macros
13532
13533         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13534
13535         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13536
13537         * include/prsht.h: added PropSheet_XXX macros
13538
13539
13540 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13541
13542         * include/winspool.h: Changed DeletePrinterProcessor and
13543         DeletePrinterProvidor to DeletePrintXX.
13544
13545         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13546         LOGCOLORSPACEW.
13547
13548         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13549         variants
13550
13551         * include/wingdi.h: Likewise for GetLogColorSpace
13552
13553         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13554
13555         * include/richedit.h: Added missing defines and structures
13556
13557         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13558
13559         * include/winuser.h: Added HWND_DESKTOP
13560
13561 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13562
13563         * Makefile: Include ChangeLog when building source
13564         distribution (srcdist)
13565
13566         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13567         are always defined as STDAPI and STDAPI_
13568
13569         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13570         are always defined as STDAPI and STDAPI_
13571
13572         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13573
13574         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13575
13576         * ChangeLog started