OSDN Git Service

Clean up, following issue [#2262] patch application.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2017-12-20  Keith Marshall  <keith@users.osdn.me>
2
3         Clean up, following issue [#2262] patch application.
4
5         * include/winreg.h: Tidy layout; correct copyright assertion.
6         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
7         [UNICODE] (__AW): Do not use deleted macro; replace it with...
8         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
9         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
10         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
11         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
12         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
13         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
14         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
15         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
16         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
17         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
18         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
19         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
20         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
21         all "4.x" branches specified these incorrectly, dependent on...
22         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
23         "legacy" branch, whence the "5.x" branches are propagated, correctly
24         required an alternative condition which is the equivalent of...
25         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
26
27 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
28
29         Update registry management API, per issue [#2262].
30
31         * include/winreg.h: Merge changes from 4.1-dev branch.
32         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
33         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
34         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
35         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
36         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
37         (RRF_ZEROONFAILURE): New manifest constants; define them.
38         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
39         (RegOverridePredefKey): Add previously omitted function prototypes.
40         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
41         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
42         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
43         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
44         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
45         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
46         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
47         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
48         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
49         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
50         (RegDeleteKeyValueA, RegDeleteKeyValueW)
51         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
52         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
53         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
54         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
55         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
56         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
57         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
58         (RegSetKeyValue): Define, mapping each to its respective function...
59         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
60         [defined UNICODE] (__AW): ...for the UTF-16LE case.
61
62         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
63         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
64         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
65         (RegSaveKeyExW@16): Remove them; relocate them to...
66         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
67         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
68         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
69         (RegSaveKeyExW@16): ...their correct location, here.
70         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
71         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
72         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
73         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
74         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
75         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
76         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
77
78 2017-12-16  Keith Marshall  <keith@users.osdn.me>
79
80         Provide default definition for _WIN32_IE feature test macro.
81
82         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
83         (_WIN32_IE_IE50): ...this default value.
84
85         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
86         a conflicting proposal for the default value.
87
88 2017-12-06  Keith Marshall  <keith@users.osdn.me>
89
90         Prepare and publish MinGW.org WSL-5.0.2 release.
91
92         * All files (wsl-5.0.2-release): Tag assigned.
93
94 2017-11-28  Keith Marshall  <keith@users.osdn.me>
95
96         Make <wsnetbs.h> header effectively self-contained.
97
98         * include/wsnetbs.h: Assert copyright; tidy layout; include
99         "_winsock.h", so making this header effectively self-contained, and
100         thus relieving the user of a responsibility for ensuring that some
101         other appropriate WinSock header has been included first.
102
103 2017-11-28  Keith Marshall  <keith@users.osdn.me>
104
105         Factor <winsock.h> duplicate content out of <winsock2.h>
106
107         * include/winsock2.h: Remove all declarations and definitions which
108         are identically specified in <winsock.h>, but keep them in scope by...
109         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
110         declarations and definitions therefrom, which introduce conflicts.
111         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
112         definitions and declarations.
113
114         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
115         WinSock v1.1 and WinSock v2, the latter of which will override when
116         correctly included by <winsock2.h>
117
118 2017-11-24  Keith Marshall  <keith@users.osdn.me>
119
120         Make <winsock.h> and <winsock2.h> duplicate code congruent.
121
122         * include/winsock.h (SOMAXCONN): Move definition into...
123         [!__INSIDE_MSYS__]: ...this guarded scope.
124
125         * include/winsock2.h: Rearrange as necessary.
126         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
127         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
128         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
129         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
130         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
131         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
132         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
133         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
134         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
135         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
136         [!defined __INSIDE_MSYS__]: ...as this, throughout.
137         (gethostname): Update function prototype, adding...
138         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
139
140         * include/ws2spi.h: Tidy layout; assert copyright.
141         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
142         (LPFD_SET): Delete all type references; use...
143         (fd_set *): ...this instead.
144
145 2017-11-14  Keith Marshall  <keith@users.osdn.me>
146
147         Establish default selection for WinSock API declaration.
148
149         * include/windows.h include/nspapi.h: Include...
150         * include/_winsock.h: ...this new system private header; it selects...
151         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
152         provided by conditional inclusion of <winsock2.h>, otherwise...
153         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
154         as provided by inclusion of <winsock.h>
155
156         * tests/headers.at <_winsock.h>: Add reference.
157
158 2017-11-14  Keith Marshall  <keith@users.osdn.me>
159
160         Update gethostname() declaration; drop Cygwin specificity.
161
162         * include/winsock.h (gethostname): Declare unconditionally; add...
163         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
164         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
165         [!defined __INSIDE_MSYS__]: ...as this, throughout.
166
167 2017-11-09  Keith Marshall  <keith@users.osdn.me>
168
169         Normalize fd_set event macros for <winsock2.h> compatibility.
170
171         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
172         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
173         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
174         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
175         count to a bit flag with value of 1, in each case respectively.
176         [_WINSOCK2_H]: Extend shift count enumeration, to include...
177         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
178         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
179         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
180         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
181         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
182         of 1 greater than the offset of the last defined flag; hence...
183         (FD_ALL_EVENTS): ...derive this mask for all event flags.
184
185 2017-11-09  Keith Marshall  <keith@users.osdn.me>
186
187         Filter potential WinSock v2 conflicts out of <winsock.h>
188
189         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
190         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
191         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
192         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
193         not define any of these; they are not compatible with WinSock v2.
194         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
195         appropiately in <winsock2.h>
196
197 2017-11-09  Keith Marshall  <keith@users.osdn.me>
198
199         Filter out <winsock.h> typedef anomalies.
200
201         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
202         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
203         them as type definitions, but warn of potential conflict with...
204         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
205         function; declare its prototype.
206
207 2017-11-08  Keith Marshall  <keith@users.osdn.me>
208
209         Overhaul WinSock fd_set content management macros.
210
211         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
212         original implementations of each of these macros, redirecting to...
213         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
214         inline functions, respectively; these are more robust, and correct a
215         defect in the original FD_SET macro implementation, whereby duplicate
216         descriptors could be added to an fd_set array, but would not then be
217         removed by the corresponding FD_CLR macro.
218
219         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
220         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
221         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
222         function, which is implemented in each of these libraries.
223
224 2017-11-07  Keith Marshall  <keith@users.osdn.me>
225
226         Identify features which have been deprecated in WinSock v2.
227
228         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
229         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
230         (__MINGW_ATTRIB_DEPRECATED): ...to this.
231
232         * include/winsock.h include/winsock2.h: Qualify...
233         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
234         (WSACancelBlockingCall): ...each of these function prototypes, with...
235         (__WINSOCK2_DEPRECATED): ...this attribute.
236
237 2017-11-07  Keith Marshall  <keith@users.osdn.me>
238
239         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
240
241         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
242         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
243         with preferred convention for system feature test macros.
244
245 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
246
247         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
248
249         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
250         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
251         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
252         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
253         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
254         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
255         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
256         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
257         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
258         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
259         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
260
261         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
262         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
263
264 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
265
266         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
267
268         * include/wtypes.h: Tidy layout; assert copyright.
269         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
270         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
271         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
272         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
273         (__BLOB_T_DEFINED): ...this; do not define...
274         (_WTYPES_H): ...this external guard.
275
276         * include/nspapi.h: Tidy layout; assert copyright.
277         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
278         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
279         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
280         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
281         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
282         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
283         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
284         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
285         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
286         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
287         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
288         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
289         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
290         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
291         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
292         (__AW_ALIAS__): ...this, for definition of each of...
293         (SERVICE_INFO, LPSERVICE_INFO): ...these.
294
295         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
296         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
297         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
298         include nspapi.h selectively, to acquire them.
299
300 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
301
302         Factor <winerror.h> duplicate content out of winsock headers.
303
304         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
305         conditional block, and all of its content; selectively include...
306         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
307         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
308         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
309         define them, to segregate WSA error messages applicable to WinSock v2
310         only, from those applicable to both WinSock v1.1 and WinSock v2.
311         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
312         codes, except WSABASEERR, relative to WSABASEERR itself.
313
314 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
315
316         Factor <sys/time.h> duplicate content out of winsock headers.
317
318         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
319         conditional block, and all its content; include <sys/time.h> instead.
320         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
321         processing this header, such that only selected content from other
322         internally referenced headers is exposed.
323
324 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
325
326         Source BSD non-standard type definitions from mingwrt header.
327
328         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
329         conditional block, and its entire type definition content; include...
330         * include/sys/bsdtypes.h: ...this common file instead; it defines...
331         (u_char, u_int, u_long, u_short): ...these non-standard data types.
332
333 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
334
335         Correct misuse of __INSIDE_MSYS__ feature test.
336
337         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
338         omits "defined" operator; it should be expressed consistently as...
339         [! defined __INSIDE_MSYS__]: ...this; correct it.
340
341 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
342
343         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
344
345         * include/winsock.h: Tidy layout; assert copyright.
346         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
347
348         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
349         sections, which are common with <winsock.h>, are laid out congruently.
350         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
351         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
352         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
353         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
354         [UNICODE]: ...alternative typedefs, and function name aliases...
355         [!UNICODE]: ...versus this case.
356
357 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
358
359         Resolve secondary issue arising from MinGW-Bug [#2350]
360
361         * include/winuser.h (GetTitleBarInfo)
362         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
363         it conflicted with current MSDN documentation, so now falls within...
364         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
365
366 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
367
368         Resolve MinGW-Bug [#2350]
369
370         * include/winuser.h (GetTitleBarInfo): Move prototype after...
371         (PTITLEBARINFO): ...this type definition; it is used as a function
372         argument type, so must be defined beforehand.
373
374 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
375
376         Extend testsuite to cover winsock fd_set macro operations.
377
378         * tests/winsock.at: New file; it implements appropriate tests, and
379         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
380         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
381
382         * tests/testsuite.at.in (winsock.at): Integrate it.
383         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
384         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
385         default list of libraries, or resets the list to this initial default.
386         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
387         library specifications, to be used until subsequently reset.
388
389 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
390
391         Prepare and tag for release of MinGW.org WSL-5.0.1
392
393         * All files (wsl-5.0.1-release): Tag assigned.
394
395 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
396
397         Automate testsuite dependency generation.
398
399         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
400         enumerate all such wildcard matches as prerequisites, instead of...
401         (headers.at): ...this sole explicit dependency.
402
403 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
404
405         Make <winnt.h> header effectively self-contained.
406
407         * include/winnt.h (_WINNT_H): Defer definition unless included via...
408         (windef.h): ...this; include it, to enforce inclusion order, then...
409         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
410
411 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
412
413         Consolidate <winuser.h> version specific conditionals.
414
415         * include/winuser.h: Reorganize file content; group manifest constant
416         definitions into one nested collection of conditional blocks, with one
417         block per Windows version evolution; do likewise for type definitions
418         and function prototypes which are always exposed, and separately...
419         [! defined NOGDI]: ...for those which may be suppressed, when GDI
420         support is not required.
421
422 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
423
424         Make <winuser.h> header effectively self-contained.
425
426         * include/winuser.h (stdarg.h): Include it, in addition to...
427         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
428         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
429
430 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
431
432         Consolidate <wingdi.h> version specific conditionals.
433
434         * include/wingdi.h: Reorganize file content; group manifest constant
435         definitions into a single nested collection of conditional blocks, for
436         those definitions which are common to both Win9x and WinNT, with one
437         block per Windows version evolution, sorting alphabetically within
438         each block; do likewise for additional manifest constant definitions
439         which are specific to WinNT, and also for data type definitions and
440         function prototypes.
441
442 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
443
444         Tidy, and make <wingdi.h> header effectively self-contained.
445
446         * include/wingdi.h: Tidy layout; assert copyright.
447         (windef.h): Include it; this achieves self-containment.
448         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
449         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
450         (__AW_ALIAS__): ...this, when defining each of...
451         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
452         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
453         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
454         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
455         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
456         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
457         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
458         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
459         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
460         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
461         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
462         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
463         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
464         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
465         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
466         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
467         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
468         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
469         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
470         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
471         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
472         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
473         (wglUseFontOutlines, GetGlyphIndices): ...these.
474
475 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
476
477         Declare CONDITION_VARIABLE API, per feature request [#2314]
478
479         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
480         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
481         (InitializeConditionVariable, SleepConditionVariableCS)
482         (SleepConditionVariableSRW, WakeAllConditionVariable)
483         (WakeConditionVariable): ...declare prototypes.
484
485 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
486
487         Declare SRWLOCK API, to support feature request [#2314]
488
489         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
490         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
491         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
492         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
493         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
494         (TryAcquireSRWLockShared): Declare additional prototypes.
495
496 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
497
498         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
499
500         * include/winerror.h: Tidy layout; assert copyright.
501
502         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
503         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
504         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
505         both locations; it permitted inconsistency between the two.
506
507 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
508
509         Consolidate <winbase.h> version specific conditionals.
510
511         * include/winbase.h: Reorganize file content; group manifest constant
512         definitions into one nested collection of conditional blocks, with one
513         block per Windows version evolution, sorting alphabetically within each
514         block; do likewise for data type definitions and function prototypes.
515
516 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
517
518         Tidy, and make <winbase.h> header effectively self-contained.
519
520         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
521         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
522         (__AW_EXTENDED__): ...this; subsequently reimplement...
523         (__AW_ALIAS__): ...this, with original name, now encapsulating...
524         (__AW_SUFFIXED__): ...this.
525
526         * include/dbt.h (__AW_ALIAS__): Replace all references with...
527         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
528         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
529         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
530
531         * include/winbase.h: Tidy layout; assert copyright.
532         (stdarg.h, windef.h): Include them, to achieve self-containment.
533         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
534         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
535         [__AW_ALIAS__]: ...this, to correctly specify each of...
536         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
537         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
538         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
539         [__AW_SUFFIXED__]: ...this, to correctly map each of...
540         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
541         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
542         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
543         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
544         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
545         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
546         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
547         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
548         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
549         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
550         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
551         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
552         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
553         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
554         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
555         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
556         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
557         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
558         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
559         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
560         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
561         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
562         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
563         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
564         (GetPrivateProfileInt, GetPrivateProfileSection)
565         (GetPrivateProfileSectionNames, GetPrivateProfileString)
566         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
567         (GetProfileString, GetShortPathName, GetStartupInfo)
568         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
569         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
570         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
571         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
572         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
573         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
574         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
575         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
576         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
577         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
578         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
579         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
580         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
581         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
582         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
583         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
584         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
585         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
586         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
587         (WritePrivateProfileString, WritePrivateProfileStruct)
588         (WriteProfileSection, WriteProfileString): ...these, and add...
589         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
590         (GetFirmwareEnvironmentVariable): ...these previously missing generic
591         function name aliases.
592
593 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
594
595         Refactor mingwrt and w32api common makefile content.
596
597         * Makefile.in (w32api-srcdist-config-files): Rename it...
598         (w32api-srcdist-common-files): ...as this phoney build rule.
599         (shared_include_file): New macro; define it, and include named file.
600         (configure, config.status, Makefile, config.status.missing, _mingw.h)
601         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
602         out; relocate them to new file in common parent directory...
603         * ../Makefile.comm: ...here.
604
605 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
606
607         Correct a copyright notice update omission.
608
609         * configure.ac: Extend copyright date range to include 2017.  Also
610         clean up superfluous trailing whitespace.
611
612 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
613
614         Fix generated header file dependencies.
615
616         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
617         [VERSION.m4]: ...this; package version changes are no longer made...
618         [configure.ac]: ...here; delete associated prerequisite reference.
619         (distclean-local): Delete them.
620
621 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
622
623         Prepare and tag for release of w32api-5.0 package set.
624
625         * All files (wsl-5.0-release): Tag assigned.
626
627 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
628
629         Implement basic test suite infrastructure.
630
631         * tests: New subdirectory; it hosts...
632         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
633         * tests/headers.at: ...these new files; they implement the basic test
634         suite infrastructure, initially comprising header integrity checks.
635
636         * configure.ac (AC_PROG_CXX): Check it.
637         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
638         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
639         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
640         tests/Makefile.
641
642         * Makefile.in (check test tests): New rules; all are synonymous.
643         (check-recursive): New rule; invoked by each of the preceding three.
644         (w32api-srcdist-testsuite-files): New rule; implement and use it...
645         (w32api-srcdist-files): ...here.
646
647 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
648
649         Add missing constant definition, per issue [#2249].
650
651         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
652
653 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
654
655         Avoid unnecessary duplication of configuration files.
656
657         * Makefile.in (vpath install-sh): Define it; it matches...
658         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
659         rule for creating duplicate file reference links in $top_srcdir.
660         (configure): Add '-I ..' option, when running autoconf.
661         (w32api-srcdist-files): Rename it as...
662         (w32api-srcdist-package-files): ...this; remove dependencies on...
663         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
664         (w32api-srcdist-config-files): ...this new distributable files
665         enumeration goal; add it as one new prerequisite of...
666         (w32api-srcdist-files): ...this repurposed goal; also depends on...
667         (w32api-srcdist-package-files): ...this; populate it using...
668         (SRCDIST_ADD): ...this macro; redefine it accordingly.
669
670 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
671
672         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
673
674         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
675         it was previously transcribed incorrectly, as being equivalent to...
676         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
677         (FILE_DEVICE_DISK): ...this.
678
679 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
680
681         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
682
683         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
684         alternative generic symbol mapping definitions, and typedefs, with...
685         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
686         their respective ANSI and UNICODE specific references.
687
688 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
689
690         Deprecate obsolete <winable.h> and <pbt.h> headers.
691
692         * Makefile.in (%.h.in): Generalize vpath definition.
693         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
694         (w32api_generated_headers, replace_headers, macro_name): New macros.
695         (install-w32api-headers): Add dependency on w32api_dist_headers.
696         (%.h): New static pattern rule; it generates generic dependants of...
697         * include/obsolete.h.in: ...this new template for obsolete headers.
698
699         * include/winable.h include/pbt.h: Delete them; they are obsolete;
700         replace them by install-time generated generic stubs.
701
702 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
703
704         Update <winuser.h> and <dbt.h>; fix issue [#2317].
705
706         * include/winuser.h: Tidy layout; add copyright notice.
707         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
708         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
709         selective inclusion of content from other headers; delete when done.
710         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
711         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
712         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
713         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
714         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
715         them selectively from <dbt.h>, where they are properly defined.
716         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
717         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
718         formerly UINT, which doesn't match 64-bit size required for Win64.
719         (SetTimer): Likewise; also declare similar return type.
720         (WINEVENTPROC): Add missing CALLBACK attribute.
721         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
722
723         * include/w32api.h (__AW_ALIAS__): New macro; define it.
724         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
725
726         * include/dbt.h: Tidy layout; add copyright notice.
727         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
728         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
729         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
730         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
731         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
732         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
733         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
734         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
735         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
736         structure typedef names, and their respectively corresponding...
737         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
738         type names.
739
740 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
741
742         Fix a minor ISO-C++11 conformity issue.
743
744         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
745         by ISO-C++11, between concatenated string literal elements.
746         (GetFiberData, NtCurrentTeb): Likewise.
747
748 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
749
750         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
751
752         * include/ddk/winddk.h: Update per issue [#2307] resolution.
753         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
754
755 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
756
757         Prepare and tag all files for release of w32api-3.18.1
758
759         * configure.ac (AC_INIT): Increment patch level to 3.18.1
760
761 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
762
763         Resolve improper macro expansion issue [#2307].
764
765         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
766         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
767         dependent macro WITHIN the expansion of each of these; hence...
768
769         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
770         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
771         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
772         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
773         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
774         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
775         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
776         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
777         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
778         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
779         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
780         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
781         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
782         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
783         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
784         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
785         ...adjust these dependent macro definitions accordingly.
786
787         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
788         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
789         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
790         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
791         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
792         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
793         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
794         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
795         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
796         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
797
798 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
799
800         Update install-sh to match mingw.org/build-aux package.
801
802         * install-sh: Delete it; use version in parent directory instead,
803         recreating local copy, (as symlink, if supported), on demand.
804
805 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
806
807         Eliminate redundant configuration files.
808
809         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
810         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
811
812         * configure.ac (AC_PROG_LN_S): Add configuration check.
813
814 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
815
816         Discard redundant config.guess and config.sub files.
817
818         * config.guess config.sub: Delete them; they are no longer required.
819         * Makefile.in (SRCDIST_ADD): Remove related references.
820
821 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
822
823         Merge recent legacy branch updates to 5.0-active branch.
824
825         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
826         * include/sdkddkver.h include/setupapi.h include/windows.h
827         * include/winnt.h include/winuser.h include/winver.h
828         * include/wtsapi32.h lib/wtsapi32.def: Updated.
829
830 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
831
832         Prepare and tag all files for release of w32api-3.18.
833
834 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
835
836         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
837
838         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
839         references from $(MAKE) command lines; make passes them implicitly.
840
841 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
842
843         Backport MemoryBarrier() implementation from 4.0-dev branch.
844
845         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
846         Earnie's original inline implementation, but declared 'static' to fix
847         issue [#1661]; it is further modified, to avoid the broken pre-Vista
848         fallback identified by issue [#2131], and to remove references to...
849         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
850         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
851         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
852         back to inline assembly code when necessary.
853
854         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
855         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
856         code, for hosts which do not support the SSE2 'mfence' instruction.
857
858 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
859
860         Merge further W32API updates from Cygwin CVS.
861         Incorporated selected changes from 2012-08-01 to 2012-08-04.
862
863         * include/setupapi.h include/winuser.h include/winver.h
864         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
865
866 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
867
868         Update mapping of GCC to MSVC host identification macros.
869
870         * include/windows.h: Assert copyright; tidy layout.
871         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
872         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
873         [!_WINSVC_H]: Do not explicitly test these here; they are properly
874         managed implicitly, by GCC, when including the associated headers.
875
876         * include/winnt.h: Assert copyright; tidy layout.
877         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
878         (__aligned__, __always_inline__, __selectany__): Prefer these...
879         (aligned, always_inline, selectany): ...to these attribute forms.
880         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
881         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
882         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
883         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
884         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
885         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
886         (_M_IX86): ...also removing this, but relocate it to...
887         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
888         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
889         appropriate.
890
891         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
892         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
893
894 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
895
896         Merge W32API updates, from Cygwin CVS, into legacy branch.
897         Incorporate changes since release of w32api-3.17, until 2012-07-06.
898
899         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
900         2012-04-28 commit to Cygwin CVS.
901
902         * include/gdiplus/gdiplustypes.h include/imagehlp.h
903         * include/routprot.h include/shlwapi.h include/userenv.h
904         * include/winbase.h include/wincon.h include/windef.h
905         * include/winerror.h include/wingdi.h include/winnt.h
906         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
907         match Cygwin CVS state, as of 2012-07-06.
908
909         * include/wincrypt.h: Updated to remove duplicate manifest constant
910         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
911         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
912         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
913         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
914         copies of these further duplicated definitions, identified during
915         the merging operation.
916
917 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
918
919         Synchronize package version management with MinGW Runtime.
920
921         * VERSION.m4: New file; link it to keep in sync with identically named
922         file in top level composite package source directory; it defines...
923         (__VERSION__): ...this new composite package version macro.
924
925         * aclocal.m4: Link it, to keep in sync with identically named files in
926         top level composite source and sibling mingwrt sub-package directories.
927         (__VERSION__): New macro; include VERSION.m4 to define it.
928         (__BUG_REPORT_URL__): New macro; define it.
929
930         * configure.ac (AC_INIT): Assign package version and bug report URL...
931         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
932         automatic inclusion of aclocal.m4
933
934         * Makefile.in (configure): Add dependency on VERSION.m4
935
936 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
937
938         Eliminate redundant <parts/winioctl.h> header.
939
940         * include/parts/winioctl.h: Delete it; distribute its content...
941         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
942         ...among these, separating it into discrete sections based on...
943         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
944         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
945         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
946         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
947
948         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
949         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
950
951 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
952
953         Enforce consistent specification of package version.
954
955         * include/w32api.h: Rename as...
956         * include/w32api.h.in: ...this build-time template file.
957         (__W32API_VERSION): Redefine it, in terms of...
958         (%PACKAGE_VERSION_LONG%): ...this substitution template.
959         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
960         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
961         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
962         (%PACKAGE_VERSION_PATCH%): ...these.
963
964         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
965         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
966         mingwrt/include/_mingw.h.in file.
967
968         * Makefile.in (all-w32api-libs): Add dependency on...
969         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
970         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
971         they apply appropriate substitutions to the renamed template files.
972         (install-w32api-headers): Explicitly add w32api.h
973
974 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
975
976         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
977
978         * include/parts/winioctl.h: New file; it provides infrastructure for
979         sharing of common code between DDK headers and primary <winioctl.h>
980         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
981         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
982         macros; they facilitate more consise expression of factored out IOCTL
983         and FSCTL macros; define them.
984
985         * include/ddk/ntddk.h: Assert copyright; tidy layout.
986         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
987         (_DDK_NTDDK_H): ...this; it provides better indication of location.
988         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
989
990         * include/ddk/winddk.h: Assert copyright; tidy layout.
991         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
992         (_DDK_WINDDK_H): ...this; it provides better indication of location.
993         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
994         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
995         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
996         (METHOD_NEITHER): Redefine as enumeration; factor it out.
997         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
998         (FILE_WRITE_ACCESS): Likewise.
999         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1000         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1001         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1002         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1003         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1004         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1005         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1006         (PPARTITION_INFORMATION_MBR): Likewise.
1007         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1008         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1009         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1010         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1011         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1012         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1013         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1014         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1015         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1016         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1017         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1018         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1019         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1020         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1021         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1022         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1023         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1024         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1025         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1026         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1027         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1028         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1029         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1030         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1031         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1032         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1033         was defined only when including this enumeration from winioctl.h
1034         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1035         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1036         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1037         include parts/winioctl.h
1038
1039         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1040         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1041         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1042         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1043         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1044         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1045         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1046         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1047         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1048         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1049         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1050         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1051         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1052         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1053         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1054
1055         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1056         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1057         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1058         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1059         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1060         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1061         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1062         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1063         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1064         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1065         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1066         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1067         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1068         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1069         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1070         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1071         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1072         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1073         these macros are now defined in parts/winioctl.h; include it.
1074         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1075         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1076         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1077         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1078         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1079         (VALID_NTFT): Redefine as enumeration; factor it out.
1080         (IsRecognizedPartition, IsContainerPartition): Factor out.
1081         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1082         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1083         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1084         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1085         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1086         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1087         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1088         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1089         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1090         (struct _PARTITION_INFORMATION): Change field data types for...
1091         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1092         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1093         with Windows DDK convention, then factor out struct, together with...
1094         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1095         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1096         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1097         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1098         (struct _GET_LENGTH_INFORMATION)
1099         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1100         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1101         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1102         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1103         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1104         (PFORMAT_EX_PARAMETERS): Factor out.
1105         (struct _REASSIGN_BLOCKS): Change field data types for...
1106         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1107         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1108         convention, then factor out the struct definition, together with...
1109         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1110         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1111         (PSET_PARTITION_INFORMATION): Factor out.
1112         (struct _VERIFY_INFORMATION): Change field data type for...
1113         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1114         factor out the entire struct definition, together with...
1115         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1116         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1117         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1118         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1119         (PDISK_GROW_PARTITION): Factor out.
1120
1121         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1122         definitions from Windows DDK headers, by including parts/winioctl.h;
1123         delete duplicate definitions already identified as having been factored
1124         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1125         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1126         UCHAR, resulting in no significant changes, except that...
1127         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1128         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1129         (StorageManagerName): ...these previously missing fields, originally
1130         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1131         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1132
1133 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1134
1135         Windows application module version information API updates.
1136
1137         * include/winver.h: Assert copyright; tidy layout.
1138         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1139         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1140         having both ANSI and UTF-16LE specific alternative implementations.
1141         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1142         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1143         note that both are generic, with ANSI and UTF-16LE implementations,
1144         but the ANSI implementations are missing from MSVCRT.DLL when...
1145         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1146
1147         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1148         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1149
1150 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1151
1152         Revert a failed experimental macro construct.
1153
1154         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1155         code, and doesn't work in the C preprocessor conditional context where
1156         its associated constant definitions are most likely to be required.
1157         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1158         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1159         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1160         now in terms of their preferred equivalents from <sdkddkver.h>
1161
1162 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1163
1164         Code clean-up; fix MinGW-Bug [#2263].
1165
1166         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1167         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1168         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1169
1170         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1171         style comments, using ISO-C conforming style; remove all redundant
1172         parameter names from function prototype declarations, throughout.
1173         (pragma GCC system_header): Remove pointless conditional guard.
1174         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1175         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1176         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1177         alternatives, respectively; they offer improved self-documentation.
1178         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1179         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1180         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1181         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1182         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1183         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1184         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1185         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1186         from their __AW_STRING_A__ equivalent string constant definitions.
1187         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1188         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1189         a hexadecimal expression of the mask value over the former decimal.
1190         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1191         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1192         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1193         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1194         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1195         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1196         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1197         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1198         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1199         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1200         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1201         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1202         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1203         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1204         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1205         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1206         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1207         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1208         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1209         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1210         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1211         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1212         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1213         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1214         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1215         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1216         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1217         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1218         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1219         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1220         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1221         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1222         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1223         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1224         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1225         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1226         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1227         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1228         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1229         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1230         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1231         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1232         express them in hexadecimal, in preference to original decimal form.
1233         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1234         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1235         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1236         a string literal, but was missing delimiting quotes; insert them.
1237         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1238         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1239         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1240         aliases for each of the UNICODE/non-UNICODE cases respectively.
1241         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1242         was declared as type LPTSTR, but should be type LPSTR.
1243         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1244         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1245         type LPSTR, but should be type LPWSTR.
1246         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1247         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1248         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1249
1250 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1251
1252         Correct defect in build system compilation rule.
1253
1254         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1255         source file; it expands to also include prerequisite header files,
1256         which should not appear on the compilation command line.  Rewrite
1257         rule in static pattern format, and use $< instead.
1258
1259 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1260
1261         Build system corrections for GCC build time support.
1262
1263         * configure.ac (AC_PROG_CC): Don't use this; we need...
1264         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1265         building with only a stage 1 partially built GCC installation.
1266
1267         * Makefile.in (install-headers): New make objective; map it to...
1268         (install-w32api-headers): ...this, for which it is a logical alias.
1269
1270 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1271
1272         Overhaul and streamline build system configuration.
1273
1274         * configure.in: Delete obsolete file; replace with...
1275         * configure.ac: New file; rewritten per current autoconf conventions.
1276
1277         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1278         it now processes the entire build without using separate sub-makes.
1279
1280         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1281         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1282
1283 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1284
1285         Remove unused aclocal.m4 configuration file.
1286
1287         * aclocal.m4: Delete it; it provides no content used by this package.
1288
1289 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1290
1291         Adapt platform feature checks to NTDDI_VERSION conventions.
1292
1293         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1294         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1295         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1296         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1297         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1298
1299         * include/w32api.h: Assert copyright; include sdkddkver.h.
1300         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1301         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1302         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1303         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1304         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1305         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1306         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1307         macro definitions by long integer constants, and mark as deprecated.
1308         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1309         mingwrt/include/_mingw.h, whence we similarly relocate...
1310         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1311
1312         * include/windef.h: Assert copyright; include w32api.h, whence we
1313         infer default assignments, per included sdkddkver.h, for each of...
1314         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1315         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1316
1317 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1318
1319         Remove generated configure script from revision control.
1320
1321         * configure: Delete from SCM; maintainer must regenerate it, when
1322         required, as SCM will now ignore it.
1323
1324 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1325
1326         Cosmetic adjustment to match MSDN documentation.
1327
1328         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1329         of parameter #1 to be LPCVOID, in preference to formerly specified,
1330         and functionally equivalent, 'const LPVOID'.
1331
1332 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1333
1334         Correct typos, as identified by issue [#1534].
1335
1336         * include/setupapi.h (SetupCancelTemporary): Should be...
1337         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1338         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1339         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1340         (SetupQueryA, SetupQueryW): ...these respectively to...
1341         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1342         (SetupDiGetWizardage): Misspelled; correct it to...
1343         (SetupDiGetWizardPage): ...this.
1344
1345 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1346
1347         Declare WTSVirtualChannel API functions per issue [#1342].
1348
1349         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1350         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1351         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1352         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1353         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1354
1355         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1356
1357 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1358
1359         Correct MENUITEMINFO structure definition per issue [#1659].
1360
1361         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1362         field was defined as type DWORD; correct it to type ULONG_PTR.
1363
1364 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1365
1366         Extend visibility of winsock definitions when building Cygwin.
1367
1368         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1369         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1370         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1371         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1372         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1373         [__INSIDE_MSYS__]: ...keep them hidden.
1374
1375         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1376         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1377         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1378         [__INSIDE_MSYS__]: ...also keep them hidden.
1379
1380 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1381
1382         Correct version guard for WinXP minimum requirement.
1383
1384         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1385         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1386         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1387         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1388
1389 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1390
1391         Add missing <shobjidl.h> and associated UUID implementation.
1392
1393         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1394         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1395
1396 2012-03-19  Ben Greear  <greear@users.sf.net>
1397
1398         Adjust header file definition order, to fix issue [#1570].
1399
1400         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1401         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1402
1403 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1404
1405         Add missing return value, flagged by 'make test'.
1406
1407         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1408         Return NO_ERROR in virtual definition.
1409
1410 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1411
1412         Remove duplicate definitions, identified by 'make test'.
1413
1414         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1415         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1416         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1417         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1418         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1419         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1420
1421         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1422         correctly defined (per MSDN) in <wincrypt.h>
1423
1424 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1425
1426         Correct misuse of #ifdef, identified by 'make test'.
1427
1428         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1429         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1430
1431 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1432
1433         Replace more incorrectly named manifest constants.
1434
1435         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1436         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1437         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1438         definitions respectively; retain for backward compatibility only.
1439
1440 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1441
1442         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1443
1444         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1445
1446 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1447
1448         Add missing MAPVK manifest constant definitions.
1449
1450         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1451         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1452
1453 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1454
1455         Correct some misspelled manifest constant names.
1456
1457         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1458         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1459         alias to original misspelling, to maintain backward compatibility.
1460         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1461         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1462         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1463         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1464
1465 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1466
1467         Add a missing Win2K sockets IOCTL feature.
1468
1469         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1470
1471 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1472
1473         Fix an incorrectly typed structure member.
1474
1475         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1476         should be LPSTR; correct it.
1477
1478 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1479
1480         Add another missing manifest constant definition.
1481
1482         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1483
1484 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1485
1486         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1487
1488         * include/windef.h (PACKED): Delete macro definition; its name is not
1489         reserved, and may thus conflict with a user defined name; replace it...
1490         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1491         use __attribute__((packed)) directly instead.
1492
1493 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1494
1495         Fix bad typedef, per MinGW-Bug [#1529].
1496
1497         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1498         conform with MSDN reference, as identified by Safety0ff.
1499
1500 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1501
1502         Add a missing manifest constant definition.
1503
1504         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1505
1506 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1507
1508         Win2K and Vista userenv updates.
1509
1510         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1511         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1512         (ExpandEnvironmentStringsForUser): Define function aliases.
1513         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1514         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1515         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1516         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1517         (GetProfileType): Declare function prototypes.
1518         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1519         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1520         New manifest constants; define them.
1521
1522 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1523
1524         * Makefile.in: Increment CYGRELEASE to 2.
1525
1526 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1527
1528         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1529
1530 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1531
1532         * include/w32api.h: Increment version to 3.17.
1533         * Makefile.in: Ditto.
1534
1535 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1536
1537         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1538         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1539         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1540         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1541
1542 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1543
1544         * include/w32api.h: Increment version to 3.16.
1545         * Makefile.in: Ditto.
1546
1547 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1548
1549         * include/commctrl.h (NMTCKEYDOWN): Define.
1550
1551 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1552
1553         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1554         Define.
1555
1556 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1557
1558         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1559         PSAPI_WORKING_SET_INFORMATION): Define.
1560
1561 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1562
1563         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1564
1565 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1566
1567         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1568
1569 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1570
1571         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1572         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1573         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1574
1575 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1576
1577         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1578         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1579         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1580
1581 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1582
1583         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1584         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1585
1586 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1587
1588         * include/winbase.h (__MINGW_EXTENSION): Define.
1589         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1590         struct to correct issue with -std=c99.
1591
1592 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1593
1594         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1595         (TIMER_BASIC_INFORMATION): Define.
1596         (NtQueryTimer): Define.
1597         (ZwQueryTimer): Define.
1598
1599 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1600
1601         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1602
1603 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1604
1605         * include/winbase.h (GetComputerNameEx): Define.
1606
1607 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1608
1609         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1610
1611 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1612
1613         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1614         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1615         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1616         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1617         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1618         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1619         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1620         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1621         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1622
1623 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1624
1625         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1626         Add defines for backward compatibility.
1627
1628 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1629
1630         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1631         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1632         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1633         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1634         EnumResourceTypesW): Ditto.
1635         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1636
1637 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1638
1639         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1640
1641 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1642
1643         * include/bdatypes.h: Add missing semicolons.
1644
1645 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1646
1647         * include/w32api.h: Increment version to 3.15.
1648         * Makefile.in: Ditto.
1649
1650 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1651
1652         * Makefile.in: Update naming convention and compression format (lzma),
1653         leaving existing naming convention and compression format as is for Cygwin.
1654
1655 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1656
1657         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1658         STATE_SYSTEM_PROTECTED): Define.
1659
1660         Thank you to Marcus von Appen for reporting the issue.
1661
1662 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1663
1664         * include/winuser.h (CF_DIBV5): Define.
1665         (CF_MAX): Adjust accordingly.
1666
1667         Thank you to Lenard Lindstrom for reporting the issue.
1668
1669 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1670
1671         * include/sspi.h (QuerySecurityContextToken): Define.
1672         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1673
1674         Thank you to Magnus Hagander for reporting the issue.
1675
1676 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1677
1678         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1679
1680 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1681
1682         * include/shlwapi (ASSOCDATA): Update definition.
1683
1684         Thank you to Frederic Deschamps for reporting the issue.
1685
1686 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1687
1688         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1689         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1690         COPY_FILE_NO_BUFFERING): Define.
1691
1692         Thank you to Roland Schwingel for reporting the issue.
1693
1694 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1695
1696         * include/winuser.h (HHOOK): Move definition from here...
1697         * include/windef.h: ...to here, as per MSDN.
1698
1699         Thank you to Samuel Thibault for reporting the issue.
1700
1701 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1702
1703         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1704         MSDN, change return type to LPCH.
1705         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1706
1707         Thank you to Emmanuel Stapf for reporting the issue.
1708
1709 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1710
1711         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1712         * include/windowsx.h (SNDMSG): Ditto.
1713
1714 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1715
1716         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1717
1718         Thank you to Ozkan Sezer for reporting the issue.
1719
1720 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1721
1722         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1723
1724         Thank you to Chris Oldwood for reporting the issue.
1725
1726 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1727
1728         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1729
1730         Thank you to Rick Walsh for reporting the issue.
1731
1732 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1733
1734         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1735
1736 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1737
1738         * include/winbase.h (OVERLAPPED): Correct definition.
1739
1740 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1741
1742         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1743         definition.
1744
1745         Thank you to Pasi Ruokola for reporting the issue.
1746
1747 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1748
1749         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1750
1751         Thank you to cheznonnon for reporting the issue.
1752
1753 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1754
1755         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1756
1757 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1758
1759         * winnt.h: Fix several SUBLANG ID errors (ref:
1760         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1761         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1762         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1763         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1764         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1765         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1766         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1767         (SUBLANG_LAO_LAO): ... this.
1768         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1769         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1770         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1771         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1772         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1773         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1774         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1775         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1776         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1777         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1778         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1779
1780 2010-08-24  LRN  <lrn1986@gmail.com>
1781
1782         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1783         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1784         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1785         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1786         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1787         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1788         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1789         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1790         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1791         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1792         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1793         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1794         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1795         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1796         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1797         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1798         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1799         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1800         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1801         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1802         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1803         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1804         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1805         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1806         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1807         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1808         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1809         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1810         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1811         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1812         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1813         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1814         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1815         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1816         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1817         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1818         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1819         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1820         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1821         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1822         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1823         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1824         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1825         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1826         WAVE_FORMAT_DTS2): Define.
1827         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1828         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1829         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1830         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1831         Define.
1832
1833 2010-08-23  LRN  <lrn1986@gmail.com>
1834
1835         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1836         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
1837         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
1838         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
1839         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
1840         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
1841         GetFinalPathNameByHandleW): Define.
1842
1843 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1844
1845         * lib/CheckConflicts.sh: New file.
1846
1847 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1848
1849         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
1850         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
1851         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
1852         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
1853         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
1854         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
1855         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
1856         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
1857         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
1858         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
1859         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
1860         conflicting definition.
1861         * lib/th32.def: Remove.
1862         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
1863         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
1864         definition.
1865
1866 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1867
1868         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
1869
1870 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1871
1872         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
1873
1874 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
1875
1876         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
1877         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
1878         * include/ddk/winddk.h: Ditto.
1879
1880 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
1881
1882         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
1883         CreateSymbolicLinkA, CreateSymbolicLink): Define
1884
1885 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1886
1887         * lib/kernel32.def(FatalExit): Correct definiton.
1888
1889 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1890
1891         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
1892         from 2010-07-17 since it breaks several applications.
1893
1894 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1895
1896         * lib/kernel32.def: Regenerate using gendef.
1897
1898 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
1899
1900         * include/commctrl.h (LVIF_GROUPID): Fix definition.
1901
1902 2010-07-20  Michael James  <james.me@gmail.com>
1903
1904         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
1905
1906 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1907
1908         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
1909         definition.
1910         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
1911         NdrMarshSCtxtHdl): Ditto.
1912         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
1913         definition in favour of typedef definition.
1914
1915         Thank you to Yuta Tomino for reporting the issues.
1916
1917 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
1918
1919         * include/gdiplus.h: New file.
1920         * include/gdiplus/gdiplus.h: New file.
1921         * include/gdiplus/gdiplusbase.h: New file.
1922         * include/gdiplus/gdiplusbrush.h: New file.
1923         * include/gdiplus/gdipluscolor.h: New file.
1924         * include/gdiplus/gdipluscolormatrix.h: New file.
1925         * include/gdiplus/gdipluseffects.h: New file.
1926         * include/gdiplus/gdiplusenums.h: New file.
1927         * include/gdiplus/gdiplusflat.h: New file.
1928         * include/gdiplus/gdiplusgpstubs.h: New file.
1929         * include/gdiplus/gdiplusgraphics.h: New file.
1930         * include/gdiplus/gdiplusheaders.h: New file.
1931         * include/gdiplus/gdiplusimageattributes.h: New file.
1932         * include/gdiplus/gdiplusimagecodec.h: New file.
1933         * include/gdiplus/gdiplusimaging.h: New file.
1934         * include/gdiplus/gdiplusimpl.h: New file.
1935         * include/gdiplus/gdiplusinit.h: New file.
1936         * include/gdiplus/gdipluslinecaps.h: New file.
1937         * include/gdiplus/gdiplusmatrix.h: New file.
1938         * include/gdiplus/gdiplusmem.h: New file.
1939         * include/gdiplus/gdiplusmetafile.h: New file.
1940         * include/gdiplus/gdiplusmetaheader.h: New file.
1941         * include/gdiplus/gdipluspath.h: New file.
1942         * include/gdiplus/gdipluspen.h: New file.
1943         * include/gdiplus/gdipluspixelformats.h: New file.
1944         * include/gdiplus/gdiplusstringformat.h: New file.
1945         * include/gdiplus/gdiplustypes.h: New file.
1946         * lib/gdiplus.c: New file containing GDI+ variable definitions
1947         and GUIDs.
1948         * lib/gdiplus.def: New file.
1949         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
1950         add gdiplus.c to SOURCES.
1951         * lib/test.c: Include gdiplus.h.
1952
1953 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
1954
1955         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
1956         GetPerformanceInfo): Define.
1957         * lib/psapi.def (GetPerformanceInfo): Define.
1958         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
1959         CryptEnumProviders): Define.
1960
1961 2010-02-17  LRN  <lrn1986@gmail.com>
1962
1963         * include/shlguid.h (IID_IFolderView): Define.
1964         * include/shlobj.h (IFolderView interface): Define.
1965         * lib/shell32.c (IID_IFolderView): Export.
1966
1967 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1968
1969         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
1970         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
1971
1972 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1973
1974         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
1975
1976 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1977
1978         * include/shlobj.h (SHParseDisplayName): Fix definition.
1979
1980 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1981
1982         * include/w32api.h: Increment version to 3.14.
1983         * Makefile.in: Ditto.
1984
1985 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1986
1987         * include/shlobj.h (SHParseDisplayName): Define.
1988
1989         Thanks to James Roberts-Thomson for the report.
1990
1991 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1992
1993         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
1994
1995         Thanks to Alexander Vassilev for the report.
1996
1997 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1998
1999         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2000
2001         Thanks to Thomas Denk for the report.
2002
2003 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2004
2005         * include/winbase.h (UnmapViewOfFile): Correct definition.
2006
2007         Thanks to Dimitry Sibiryakov for the report.
2008
2009 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2010
2011         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2012
2013 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2014
2015         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2016         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2017
2018 2009-20-10  Michael James  <james.me@gmail.com>
2019
2020         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2021         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2022         >= 0x0501.
2023         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2024         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2025         RemoveWindowSubclass@12): Add exports.
2026         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2027
2028 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2029
2030         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2031         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2032         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2033         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2034         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2035         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2036         RegisterTouchWindow, UnregisterTouchWindow): Define.
2037         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2038         RegisterTouchWindow, UnregisterTouchWindow): Define.
2039
2040 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2041
2042         * include/winver.h (VerQueryValue[AW]): Correct definition.
2043
2044 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2045
2046         * include/shlobj.h (SHARD): Add enum.
2047         (SHARD_PATH): Define based on UNICODE.
2048
2049         Thanks to Jacek Caban for the report.
2050
2051 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2052
2053         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2054
2055         Thanks to Bruno Martinez for the report.
2056
2057 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2058
2059         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2060         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2061         SHGetIconOverlayIndex): Define.
2062
2063         Thanks to Tim Kosse for the report.
2064
2065 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2066
2067         * include/wincon.h (AttachConsole): Correct guard.
2068
2069         Thanks to Alexander Shaduri for the report.
2070
2071 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2072
2073         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2074         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2075
2076 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2077
2078         * include/winerror.h: Fix typos in macro names.
2079
2080 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2081
2082         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2083         definition.
2084
2085 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2086
2087         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2088
2089 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2090
2091         Honor DESTDIR for winsup/mingw and winsup/w32api.
2092         Detect and report error if installation paths are win32
2093         format, but DESTDIR is non-empty.
2094
2095         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2096         when invoking make in subdirs.
2097         * lib/Makefile.in (DESTDIR): Honor per convention.
2098         (need-DESTDIR-compatibility): New macro; define it and a
2099         corresponding rule.
2100         (fail-DESTDIR-compatibility): New dependency goal.
2101         (install-libraries, install-headers, uninstall-libraries,
2102         uninstall-headers): Require need-DESTDIR-compatibility.
2103         * lib/ddk/Makefile.in: Ditto.
2104         * lib/directx/Makefile.in: Ditto.
2105
2106 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2107
2108         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2109         _WIN32_WINNT >= 0x0500.
2110         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2111         WRITE_RESTRICTED): Define.
2112         (IsTokenRestricted): Declare for >= Win 2000.
2113
2114 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2115
2116         * include/wtsapi32.h (WTSQuerySessionInformationA,
2117         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2118         Moved to (_WIN32_WINNT >= 0x0500) guard.
2119         (thanks to Pierre Ossman)
2120
2121 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2122
2123         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2124         IS_SURROGATE_PAIR): Define.
2125
2126 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2127
2128         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2129         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2130         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2131         * include/ddk/ntifs.h: Ditto.
2132         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2133
2134 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2135
2136         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2137         from here...
2138         * lib/gdo32.dll: ...to here.
2139
2140 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2141
2142         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2143         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2144         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2145         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2146         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2147         entry points.
2148
2149 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2150
2151         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2152         WTSEnumerateSessionsA): Add function prototypes.
2153         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2154         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2155         defines dependent on UNICODE setting.
2156
2157 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2158
2159         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2160         and vice versa.
2161         * include/ddk/ntifs.h: Ditto.
2162         * include/ddk/winddk.h: Ditto.
2163         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2164         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2165         in header, but missing in lib.  Omit NT4-only entry points.
2166
2167 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2168
2169         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2170         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2171         * lib/shell32.def (SHGetImageList): Define.
2172
2173 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2174
2175         * winnt.h: Add Vista token security extensions.
2176         (SID_HASH_SIZE): Define.
2177         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2178         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2179         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2180         (SID_HASH_ENTRY): Define.
2181         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2182         (struct _TOKEN_LINKED_TOKEN): Define.
2183         (struct _TOKEN_MANDATORY_LABEL): Define.
2184         (struct _TOKEN_MANDATORY_POLICY): Define.
2185         (struct _TOKEN_ELEVATION): Define.
2186         (struct _TOKEN_ACCESS_INFORMATION): Define.
2187         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2188         information enumeration values.
2189
2190 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2191
2192         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2193         from ddk/ntifs.h.
2194
2195 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2196
2197         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2198
2199 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2200
2201         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2202
2203 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2204
2205         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2206         NtSetEaFile.
2207
2208 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2209
2210         * include/winbase.h (SCS_64BIT_BINARY): Define.
2211
2212 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2213
2214         * include/w32api.h: Increment version to 3.13.
2215         * Makefile.in: Ditto.
2216
2217 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2218
2219         * lib/glut.def: remove.
2220         * lib/glut32.def: ditto.
2221
2222 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2223
2224         * include/winbase.h (PROCESS_DEP_ENABLE,
2225         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2226         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2227         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2228
2229 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2230
2231         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2232
2233 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2234
2235         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2236
2237 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2238
2239         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2240
2241 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2242
2243         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2244         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2245         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2246         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2247         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2248         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2249         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2250         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2251         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2252         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2253         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2254         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2255         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2256         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2257         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2258         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2259         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2260         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2261         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2262         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2263         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2264         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2265         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2266         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2267         (capSendMessage): Don't undef.
2268
2269 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2270
2271         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2272         undefined.
2273
2274 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2275
2276         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2277         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2278         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2279         SUBLANG_ROMANIAN_MOLDOVA): Define.
2280
2281 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2282
2283         * include/shlwapi.h (ASSOCSTR): Update enum.
2284
2285 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2286
2287         * include/w32api.h: Increment version to 3.12.
2288         * Makefile.in: Ditto.
2289
2290 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2291
2292         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2293
2294 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2295
2296         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2297
2298 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2299
2300         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2301         Thanks to Richard Hughes for report.
2302
2303 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2304
2305         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2306         naming standard for Cygwin.
2307
2308 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2309
2310         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2311
2312 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2313
2314         * include/ddk/scsi.h: Define READ_TOC formats.
2315         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2316
2317 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2318
2319         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2320         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2321         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2322         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2323         NdisMCancelTimer): Define.
2324         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2325         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2326         eliminate warnings.
2327         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2328         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2329         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2330         Export.
2331
2332 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2333
2334         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2335         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2336
2337 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2338
2339         * include/ddk/winddk.h (KeRaiseIrql): Define.
2340         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2341
2342 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2343
2344         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2345         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2346         (InterlockedIncrement, InterlockedDecrement): fix warning.
2347         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2348         (KeNumberProcessors): Export.
2349
2350 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2351
2352         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2353         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2354         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2355         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2356         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2357
2358 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2359
2360         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2361
2362         Thanks to Tim Kosse <botg at users dot sf dot net>.
2363
2364 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2365
2366         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2367         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2368         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2369         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2370         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2371         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2372         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2373
2374 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2375
2376         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2377         WTSQuerySessionInformation, WTSFreeMemory): Define.
2378
2379 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2380
2381         * lib/gdi32.def (SetLayout): Export.
2382
2383 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2384
2385         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2386         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2387         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2388         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2389         CertSetCertificateContextProperty, CertCompareCertificateName,
2390         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2391         CryptGetDefaultProviderW and many corresponding macroes): Define.
2392         * lib/crypt32.def (Export the above 11 functions): Export.
2393         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2394         macroes): Define.
2395
2396
2397 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2398
2399         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2400         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2401
2402 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2403
2404         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2405
2406 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2407
2408         * include/lmaccess.h (struct _USER_INFO_4): Define.
2409         (struct _USER_INFO_23): Define.
2410         (struct _GROUP_INFO_3): Define.
2411
2412 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2413
2414         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2415         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2416         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2417         MIB_TCP6TABLE_OWNER_PID): Define.
2418         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2419
2420 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2421
2422         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2423         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2424         of 0x0502.
2425         Bug reported by Thomas Denk.
2426
2427 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2428
2429         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2430         InterlockedCompareExchange, InterlockedExchange,
2431         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2432         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2433         Bug reported by Erik Blake.
2434
2435 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2436
2437         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2438         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2439         Bug reported by Brian Hawley.
2440
2441 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2442
2443         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2444         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2445         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2446         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2447         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2448         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2449         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2450         (DsGetDcNameW, DsGetDcNameA): Declare.
2451         (DsGetDcName): Define.
2452         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2453
2454 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2455
2456         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2457
2458         Thanks to Tim Kosse <botg at users dot sf dot net>.
2459
2460 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2461
2462         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2463
2464         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2465
2466 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2467
2468         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2469         (FILE_SUPPORTS_TRANSACTIONS): Define.
2470
2471 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2472
2473         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2474         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2475
2476 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2477
2478         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2479         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2480         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2481         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2482         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2483         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2484         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2485         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2486         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2487         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2488         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2489         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2490         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2491         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2492         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2493         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2494         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2495         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2496         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2497         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2498         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2499         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2500         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2501         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2502         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2503         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2504         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2505         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2506         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2507         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2508         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2509         capDriverConnect, capDriverDisconnect, capDriverGetName,
2510         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2511         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2512         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2513         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2514         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2515         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2516         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2517         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2518         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2519         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2520         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2521         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2522         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2523         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2524         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2525
2526 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2527
2528         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2529         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2530         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2531         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2532         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2533         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2534         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2535         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2536         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2537         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2538         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2539         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2540         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2541         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2542         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2543         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2544         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2545         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2546         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2547         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2548         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2549         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2550         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2551         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2552         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2553         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2554         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2555         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2556         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2557         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2558         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2559         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2560         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2561         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2562         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2563         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2564         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2565         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2566         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2567         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2568         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2569         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2570         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2571         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2572         *SpUserModeInitializeFn): Define.
2573         * include/sspi.h (SECURITY_STRING): Define.
2574
2575 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2576
2577         * include/specstrings.h: Add more dummy defines.
2578
2579 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2580
2581         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2582         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2583         (SECURITY_MANDATORY_LOW_RID): Define.
2584         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2585         (SECURITY_MANDATORY_HIGH_RID): Define.
2586         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2587         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2588         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2589         (SE_GROUP_INTEGRITY): Define.
2590         (SE_GROUP_INTEGRITY_ENABLED): Define.
2591
2592 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2593
2594         * include/sddl.h (ConvertStringSidToSidA): Declare.
2595         (ConvertStringSidToSidW): Declare.
2596         (ConvertStringSidToSid): Define.
2597
2598 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2599
2600         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2601         and MPR_INTERFACE_3 structure since they are available only in Windows
2602         Server 2008
2603
2604         Thanks to crackedmind  <crackedmind at sf dot net>.
2605
2606 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2607
2608         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2609         definitions.
2610         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2611
2612 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2613
2614         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2615
2616 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2617
2618         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2619         * include/windef.h (IN, OUT, OPTIONAL): Define.
2620
2621 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2622
2623         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2624         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2625         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2626         __out_bcount_opt): Move to specstrings.h.
2627
2628 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2629
2630         * lib/bthprops.def: new file, bluetooth imports.
2631
2632 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2633
2634         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2635         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2636         __out_bcount_opt): Defined additional pseudo-modifiers.
2637
2638 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2639         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2640         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2641         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2642         dwRedialPause.
2643
2644 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2645
2646         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2647         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2648         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2649         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2650         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2651         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2652         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2653         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2654         * include/winuser.h (RegisterPowerSettingNotification,
2655         UnregisterPowerSettingNotification): Add prototypes.
2656         * lib/user32.def: Added imports for the above prototypes.
2657         * lib/Makefile.in: Added build support for power-uuid.c.
2658         * lib/power-uuid.c: New file containing power GUID definitions.
2659
2660 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2661
2662         * include/ras.h (RAS_MaxDnsSuffix): define.
2663
2664 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2665
2666         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2667         Add prototypes.
2668         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2669         Add exports.
2670
2671 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2672
2673         * include/w32api.h: Increment version to 3.11.
2674         * Makefile.in: Ditto.
2675
2676 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2677
2678         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2679         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2680
2681 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2682
2683         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2684
2685 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2686
2687         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2688         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2689
2690 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2691
2692         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2693
2694 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2695
2696         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2697         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2698         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2699         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2700         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2701         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2702         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2703         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2704         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2705         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2706         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2707         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2708         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2709         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2710         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2711         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2712         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2713         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2714         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2715         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2716         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2717         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2718         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2719         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2720         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2721         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2722         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2723         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2724         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2725         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2726         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2727         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2728         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2729         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2730         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2731         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2732         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2733         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2734         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2735         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2736         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2737         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2738         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2739         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2740         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2741         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2742         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2743         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2744         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2745         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2746         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2747         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2748         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2749         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2750         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2751         CryptEncodeObjectEx): define.
2752
2753 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2754
2755         * include/winbase.h (CheckTokenMembership): define.
2756
2757 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2758
2759         * include/rpcndr.h: Missing NdrClientCall2 entry.
2760         * lib/rpcrt4.def: Ditto.
2761
2762 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2763         * lib/scnsave.c: Multi-monitor support.
2764
2765 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2766
2767         * include/w32api.h: Increment version to 3.10.
2768         * Makefile.in: Ditto.
2769
2770 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2771
2772         * include/winbase.h (ReOpenFile): Add prototype.
2773         * lib/kernel32.def (ReOpenFile@16): Add export.
2774
2775 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2776
2777         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2778
2779 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2780
2781         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2782         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2783
2784 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2785
2786         * include/wtypes.h (LPDECIMAL): Define.
2787         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2788
2789 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2790
2791         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2792
2793 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2794
2795         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2796         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2797
2798 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2799
2800         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2801         Define.
2802
2803 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2804
2805         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2806         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2807         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2808         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2809         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2810         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2811         Sync with include/pbt.h.
2812
2813 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2814
2815         [mingw-Bugs-1751518]
2816         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2817         get_URL.
2818
2819         [mingw-Bugs-1751565]
2820         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2821
2822         [mingw-Bugs-1751595]
2823         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2824         methods.
2825
2826         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2827
2828 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2829
2830         [mingw-Bugs-1750898]
2831         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2832         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2833
2834 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2835
2836         [mingw-Bugs-1749305]
2837         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
2838
2839 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
2840
2841         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
2842
2843 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
2844
2845         * include/oaidl.h: Include windows.h and ole2.h,
2846         unless COM_NO_WINDOWS_H.
2847
2848         [mingw-Bugs-1742130]
2849         * include/oaidl.h (struct tagVARIANT): Add union members
2850         LONGLONG  * pllVal and ULONGLONG * pullVal.
2851
2852 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
2853
2854         * include/ws2tcpip.h (s6_addr32): Correct definition.
2855         Thanks to Alfred E. Heggestad <aeh at db dot org>
2856
2857 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2858
2859         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
2860
2861         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
2862         supplying the information.
2863
2864 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2865
2866         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
2867
2868 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2869
2870         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
2871         Vista.
2872
2873 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
2874
2875          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
2876         CRYPTPROTECT_LOCAL_MACHINE): Define.
2877
2878 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
2879
2880         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
2881         Define.
2882
2883 2007-03-30  Brian Dessent  <brian@dessent.net>
2884
2885         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
2886
2887 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2888
2889         * include/w32api.h: Increment version to 3.9.
2890         * Makefile.in: Ditto.
2891
2892 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
2893
2894         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
2895
2896 2007-03-23  Matthew Gregan  <kinetik@flim.org>
2897
2898         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
2899
2900 2007-03-06  Brandon Sneed  <brandon@oqo.com>
2901
2902         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
2903         Added SetupConfigureWmiFromInfSectionW
2904         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
2905
2906         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
2907
2908         * include/winuser.h: Added PBT_APMQUERYSUSPEND
2909         Added PBT_APMQUERYSTANDBY
2910         Added PBT_APMQUERYSUSPENDFAILED
2911         Added PBT_APMQUERYSTANDBYFAILED
2912         Added PBT_APMSUSPEND
2913         Added PBT_APMSTANDBY
2914         Added PBT_APMRESUMECRITICAL
2915         Added PBT_APMRESUMESUSPEND
2916         Added PBT_APMRESUMESTANDBY
2917         Added PBT_APMBATTERYLOW
2918         Added PBT_APMPOWERSTATUSCHANGE
2919         Added PBT_APMOEMEVENT
2920         Added PBT_APMRESUMEAUTOMATIC
2921
2922         * include/wtsapi32.h: New file
2923
2924         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
2925
2926 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2927
2928         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
2929         argument to constant.
2930
2931 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
2932
2933         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
2934         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
2935         Add prototypes.
2936         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
2937
2938 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
2939
2940         * lib/user32.def (InternalGetWindowText): Add stub.
2941
2942 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
2943
2944         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
2945         LANG_BOSNIAN_NEUTRAL): Define.
2946
2947 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
2948
2949         * include/winuser.h: Add guards around TITLEBARINFO and
2950         GetTitleBarInfo().
2951
2952 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
2953
2954         * include/winbase.h (struct _OVERLAPPED): Change type of
2955         Internal, InternalHigh members to ULONG_PTR.
2956         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
2957         (CreateIoCompletionPort): Likewise.
2958         (PostQueuedCompletionStatus): Likewise.
2959         (QueueUserAPC): Likewise.
2960
2961 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
2962
2963         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
2964         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
2965         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
2966         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
2967         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
2968         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
2969         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
2970         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
2971         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
2972         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
2973
2974 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
2975
2976         * Makefile.in: Add aclocal.m4 to source release.
2977
2978 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2979
2980         * include/w32api.h: Increment version to 3.8.
2981         * Makefile.in: Ditto.
2982
2983 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
2984
2985         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
2986         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
2987
2988         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
2989
2990 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
2991
2992         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
2993
2994         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
2995         inline static.
2996         (GetFiberData): Likewise.
2997         * lib/kernel32.c: Remove.
2998         * lib/Makefile.in: Remove reference to kernel32.[co].
2999
3000 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3001
3002         * include/winnt.h (SE_RELABEL_NAME): Define.
3003         (SE_INCREASE_WORKING_SET_NAME): Define.
3004         (SE_TIME_ZONE_NAME): Define.
3005         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3006
3007 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3008
3009         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3010         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3011         SymbolicLinkReparseBuffer substructure.
3012
3013 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3014
3015         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3016
3017 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3018
3019         * lib/Makefile.in: Fix order for 'all' rule.
3020
3021 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3022
3023         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3024
3025 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3026
3027         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3028         mappings.
3029         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3030         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3031
3032 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3033
3034         * include/rpc.h: Add whitespace.
3035         * include/winnt.h (C_ASSERT): Define.
3036
3037 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3038
3039         [mingw-Bugs-1568067]
3040         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3041         * include/wingdi.h: (DM_POSITION): Define.
3042
3043 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3044
3045         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3046         * lib/user32.def: Likewise.
3047
3048 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3049
3050         * lib/Makefile.in: fix typo.
3051         * lib/ddk/Makefile.in: fix typo.
3052         * lib/directx/Makefile.in: fix typo.
3053
3054         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3055         for pointing it out.
3056
3057 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3058
3059         * Makefile.in: Remove files from lib directory with distclean target
3060
3061 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3062
3063         * include/winuser.h (CS_DROPSHADOW): Define.
3064
3065 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3066
3067         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3068         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3069         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3070         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3071
3072         Increase each constant by 1.
3073
3074 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3075
3076         [mingw-Bugs-1553275]
3077         * include/wingdi.h (SetLayout): Add prototype.
3078         (GetLayout): Likewise.
3079
3080 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3081
3082         [mingw-Bugs-1550139]
3083         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3084         Tanks to:  Samit Basu <samitbasu at sf dot net>
3085         (GetRecordInfoFromGuids): Add prototype.
3086
3087 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3088
3089         * include/winbase.h: Add comment about 'missing' SEM flag.
3090
3091 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3092
3093         * configure.in: Substitute with_cross_host in depending files.
3094         * configure: Regenerate.
3095         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3096         Set installation directories accordingly.
3097         * lib/ddk/Makefile.in: Ditto.
3098         * lib/directx/Makefile.in: Ditto.
3099
3100 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3101
3102         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3103         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3104         Bug reported by: <macleone at users dot sf dot net>
3105
3106 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3107
3108         Update some more IMAGE relocation type indicators
3109         to PECOFF v8 (May, 2006) specs.
3110
3111         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3112         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3113         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3114         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3115         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3116         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3117         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3118         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3119         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3120         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3121         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3122         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3123         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3124         IMAGE_REL_SHM_NOMODE): Add defines.
3125
3126         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3127         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3128         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3129         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3130         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3131         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3132         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3133         IMAGE_REL_M32R_TOKEN): Add defines.
3134
3135         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3136
3137 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3138
3139         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3140         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3141         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3142         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3143         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3144         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3145         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3146         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3147         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3148         Add defines.
3149
3150         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3151         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3152         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3153         Add defines.
3154
3155         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3156
3157         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3158         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3159         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3160         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3161         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3162         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3163
3164         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3165
3166         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3167         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3168         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3169         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3170         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3171         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3172         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3173         Add defines.
3174
3175         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3176         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3177         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3178         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3179         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3180         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3181         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3182         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3183         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3184         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3185         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3186         IMAGE_REL_IA64_ADDEND): Add defines.
3187
3188         (IMAGE_SCN_GPREL): Add define.
3189
3190 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3191
3192         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3193         * include/basetyps.h:  Likewise.
3194         (_COM_interface): New define.
3195         (interface): Define to _COM_interface, conditional on !__OBJC__.
3196         Replace 'interface' with '_COM_interface', throughout.
3197         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3198         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3199         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3200         * include/mshtml.h: Likewise.
3201         * include/oaidl.h: Likewise.
3202         * include/objfwd.h: Likewise.
3203         * include/objidl.h: Likewise.
3204         * include/ocidl.h: Likwise.
3205         * include/olectl.h: Likewise.
3206         * include/oleidl.h: Likewise.
3207         * include/shlobj.h: Likewise.
3208         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3209         * include/vfw.h: Likewise.
3210         * include/windows.h. Likewise. Add comment.
3211         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3212         throughout.
3213
3214         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3215         Add test for conflict with '@interface'
3216
3217 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3218
3219         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3220         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3221         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3222         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3223         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3224         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3225         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3226         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3227         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3228         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3229         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3230         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3231         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3232         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3233         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3234         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3235         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3236         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3237         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3238         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3239         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3240         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3241         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3242         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3243         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3244         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3245         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3246         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3247         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3248         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3249         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3250         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3251         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3252         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3253         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3254         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3255         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3256         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3257         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3258         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3259         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3260         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3261         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3262         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3263         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3264         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3265         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3266         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3267         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3268         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3269         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3270         CertDeleteCertificateFromStore): Define.
3271         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3272         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3273         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3274         CertAddCertificateContextToStore, CertCompareCertificate,
3275         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3276         Define.
3277
3278 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3279
3280         * lib/uuid.c: Remove.
3281
3282 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3283
3284         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3285         declarations. They were extracted from the registry with a script.
3286         * lib/devguid.c: Add new file with the implementation of the
3287         missing GUIDs.
3288         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3289
3290 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3291
3292         * include/winuser.h (WM_INPUT): Add missing Raw Input
3293         notification define.
3294         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3295         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3296
3297 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3298
3299         [mingw-Bugs-1525021]
3300         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3301         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3302         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3303         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3304         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3305         (IP_ADAPTER_ADDRESSES): Likewise.
3306
3307 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3308
3309         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3310         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3311         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3312         extras-uuid.c.
3313         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3314         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3315         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3316         * lib/hlguids-uuid.c: State source of CLSIDs.
3317
3318 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3319
3320         * lib/Makefile.in: Added extras-uuid as an object and source.
3321         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3322         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3323         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3324         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3325         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3326         * lib/extras-uuid.c: New file.
3327         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3328         net).
3329
3330 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3331
3332         [mingw-Bugs-1424461]
3333         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3334         throughout.
3335         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3336         _NO_W32_PSEUDO_MODIFIERS.
3337         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3338         throughout.
3339         *include/rpcnsip.h: Likewise.
3340         *include/windef.h: Don't define IN, OUT or OPTIONAL
3341         if _NO_W32_PSEUDO_MODIFIERS.
3342         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3343         throughout.
3344         *include/ddk/cfgmgr32.h: Likewise.
3345         *include/ddk/ddkmapi.h: Likewise.
3346         *include/ddk/hidclass.h: Likewise.
3347         *include/ddk/hidpi.h: Likewise.
3348         *include/ddk/kbdmou.h: Likewise.
3349         *include/ddk/mcd.h: Likewise.
3350         *include/ddk/miniport.h: Likewise.
3351         *include/ddk/minitape.h: Likewise.
3352         *include/ddk/ndis.h: Likewise.
3353         *include/ddk/ndistapi.h: Likewise.
3354         *include/ddk/ndiswan.h: Likewise.
3355         *include/ddk/ntapi.h: Likewise.
3356         *include/ddk/ntdd8042.h: Likewise.
3357         *include/ddk/ntddpcm.h: Likewise.
3358         *include/ddk/ntifs.h: Likewise.
3359         *include/ddk/ntpoapi.h: Likewise.
3360         *include/ddk/parallel.h: Likewise.
3361         *include/ddk/pfhook.h: Likewise.
3362         *include/ddk/scsiwmi.h: Likewise.
3363         *include/ddk/smbus.h: Likewise.
3364         *include/ddk/srb.h: Likewise.
3365         *include/ddk/storport.h: Likewise.
3366         *include/ddk/tdikrnl.h: Likewise.
3367         *include/ddk/upssvc.h: Likewise.
3368         *include/ddk/usbcamdi.h: Likewise.
3369         *include/ddk/usbscan.h: Likewise.
3370         *include/ddk/video.h: Likewise.
3371         *include/ddk/videoagp.h: Likewise.
3372         *include/ddk/win2k.h: Likewise.
3373         *include/ddk/winddi.h: Likewise.
3374         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3375         if _NO_W32_PSEUDO_MODIFIERS.
3376         Comment out IN, OUT and OPTIONAL, throughout.
3377         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3378         throughout.
3379         *include/ddk/ws2san.h: Likewise.
3380
3381 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3382
3383         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3384
3385 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3386
3387         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3388         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3389         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3390         * lib/hlguids-uuid.c: New file.
3391         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3392         net).
3393
3394 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3395
3396         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3397         objects.
3398         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3399         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3400         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3401         IID_IHlinkTarget): Remove.  Moved to new files.
3402         * lib/urlmon-uuid.c: New file.
3403         * lib/hlink-uuid.c: New file.
3404
3405 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3406
3407         * lib/Makefile.in: Added ativscp-uuid as source and object.
3408         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3409         IID_IActiveScriptParse, IID_IActiveScriptSite,
3410         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3411         * lib/ativscp-uuid.c: New file.
3412
3413 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3414
3415         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3416         Remove.  Moved to objidl-uuid.c
3417         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3418         IID_IServerSecurity): Defined.
3419
3420 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3421
3422         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3423         objects.
3424         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3425         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3426         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3427         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3428         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3429         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3430         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3431         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3432         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3433         files.
3434         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3435         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3436         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3437         * lib/cguid-uuid.c: New file.
3438         * lib/olectlid-uuid.c: New file.
3439
3440 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3441
3442         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3443         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3444         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3445         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3446         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3447         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3448         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3449         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3450         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3451         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3452         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3453         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3454         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3455         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3456         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3457         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3458         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3459         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3460         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3461         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3462         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3463         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3464         * lib/comcat-uuid.c: New file.
3465         * lib/docobj-uuid.c: New File.
3466         * lib/exdisp-uuid.c: New file.
3467         * lib/mlang-uuid.c: New file.
3468         * lib/oaidl-uuid.c: New file.
3469         * lib/objidl-uuid.c: New file.
3470         * lib/objsafe-uuid.c: New file.
3471
3472 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3473
3474         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3475         objects.
3476         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3477         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3478         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3479         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3480         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3481         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3482         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3483         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3484         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3485         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3486         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3487         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3488         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3489         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3490         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3491         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3492         * lib/oleidl-uuid.c: New file.
3493         * lib/oleacc-uuid.c: New file.
3494         * lib/ocidl-uuid.c: New file.
3495
3496 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3497
3498         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3499         objects.
3500         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3501         Remove.  Moved to unknwn-uuid and servprov-uuid.
3502         * lib/unknwn-uuid.c: New file.
3503         * lib/servprov-uuid.c: New file.
3504
3505 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3506
3507         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3508         enum.
3509
3510 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3511
3512         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3513
3514 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3515
3516         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3517         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3518         wingdi.h defines.
3519
3520 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3521
3522         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3523         duplicate defines.
3524
3525         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3526         removal.
3527         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3528
3529 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3530
3531         * configure.in: Update to newer autoconf.
3532         (thanks to Steve Ellcey)
3533         * configure: Regenerate.
3534         * aclocal.m4: New file.
3535
3536 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3537
3538         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3539
3540 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3541
3542         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3543         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3544         as macros.
3545         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3546
3547 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3548
3549         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3550         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3551         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3552         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3553         (MprAdminMIBSetTrapInfo): Declare functions.
3554         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3555         (MIB_SERVER_HANDLE): New typedef.
3556         (MprConfigTransportSetInfo): Declare function.
3557         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3558         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3559
3560 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3561
3562         * lib/rtutils.def: New file. Generated on Windows XP.
3563         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3564         * include/rtutils.h: New file.
3565         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3566         Commented out, they're missing from rtutils.def.
3567
3568 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3569
3570         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3571         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3572         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3573         (MprInfoRemoveAll): Declare functions.
3574
3575 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3576
3577         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3578         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3579         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3580         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3581         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3582         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3583         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3584         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3585         (MprConfigServerConnect,MprConfigServerDisconnect)
3586         (MprConfigServerGetInfo,MprConfigServerInstall)
3587         (MprConfigServerRestore,MprConfigTransportCreate)
3588         (MprConfigTransportDelete,MprConfigTransportEnum)
3589         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3590         (MprConfigTransportSetInfo): Declare functions.
3591
3592 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3593
3594         * include/mprapi.h (MprAdminBufferFree)
3595         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3596         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3597         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3598         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3599         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3600         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3601         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3602         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3603         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3604         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3605         (MprAdminInterfaceTransportSetInfo)
3606         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3607         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3608         (MprAdminServerConnect,MprAdminServerDisconnect)
3609         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3610         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3611         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3612
3613 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3614
3615         * include/ipxtfflt.h: New file.
3616
3617 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3618
3619         * include/mprapi.h: Fix header guard. Cleanup.
3620         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3621         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3622         (MprAdminConnectionHangupNotification)
3623         (MprAdminConnectionHangupNotification2)
3624         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3625         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3626         (MprAdminReleaseIpAddress): Declare functions.
3627         * lib/mprapi.def: Regenerate on Windows XP.
3628
3629 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3630
3631         * include/ipifcons.h: Cleanup.
3632         * include/ipxconst.h: Fix header guard.
3633         * include/ipxrtdef.h: include <ipxconst.h>.
3634
3635 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3636
3637         * include/ipxrtdef.h: Cleanup.
3638         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3639         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3640         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3641         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3642         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3643         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3644         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3645         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3646         * include/routprot.h: Cleanup.
3647         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3648         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3649         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3650         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3651         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3652         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3653         * include/fltdefs.h: New file.
3654         * include/ipinfoid.h: New file.
3655
3656 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3657
3658         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3659         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3660         (IAMCertifiedOutputProtection): Add interfaces.
3661         * include/adsprop.h: New file.
3662         * include/cmnquery.h: New file.
3663         * include/dsadmin.h: New file.
3664         * include/dsclient.h: New file.
3665         * include/dsgetdc.h: New file.
3666         * include/dsquery.h: New file.
3667         * include/dsrole.h: New file.
3668         * include/ntdsapi.h: New file.
3669         * include/ntdsbcli.h: New file.
3670         * include/objsel.h: New file.
3671
3672 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3673
3674         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3675         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3676         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3677         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3678         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3679         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3680         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3681         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3682
3683 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3684
3685         * include/qedit.h: New file.
3686         * include/errors.h: Cleanup.
3687
3688 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3689
3690         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3691         avoid dependency on <string.h>.
3692         There's no Win32 equivalent for memcmp:
3693         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3694
3695 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3696
3697         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3698         instead of memset to avoid dependency on <string.h>.
3699         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3700         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3701         (AM_WST_STYLE): Add enums.
3702         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3703         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3704         structures.
3705         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3706         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3707         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3708         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3709         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3710         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3711         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3712         (VFW_E_DVD_NO_RESUME_INFORMATION)
3713         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3714         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3715         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3716         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3717         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3718         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3719         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3720         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3721         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3722         * include/strmif.h: ... to here. New file.
3723         * include/aviriff.h: New file.
3724         * include/bdatypes.h: New file.
3725         * include/control.h: New file.
3726         * include/dvdmedia.h: New file.
3727         * include/il21dec.h: New file.
3728         * include/ks.h: New file.
3729         * include/ksmedia.h: New file.
3730         * include/mmreg.h: New file.
3731         * include/mpegtype.h: New file.
3732         * include/vidcap.h: New file.
3733         * include/vmr9.h: New file.
3734         * include/vptype.h: New file.
3735         * include/xprtdefs.h: New file.
3736
3737 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3738
3739         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3740         Documented as defined on Windows 2000 or later.
3741         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3742         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3743         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3744         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3745         but values unknown, Windows Vista or later.
3746         (CAL_UMALQURA): Cleanup.
3747         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3748         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3749         (CAL_SSHORTESTDAYNAME7): Cleanup.
3750         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3751         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3752
3753 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3754
3755         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3756         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3757         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3758         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3759         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3760         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3761         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3762         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3763         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3764         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3765         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3766         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3767         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3768         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3769         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3770         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3771         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3772         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3773         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3774         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3775         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3776         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3777         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3778         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3779         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3780         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3781         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3782         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3783         (DMDFO_CENTER): Define.
3784         (GetDCBrushColor,GetDCPenColor): Declare.
3785         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3786
3787 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3788
3789         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3790         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3791         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3792         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3793         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3794         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3795         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3796         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3797         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3798         (LANG_DARI,LANG_MALAGASY)
3799         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3800         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3801         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3802         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3803         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3804         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3805         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3806         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3807         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3808         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3809         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3810         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3811         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3812         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3813         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3814         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3815         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3816         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3817         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3818         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3819         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3820         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3821         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3822         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3823         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3824         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3825         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3826         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3827         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3828         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3829         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3830         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3831         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3832         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3833         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3834         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3835         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3836         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
3837         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
3838         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
3839         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
3840         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
3841         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
3842         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
3843         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
3844         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
3845         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3846         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
3847         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
3848         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
3849         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
3850         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
3851         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
3852         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
3853         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
3854         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
3855         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
3856         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
3857         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
3858         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
3859         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
3860         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
3861         (SUBLANG_MARATHI_INDIA): Defined twice by error.
3862
3863 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3864
3865         * lib/directx/Makefile.in: Remove reference to libquartz.a since
3866         it was moved.
3867
3868 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
3869
3870         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
3871         SPI_SETSCREENSAVERUNNING.
3872         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
3873
3874 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3875
3876         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
3877         It had been removed because it's no documented, but Cygwin needs it.
3878
3879 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3880
3881         * include/amvideo.h (IFullScreenVideo): Define.
3882         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
3883         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
3884
3885 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3886
3887         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
3888         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
3889         as available on Windows 98 and better.
3890         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3891         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3892         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
3893
3894 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3895
3896         * include/amvideo.h: New file.
3897         * include/dshow.h: Include <amvideo.h>.
3898
3899 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3900
3901         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
3902         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
3903         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
3904         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
3905         (HWND_BROADCAST): Cleanup.
3906         (HWND_MESSAGE): Windows 2000 only.
3907         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
3908         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
3909         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
3910         (SIF_ALL): Cleanup.
3911         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
3912         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
3913         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
3914         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
3915         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
3916         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
3917         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
3918         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
3919         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
3920         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
3921         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
3922         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3923         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3924         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3925         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3926         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3927         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3928         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
3929         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
3930         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
3931         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
3932         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
3933         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
3934         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
3935         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
3936         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
3937         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
3938         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
3939         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
3940         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
3941         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
3942         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
3943         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
3944         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
3945         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
3946         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
3947         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
3948         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
3949         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
3950         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
3951         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
3952         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
3953         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
3954         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
3955         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
3956         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
3957         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
3958         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
3959         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
3960         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
3961         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
3962         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
3963         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
3964         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
3965         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
3966         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
3967         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
3968         (SPI_SCREENSAVERRUNNING): Removed.
3969         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
3970         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
3971         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
3972         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
3973
3974 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3975
3976         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
3977         (MprAdminGetPDCServer): Add prototype.
3978         (MprAdminSendUserMessage): Add prototype.
3979         (MprAdminUserGetInfo): Add prototype.
3980         (MprAdminUserSetInfo): Add prototype.
3981         * lib/mprapi.def: Add stubs for above functions.
3982
3983 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3984
3985         * lib/directx/quartz.def: Move from here...
3986         * lib/quartz.def: ... to here.
3987
3988 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3989
3990         * include/amaudio.h: New file.
3991         * include/dshow.h: Include <amaudio.h>.
3992
3993 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3994
3995         * include/errors.h: New file.
3996         * include/dshow.h: Include <errors.h>.
3997
3998 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3999
4000         * include/dshow.h: New file.
4001         * include/evcode.h: New file.
4002         * include/audevcod.h: New file.
4003         * include/dvdevcod.h: New file.
4004
4005 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4006
4007         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4008         (MprAdminConnectionClearStats): Add prototype.
4009         (MprAdminConnectionEnum): Add  prototype.
4010         (MprAdminConnectionGetInfo): Add prototype.
4011         (MprAdminConnectionRemoveQuarantine): Add prototype.
4012         (MprAdminPortClearStats): Add prototype.
4013         (MprAdminPortDisconnect): Add prototype.
4014         (MprAdminPortEnum): Add prototype.
4015         (MprAdminPortGetInfo): Add prototype.
4016         (MprAdminPortReset): Add prototype.
4017         * lib/mprapi.def: New file.
4018
4019 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4020
4021         *  include/mprapi.h: #include <lmcons.h>
4022         (MAX_DEVICETYPE_NAME): Add define.
4023         (MAX_PHONE_NUMBER_LEN): Add define.
4024         (ATADDRESSLEN): Add define.
4025         (IPADDRESSLEN): Add define.
4026         (IPXADDRESSLEN): Add define.
4027         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4028         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4029         (RAS_FLAGS_PPP_CONNECTION): Add define.
4030         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4031         (RAS_FLAGS_RAS_CONNECTION): Add define.
4032         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4033         (RASCCPCA_STAC): Add define.
4034         (RASCCPCA_MPPC): Add define.
4035         (PPP_CCP_COMPRESSION): Add define.
4036         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4037         (PPP_CCP_ENCRYPTION40BIT): Add define.
4038         (PPP_CCP_ENCRYPTION128BIT): Add define.
4039         (PPP_CCP_ENCRYPTION56BIT): Add define.
4040         (PPP_CCP_HISTORYLESS): Add define.
4041         (RASPRIV_NoCallback): Add define.
4042         (RASPRIV_AdminSetCallback): Add define.
4043         (RASPRIV_CallerSetCallback): Add define.
4044         (RASPRIV_DialinPrivilege): Add define.
4045         (RASPRIV_CallbackType): Add define.
4046         (RASPRIV2_DialinPolicy): Add define.
4047         (PPP_LCP_PAP): Add define.
4048         (PPP_LCP_SPAP): Add define.
4049         (PPP_LCP_CHAP): Add define.
4050         (PPP_LCP_EAP): Add define.
4051         (PPP_LCP_CHAP_MD5): Add define.
4052         (PPP_LCP_CHAP_MS): Add define.
4053         (PPP_LCP_CHAP_MSV2): Add define.
4054         (PPP_LCP_MULTILINK_FRAMING): Add define.
4055         (enum _RAS_HARDWARE_CONDITION): Add.
4056         (enum _RAS_PORT_CONDITION): Add.
4057         (struct _PPP_ATCP_INFO): Add.
4058         (struct _PPP_ATCP_INFO): Add.
4059         (struct _PPP_IPCP_INFO): Add.
4060         (struct _PPP_IPCP_INFO2): Add.
4061         (struct _PPP_IPXCP_INFO): Add.
4062         (struct _PPP_LCP_INFO): Add.
4063         (struct _PPP_NBFCP_INFO): Add.
4064         (struct _PPP_INFO): Add.
4065         (struct _PPP_INFO_2): Add.
4066         (struct _RAS_CONNECTION_0): Add.
4067         (struct RAS_CONNECTION_1): Add.
4068         (struct _RAS_CONNECTION_2): Add.
4069         (struct RAS_PORT_0): Add.
4070         (struct _RAS_PORT_1): Add.
4071         (struct _RAS_USER_0): Add.
4072         (struct _RAS_USER_1): Add.
4073
4074 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4075
4076         * include/mprapi.h: New file.
4077         * include/routprot.h: New file.
4078         * include/ipxrtdef.h: New file.
4079         * include/ipxconst.h: New file.
4080         * include/stm.h: New file.
4081
4082 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4083
4084         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4085         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4086
4087 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4088
4089         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4090         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4091         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4092         versions.
4093         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4094
4095 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4096
4097         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4098         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4099
4100 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4101
4102         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4103
4104 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4105
4106         * include/basetyps.h (REFFMTID): Define properly.
4107
4108 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4109
4110         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4111         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4112
4113 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4114
4115         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4116         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4117         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4118         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4119         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4120         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4121         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4122         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4123         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4124         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4125         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4126         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4127         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4128         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4129         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4130         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4131         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4132         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4133         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4134         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4135         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4136         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4137         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4138         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4139         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4140         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4141         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4142         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4143         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4144         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4145         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4146         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4147         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4148         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4149         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4150         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4151         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4152         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4153         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4154         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4155         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4156         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4157         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4158         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4159         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4160         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4161         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4162         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4163         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4164         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4165         (IF_OPER_STATUS_OPERATIONAL): Define.
4166         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4167         Add function declaration.
4168         * include/mgm.h: New file.
4169         * lib/rtm.def: New file.
4170         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4171
4172 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4173
4174         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4175         This function cannot be made thread-safe, the API would have to be
4176         changed for that, just like strerror() -> strerror_r() and similar
4177         ISO C or POSIX functions...
4178
4179 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4180
4181         * include/edevdefs.h: New file.
4182
4183 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4184
4185         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4186         Use as guard for the WAVEFORMATEX structure instead of
4187         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4188         _WAVEFORMATEX_ for compatibility.
4189         Thanks to:    Andrew Jones <guln at sf dot net>
4190
4191 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4192
4193         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4194         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4195         Thanks to:    David Golub <david_golub at sf dot net>
4196
4197 2006-04-18  Eric House  <ehouse@eehouse.org>
4198
4199         PocketPC support.
4200         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4201         functions for using aygshell on PocketPC:
4202         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4203         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4204
4205         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4206         command bar API on PocketPC:
4207         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4208         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4209         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4210         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4211         CommandBar_InsertButton, CommandBar_Destroy.
4212
4213         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4214         fields not present on PocketPC.
4215         (GetCurrentThreadId): Conditionally declare as extern function
4216         without dllimport attribute on PocketPC.
4217         (ResetEvent): Likwise.
4218         (SetEvent): Likewise.
4219
4220         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4221         Conditionally declare as extern function without dllimport
4222          attribute on PocketPC.
4223         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4224         declare as extern function without dllimport attribute on PocketPC.
4225
4226 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4227
4228         * lib/test.c: Include icm.h.
4229
4230 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4231
4232         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4233         (CreateColorSpace): Add UNICODE mappings.
4234         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4235         * include/icm.h: New file.
4236         * lib/mscms.def: New file.
4237         * lib/icmui.def: New file.
4238
4239 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4240
4241         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4242         (IMAGE_FILE_MACHINE_AMD64): New define.
4243         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4244         New defines.
4245         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4246         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4247         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4248         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4249         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4250         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4251         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4252         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4253         New defines.
4254         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4255         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4256         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4257         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4258         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4259         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4260         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4261         definitions and typedefs.
4262         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4263         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4264         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4265         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4266         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4267         New structure definition and typedefs.
4268         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4269         Likewise.
4270         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4271
4272 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4273
4274         * lib/test.c: Fix typo in #inlcude.
4275         * include/aclui.h: INTERFACE should not remain
4276         defined at the end of the header.
4277         * include/servprov.h: Ditto.
4278
4279 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4280
4281         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4282
4283 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4284
4285         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4286
4287 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4288
4289         * include/wsahelp.h (system_header): Add pragma.
4290         * include/ws2spi.h (system_header): Add pragma.
4291         * include/rasdlg.h (system_header): Add pragma.
4292         * include/rasdlg.h (_RASDLG_H): Define.
4293         Define instead of _RASDLG_H_, this is the w32api standard.
4294         * include/mlang.h (_MLANG_H): Define.
4295         Define instead of _MLANG_H_, this is the w32api standard.
4296         * include/setupapi.h (_SETUPAPI_H): Define.
4297         Define instead of _SETUPAPI_H_, this is the w32api standard.
4298
4299 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4300
4301         * include/rpcndr.h (boolean): Add typedef.
4302         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4303         * include/rpcndr.h (_RPCNDR_H): Define.
4304         Define in addition to __RPCNDR_H__, this is the w32api standard.
4305
4306 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4307
4308         * include/w32api.h: Increment version to 3.7.
4309         * Makefile.in: Ditto.
4310
4311 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4312
4313         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4314         GET_MODULE_HANDLE_EX_FLAG_PIN,
4315         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4316         Thanks to:    Brandon Sneed <brandon at redf dot net>
4317
4318 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4319
4320         * include/secext.h: Enclose function declarations in extern "C"
4321         if __cplusplus.
4322
4323 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4324
4325         * include/comcat.h: INTERFACE should not remain defined
4326         at the end of the header.
4327         * include/docobj.h: Ditto.
4328         * include/exdisp.h: Ditto.
4329         * include/intshcut.h: Ditto.
4330         * include/mlang.h: Ditto.
4331         * include/mshtml.h: Ditto.
4332         * include/oaidl.h: Ditto.
4333         * include/objidl.h: Ditto.
4334         * include/objsafe.h: Ditto.
4335         * include/ocidl.h: Ditto.
4336         * include/oleacc.h: Ditto.
4337         * include/oledlg.h: Ditto.
4338         * include/oleidl.h: Ditto.
4339         * include/richole.h: Ditto.
4340         * include/shldisp.h: Ditto.
4341         * include/shlobj.h: Ditto.
4342         * include/unknwn.h: Ditto.
4343         * include/vfw.h: Ditto.
4344         Thanks to:    Brandon Sneed <brandon at redf dot net>
4345
4346 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4347
4348         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4349         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4350         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4351
4352 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4353
4354         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4355         here also.
4356
4357 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4358
4359         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4360         We should probably remove PROV_MS_MAIL but I'm keeping it for
4361         now for compatibility reasons.
4362         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4363
4364 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4365
4366         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4367         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4368         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4369
4370 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4371
4372         * include/wingdi.h [WINVER >= 0x0410]
4373         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4374         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4375
4376 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4377
4378         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4379         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4380         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4381         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4382         (L_MAX_URL_LENGTH): Define.
4383         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4384         Thanks to:    Brandon Sneed <brandon at redf dot net>
4385
4386 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4387
4388         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4389
4390 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4391
4392         * include/w32api.h (_W32API_H): Define.
4393         Define in addition to _W32API_H_, this is the w32api standard.
4394
4395 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4396
4397         * include/w32api.h (WindowsVista): Define.
4398
4399 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4400
4401         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4402         on SOCKET_ADDRESS only if winsock2.h has already been included.
4403
4404 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4405
4406         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4407
4408 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4409
4410         * include/iphlpapi.h (GAA_FLAG_*): Define.
4411         (GetAdaptersAddresses): Add function declaration.
4412         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4413         Thanks to:    ross <rossboulet at users dot sf dot net>
4414
4415 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4416
4417         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4418         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4419         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4420         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4421         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4422         SCOPE_LEVEL): Add enums.
4423         (IP_ADAPTER_*): Define.
4424
4425 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4426
4427         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4428         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4429
4430 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4431
4432         * include/objidl.h (PIDSI_*): Define.
4433         (PRSPEC_*): Define.
4434         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4435
4436 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4437
4438         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4439         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4440         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4441         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4442         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4443
4444 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4445
4446         * include/mq.h: New file.
4447         * lib/mqrt.def (MQ*): Define a few missing functions.
4448
4449 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4450
4451         * lib/mqrt.def: New file.
4452         Needs the mq.h file to work properly, working on it.
4453         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4454
4455 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4456
4457         * include/winerror.h (STG_E_*):  Define.
4458         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4459         * include/winerror.h (STG_S_*): Define.
4460         (CO_S_MACHINENAMENOTFOUND): Define.
4461         (RPC_E_*): Define.
4462         (NTE_*): Define.
4463
4464 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4465
4466         * include/commctrl.h (ListView_*):  Define and correct.
4467         (LVM_*): Define.
4468
4469 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4470
4471         * include/winuser.h (WM_IME_*): Define (DWORD type).
4472         (EM_*IMESTATUS): Define.
4473         (WM_*): Define.
4474         (XBUTTON*): Define.
4475         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4476
4477 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4478
4479         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4480         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4481
4482 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4483
4484         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4485         version conditional.
4486
4487 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4488
4489         * include/winspool.h (JOB_INFO_3): Add structure.
4490         (PROVIDOR_INFO_*{AW}): Add structure.
4491         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4492         (PRINTER_ENUM_VALUES{AW}): Add structure.
4493         (PRINTPROCESSOR_CAPS): Add structure.
4494
4495 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4496
4497         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4498         (PRINTER_INFO_7A): Correct definition.
4499
4500 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4501
4502         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4503         (DRIVER_INFO_*{AW}): Add structure.
4504         (PRINTER_INFO_*{AW}): Add structure.
4505         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4506
4507 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4508
4509         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4510         (DRIVER_*MODE): Define (DWORD type).
4511         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4512
4513 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4514
4515         * include/wincon.h (GetConsoleProcessList): Declare.
4516
4517 2006-03-27  Hansres Engel  <engel@node.ch>
4518
4519         * include/mlang.h: New file.
4520
4521 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4522
4523         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4524
4525 2006-03-26  Hansres Engel  <engel@node.ch>
4526
4527          Add Uniscribe API for typography and for complex scripts.
4528         * include/usp10.h: New file.
4529         * lib/usp10.def: New file.
4530
4531         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4532
4533         * include/imm.h (IMECHARPOSITION): Add structure.
4534         (RECONVERTSTRING): Likwise.
4535
4536         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4537
4538         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4539         (IMLangFontLink2): Likewise.
4540         (IMultiLanguage): Likewise.
4541
4542 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4543
4544         * include/wincon.h  (ENABLE_*): Add more defines.
4545
4546 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4547
4548         * include/winnt.h (INHERITED_ACE): Define.
4549         (VALID_INHERIT_FLAGS): Correct definition.
4550
4551 2006-03-18  Peter Åstrand  <astrand@cendio.se>
4552
4553          * lib/wtsapi32.def: New file.
4554
4555 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4556
4557         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4558         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4559
4560 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4561
4562         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4563         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4564         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4565         (DSPRINT_*): Define (DWORD type).
4566         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4567
4568 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4569
4570         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4571         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4572
4573 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4574
4575         * include/shellapi.h [_WIN32_IE >= 0x0600]
4576         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4577         Windows XP SP1 and Windows XP respectively.
4578
4579 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4580
4581         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4582         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4583         * include/shellapi.h [_WIN32_IE >= 0x0500]
4584         (NIS_*): Introduced in Version 5.0.
4585
4586 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4587
4588         * include/wingdi.h (CS_*): Correct WINVER guard on
4589         Image Color Matching colour definitions.
4590
4591 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4592
4593         * include/shlobj.h (SFGAO_ISSLOW): Define.
4594         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4595         attribute constants.
4596
4597 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4598
4599         * include/wingdi.h [WINVER >= 0x0500]
4600         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4601         Thanks to: David A. Capello <dacap at users dot sf dot net>
4602
4603 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4604
4605         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4606         (INTERNET_STATE_*): Define flags.
4607         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4608
4609 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4610
4611         * include/sddl.h: New file.
4612
4613 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4614
4615         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4616         last change.
4617         Remove file level #pragma pack(push,4)/#pragma pop.
4618
4619 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4620
4621         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4622         value to force correct alignment.
4623
4624 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4625
4626         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4627         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4628         (PNM_CACHEHINT): Add backward compatibilty define.
4629         (LPNM_CACHEHINT): Likewise.
4630
4631 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4632
4633         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4634
4635 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4636
4637         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4638         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4639         * lib/shell32.def (PathResolve): Define.
4640
4641 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4642
4643         * include/shlobj.h (PathResolve): Fix typo.
4644
4645 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4646
4647         * include/shlobj.h (PathResolve): Define.
4648         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4649         PRF_DONTFINDLNK): Ditto.
4650         * lib/shell32.def (PathResolve): Define.
4651
4652 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4653
4654         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4655
4656 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4657
4658         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4659         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4660         (NotifyRouteChange@8): Define.
4661
4662 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4663
4664         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4665         prototypes.
4666
4667 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4668
4669         * include/winnt.h (FORCEINLINE): Define.
4670
4671 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4672
4673         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4674
4675 2006-01-26  Filip Navara  <xnavara@volny.cz>
4676
4677         * include/winnt.h (DECLSPEC_ALIGN): Define.
4678
4679 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4680
4681         * include/commctrl.h: Correct spelling of 'compatibility' in
4682         comments.
4683         * include/setupapi.h: Likewise.
4684         * include/ws2tcpip.h: Likewise.
4685
4686 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4687
4688         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4689
4690 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4691
4692         WATCOM compatibility changes.
4693         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4694         rather than __attribute__.
4695         (DECL_EXPORT): Likewise.
4696         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4697         (DDKFASTAPI): Likewise.
4698         (DDKCDECLAPI): Likwise.
4699         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4700
4701 2006-01-23  Brandon Sneed  <brandon@redf.net>
4702
4703         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4704         to exports.
4705
4706 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4707
4708         * include/w32api.h: Increment version to 3.6.
4709         * Makefile.in: Ditto.
4710
4711 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4712
4713         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4714         advapi32.dll functions.
4715
4716 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4717
4718         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4719         names for padding size constants.
4720
4721 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4722
4723         * include/aclapi.h (WINADVAPI): Add to prototypes.
4724         * include/winreg.h (WINADVAPI): Likewise.
4725         * include/winsvc.h (WINADVAPI): Likewise.
4726
4727 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4728
4729         * include/winbase.h (WINADVAPI): Define.
4730
4731 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4732
4733         * include/winuser.h (CreateWindowStation): Correctly identify first
4734         argument as constant.
4735         (CreateWindowStation@): Ditto.
4736
4737 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4738
4739         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4740         (TMT_*, BT_*): Add constants.
4741
4742 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4743
4744         * include/winsock2.h: Don't define struct sockaddr_storage when
4745         building Cygwin.
4746
4747 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4748
4749         * lib/ws2_32.c: New file, defining IPv6 constants.
4750         * lib/Makefile.in (SOURCES): Add ws2_32.c
4751         (EXTRA_OBJS): Add ws2_32.o.
4752
4753 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4754
4755         * lib/user32.def (PrivateExtractIconsA@32,
4756         PrivateExtractIconsW@32): Define.
4757         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4758
4759 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4760
4761         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4762
4763 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4764
4765         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4766
4767 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4768             Danny Smith <dannysmith@users.sourceforge.net>
4769
4770         * lib/msxml-uuid.c: New file to generate UUIDs for
4771         MSXML interfaces.
4772         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4773
4774 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4775
4776         * include/winbase.h (GetDevicePowerState): Add prototype.
4777         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4778
4779 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4780
4781         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4782         Define as macro if !_WIN64.
4783         (SetClassLongPtr{AW}): Likewise.
4784         (GCLP_*): Add GetClassLongPtr defines.
4785         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4786         (SetClassLongPtr{AW}): Likewise.
4787
4788 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4789
4790         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4791         (SetClassLongPtr{AW}): Likewise.
4792         (GCLP_*): Add GetClassLongPtr defines.
4793         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4794         (SetClassLongPtr{AW}): Likewise.
4795
4796 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4797
4798         * include/commdlg.h (OPENFILENAMEW): Add members for
4799         _WIN32_WINNT >= 0x0500.
4800         Thanks to Ricardo Dalcorsso Fodra.
4801         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4802
4803 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4804
4805         * include/wingdi.h (GetICMProfileA): Correct prototype.
4806         (GetICMProfileW): Likewise.
4807         Thanks to: Paul J Lucas
4808
4809 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4810
4811         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4812
4813 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4814
4815         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4816         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4817         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4818         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4819
4820 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4821
4822         * include/objbase.h: Fix typo.
4823         * include/w32api.h: Increment version to 3.5.
4824         * Makefile.in: Ditto.
4825
4826 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4827
4828         * include/w32api.h: Increment version to 3.4.
4829         * Makefile.in: Ditto.
4830
4831 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4832
4833         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4834         Use _WIN32_WINNT >= 0x0501 guard.
4835
4836 2005-10-11  Christopher Faylor  <cgf@timesys.com>
4837
4838         * include/winbase.h (GetProcessId): Declare.
4839
4840 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4841
4842         * lib/ddk/newdev.def: Added.
4843         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
4844
4845 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4846
4847         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
4848         component.
4849         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
4850
4851 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4852
4853         * lib/shell32.def (SHILCreateFromPath): Add stub.
4854         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
4855
4856 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4857
4858         * include/winbase.h (RegisterWaitForSingleObject,
4859         RegisterWaitForSingleObjectEx): Define.
4860         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
4861         (RegisterWaitForSingleObject@16): Changed to
4862         RegisterWaitForSingleObject@24.
4863         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
4864
4865 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
4866
4867         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
4868         Thanks to: Gisle Vanem  <giva at bgnett dot no>
4869
4870 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4871
4872         * include/reason.h [_WIN32_WINNT >= 0x0501]
4873         (SHTDN_REASON_*): New file.
4874         * include/objbase.h: Avoid double header guard.
4875
4876 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
4877
4878         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
4879         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
4880         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
4881
4882 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4883
4884         * include/shlobj.h (IContextMenu3): Define.
4885         * include/shlguid.h (IID_IContextMenu3): Declare.
4886         * lib/shell32.c (IID_IContextMenu3): Define.
4887
4888 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4889
4890         * include/shlobj.h (SHFormatDrive): Declaration of function
4891         and associated constants.
4892
4893 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4894
4895         * include/ddk/hidsdi.h:  New file.
4896         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
4897         functions declared in hidsdi.h.
4898         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
4899
4900 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4901
4902         * lib/imm32.def (ImmDisableIME): Add stub.
4903         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
4904
4905 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4906
4907         * include/w32api.h: Increment version to 3.3.
4908         * Makefile.in: Ditto.
4909
4910 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
4911
4912         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
4913         Correct their values.
4914         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
4915
4916 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4917
4918         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
4919
4920 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4921
4922         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
4923         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
4924
4925 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4926
4927         * include/richedit.h (SETTEXTEX): Define structure and
4928         associated constants.
4929         (GT_SELECTION): Define GETTEXTEX flag constant.
4930
4931 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4932
4933         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
4934
4935 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4936
4937         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
4938         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
4939         prototypes.
4940
4941 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4942
4943         * include/commctrl.h (RBBS_USECHEVRON): Define.
4944         (RBBS_*): Use hex notation, group together.
4945
4946 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4947
4948         * lib/kernel32.def (GetUserGeoID): Correct suffix.
4949         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
4950
4951 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4952
4953         * include/commctrl.h (TreeView_SetItemState): Initilise
4954         _tvi.hItem.
4955         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
4956
4957 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
4958
4959         * include/commctrl.h (NMLVFINDITEM): Add structure.
4960
4961 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4962
4963         * include/wininet.h (WININET_API_FLAG_*): Add defines.
4964
4965 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
4966
4967         * include/winnt.h (VER_SET_CONDITION): Define.
4968
4969 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4970
4971         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
4972         (ATTACH_PARENT_PROCESS): Define.
4973         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
4974         documentation.
4975
4976 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4977
4978         * include/winbase.h (QueueUserWorkItem): Add prototype.
4979
4980 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4981
4982         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
4983         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
4984         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
4985         CM_CMYK_COLOR): Define.
4986
4987 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
4988
4989         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
4990         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
4991         Thanks to: Christian  <chhd at users dot sf dot net>
4992
4993 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4994
4995         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
4996         field.
4997         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
4998
4999 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5000
5001         * include/winbase.h (GlobalDiscard): Define as macro.
5002         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5003
5004 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5005
5006         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5007         (WNetGetResourceParentW): Ditto.
5008         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5009         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5010
5011 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5012
5013         * include/wininet.h (FtpGetFileSize): Add prototype.
5014         (FtpCommand[AW]): Correct prototypes.
5015         Reported by: <siger at users dot sf dot net>
5016
5017 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5018
5019         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5020         (capGetDriverDescription[AW]): Likewise.
5021
5022 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5023
5024         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5025         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5026         (SE_IMPERSONATE_NAME TEXT): Ditto.
5027         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5028         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5029
5030 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5031
5032         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5033         change.
5034
5035 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5036
5037         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5038         Thanks to:
5039         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5040
5041 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5042
5043         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5044         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5045         (gai_strerror[AW]): Put into #if 0 block.
5046
5047 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5048
5049         * include/basetyps.h (__int16): Correct define.
5050
5051 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5052             Danny Smith  <dannysmith@users.sourceforge.net>
5053
5054         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5055         define for Open Watcom portability.
5056         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5057         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5058         of local c_rgodfDI* objects. Replace .rdata section attribute
5059         with 'const' keyword in definition of global c_dfDI* objects.
5060
5061 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5062
5063         * include/winioctl.h (IOCTL_VOLUME_BASE,
5064         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5065         Copy defines from include/ddk/ntdddvol.h.
5066         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5067
5068 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5069
5070         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5071
5072 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5073
5074         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5075         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5076
5077 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5078
5079         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5080
5081 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5082
5083         * lib/user32.def (MonitorFromPoint): Correct suffix.
5084
5085 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5086
5087         * include/wininet.h (InternetCheckConnectionA,
5088         InternetCheckConnectionW) Add prototypes.
5089         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5090         INTERNET_CONNECTION_CONFIGURED): Add defines.
5091
5092 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5093
5094         * include/commctrl.h (ComboBox_SetMinVisible,
5095         ComboBox_GetMinVisible): Added Macros.
5096         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5097         Added definitions.
5098
5099 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5100
5101         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5102         assembly code conditional on _X86_.
5103
5104 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5105
5106         * include/w32api.h: Increment version to 3.2.
5107         * Makefile.in: Ditto.
5108         * include/afxres.h: Remove the \r from the line ending.
5109         * include/errorrep.h: Ditto.
5110         * include/shldisp.h: Ditto.
5111         * include/tschema.h: Ditto.
5112         * lib/dhcpcsvc.def: Ditto.
5113         * lib/uxtheme.def: Ditto.
5114         * lib/wldap32.def: Ditto.
5115
5116 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5117
5118         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5119         Correct typo.
5120         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5121
5122 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5123
5124         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5125         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5126         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5127         SPI_GETFOREGROUNDLOCKTIMEOUT,
5128         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5129         *include/imm.h (WM_IME_REQUEST): Added definition.
5130         *include/shlobj.h (SLGP_RAWPATH,
5131         SLGP_UNCPRIORITY): Added definition.
5132
5133 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5134
5135         *include/winuser.h (HSHELL_FLASH): Added definition.
5136
5137 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5138
5139         * include/shldisp.h (IAutoComplete): Added interface definiton.
5140         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5141         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5142         * include/shlobj.h (IObjMgr): Added interface definiton.
5143         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5144         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5145         CLSID_ACListISF, IID_IACList): Added GUIDs.
5146         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5147         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5148         CLSID_ACListISF, IID_IACList): Added GUIDs.
5149
5150 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5151
5152         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5153         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5154         (CDRF_*): Use hex notation for constants.
5155
5156 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5157
5158         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5159         Reported by Eric Sharkey <sharkey at netrics dot com>
5160
5161 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5162
5163         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5164         TokenGroupsAndPrivileges, TokenSessionReference,
5165         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5166         Reformat.
5167         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5168         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5169
5170 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5171
5172         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5173         ImageList_Duplicate): Add stubs.
5174
5175 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5176
5177         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5178         Thanks to "Pete" <pross@xvid.org>
5179
5180 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5181
5182         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5183         AC_DST_NO_ALPHA, ...): Add defines.
5184         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5185         ULW_OPAQUE): Add defines.
5186
5187 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5188
5189         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5190         guard.
5191         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5192         suffix.
5193         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5194
5195 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5196
5197         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5198         (CreateProcessWithLogonW): Declare.
5199         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5200         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5201
5202 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5203
5204         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5205         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5206
5207 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5208
5209         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5210         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5211
5212 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5213
5214         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5215
5216 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5217
5218         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5219         Add defines.
5220         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5221
5222 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5223
5224         * include/shellapi.h (NIF_GUID): Add another define.
5225
5226 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5227
5228         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5229         Changed it twice due to inconsistent MSDN documentation.
5230         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5231
5232 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5233
5234         * include/shlobj.h (SHGFP_TYPE): Add enum.
5235
5236 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5237
5238         * include/winuser.h (WM_THEMECHANGED): Add define.
5239
5240 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5241
5242         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5243         ExFreeToPagedLookasideList): Guard inline versions with
5244         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5245         external functions for earlier _WIN32_WINNT.
5246
5247 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5248
5249         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5250
5251 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5252
5253         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5254         if  undefined and __W32API_USE_DLLIMPORT__.
5255         Add WINBASEAPI token to prototypes, throughout.
5256
5257 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5258
5259         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5260         (GetFiberData): Likewise.
5261         (NtCurrentTeb): Likewise.
5262
5263 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5264
5265         * include/shellapi.h (NIF_INFO): Add define.
5266         (NIIF_*) Add defines..
5267         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5268         (NIF_*): Convert constants to hex.
5269
5270 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5271
5272         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5273         GetGlyphIndicesW): Declare.
5274         (GGI_MARK_NONEXISTING_GLYPHS): Define
5275         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5276         GetGlyphIndicesW): Add stubs.
5277
5278 2004-10-24  Dan Aloni  <da-x@colinux.org>
5279
5280         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5281         ZwQueryFullAttributesFile): Declare.
5282         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5283         Declare.
5284         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5285         ZwQueryVolumeInformationFile): Add stubs.
5286
5287 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5288
5289         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5290         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5291
5292 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5293             Danny Smith  <dannysmith@users.sourceforge.net>
5294
5295         * include/winbase.h (InitializeSListHead, Interlocked*):
5296         Guard with !__USE_NTOSKRNL__.
5297
5298         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5299         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5300         Guard with  __USE_NTOSKRNL__.
5301         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5302         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5303         && _WIN32_WINNT >= 0x0501
5304         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5305         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5306         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5307         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5308
5309         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5310         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5311         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5312         ExWindowStationObjectType, IoAdapterObjectType,
5313         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5314         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5315         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5316         Uncomment stubs.
5317
5318 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5319
5320         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5321         definition
5322         (IoReleaseRemoveLock): Add definition.
5323
5324 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5325
5326         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5327         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5328         Add prototypes.
5329         * include/winddk.h (ExInterlockedAddUlong,
5330         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5331         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5332         ExInterlockedPushEntryList): Change calling convention to
5333         DDKAPI.
5334         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5335         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5336         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5337         Add prototypes for DDKFASTAPI versions.
5338         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5339         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5340         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5341         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5342         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5343         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5344         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5345         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5346         Add fastcall stubs.
5347         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5348         Exi386InterlockedIncrementLong); Add stdcall stubs.
5349
5350 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5351
5352         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5353          if __W32API_USE_DLLIMPORT__ is defined.
5354         * include/winuser.h (WINUSERAPI): Likewise.
5355
5356 2004-09-29  Filip Navara  <xnavara@volny.cz>
5357
5358         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5359         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5360         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5361         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5362         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5363         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5364         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5365         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5366         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5367         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5368         winnt4.h, ws2san.h): Fixed packing.
5369         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5370         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5371         HID_INTERFACE_NOTIFY_PNP): Likewise.
5372         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5373         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5374         <ayerkes@speakeasy.net>.
5375         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5376         declaration.
5377         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5378         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5379         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5380         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5381         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5382         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5383         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5384         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5385         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5386         (SYNCH_LEVEL): Added definition.
5387         (KPCR, KPCR_TIB): Fixed declaration.
5388         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5389         included and _WIN32_WINNT >= 0x0501.
5390         (RtlEqualLuid): Fixed macro definition.
5391         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5392         KeRaiseIrql on i386 architectures.
5393
5394 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5395
5396         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5397         declaration.
5398         (IHTMLSelectionObject): Correct get_type declaration.
5399         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5400         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5401         IHTMLBodyElement2): Add interfaces.
5402         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5403         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5404         typedefs.
5405         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5406         Add IIDs.
5407
5408 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5409
5410         * include/w32api.h: Increment version to 3.1.
5411         * Makefile.in: Ditto.
5412
5413 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5414
5415         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5416         MonitorFromWindow): Add prototypes.
5417         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5418         MonitorFromWindowMonitorFromWindow): Add stubs.
5419         * include/shellapi.h (DuplicateIcon): Add prototype.
5420
5421 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5422
5423         * include/winuser.h (WINUSERAPI): New define.
5424         Use it to mark user32.dll imports, throughout.
5425
5426 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5427
5428         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5429         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5430         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5431         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5432         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5433         HidD_GetPreparsedData, HidD_GetProductString,
5434         HidD_GetSerialNumberString, HidD_SetConfiguration,
5435         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5436         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5437
5438 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5439
5440         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5441         Add XP defines.
5442         (PCOORD): Add typedef.
5443         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5444
5445 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5446
5447         * include/winldap.h: Don't check value of UNICODE.
5448         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5449
5450 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5451
5452         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5453
5454 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5455
5456         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5457         guard.
5458
5459 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5460
5461         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5462
5463 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5464
5465         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5466
5467 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5468
5469         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5470
5471 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5472
5473         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5474
5475 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5476
5477         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5478         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5479         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5480         Add defines.
5481         (CALG_SHA1): Add define.
5482         (HP_HMAC_INFO): Add define.
5483         (HMAC_INFO): Add struct.
5484         (BLOBHEADER): Add typedef.
5485
5486 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5487
5488         * include/commctrl.h (TreeView_SetItemState): Define macro.
5489
5490 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5491
5492         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5493         macros together.
5494
5495 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5496
5497         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5498         (FILEGROUPDESCRIPTOR): LIkewise.
5499
5500 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5501
5502         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5503
5504 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5505
5506         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5507         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5508         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5509         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5510         (IMAGE_ORDINAL): Map to ...
5511         (IMAGE_ORDINAL{32,64}: New defines.
5512         (IMAGE_THUNK_DATA):  Map to ...
5513         (IMAGE_THUNK_DATA{32,64}: New structures.
5514         (IMAGE_THUNK_DATA): Map to ...
5515         (IMAGE_THUNK_DATA{32,64}: New structures.
5516         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5517         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5518         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5519         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5520
5521 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5522
5523         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5524         _WIN32_WINNT >= 0x0500.
5525
5526 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5527
5528         * include/winbase.h (GetWriteWatch): Correct prototype.
5529         (WRITE_WATCH_FLAG_RESET): Define.
5530         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5531
5532 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5533
5534         * include/commctrl.h (Animate_OpenEx): Define.
5535         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5536         (ListView_GetNumberOfWorkAreas): Correct macro.
5537         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5538         ListView_SetItemCountEx, ListView_GetISearchString,
5539         TreeView_GetLastVisible, Header_CreateDragImage,
5540         Header_SetImageList, Header_GetImageList): Define.
5541         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5542         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5543         TBSTATE_ELLIPSES): Define.
5544         (MonthCal_SetRange): Correct macro.
5545         (ImageList_Duplicate): Declare.
5546
5547 2004-05-29  Filip Navara  <xnavara@volny.cz>
5548
5549         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5550
5551 2004-05-25  Al Slater  <al.slater@scluk.com>
5552
5553         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5554         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5555
5556 2004-05-15  Filip Navara  <xnavara@volny.cz>
5557
5558         * include/ddk/kbdmou.h: New file.
5559         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5560         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5561         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5562         _vsnwprintf, sprintf, swprintf): Export.
5563
5564 2004-05-15  Filip Navara  <xnavara@volny.cz>
5565
5566         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5567         headers.
5568
5569 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5570
5571         * include/wingdi.h: Correct non-unicode typedefs of
5572         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5573
5574 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5575
5576         * include/winsock.h (IN_CLASSA): Fix macro.
5577         * include/winsock2.h (IN_CLASSA): Fix macro.
5578
5579 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5580
5581         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5582         * include/aclui.h: Remove '\r', throughout.
5583         * include/msacm.h: Likewise.
5584         * lib/aclui.def: Likewise.
5585
5586 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5587
5588         * lib/comctl32.def (SetWindowSubclass): Add stub.
5589         Thanks to Eugene <egladysh@users.sourceforge.net>.
5590
5591 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5592
5593         * include/winbase.h (EXECUTION_STATE): Add typedef.
5594         (SetThreadExecutionState): Declare.
5595         * include/wingdi.h (_WINGDI_): Define.
5596         * include/objbase.h (_OBJBASE_H_): Define.
5597
5598 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5599
5600         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5601         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5602         (SM_CMETRICS): Adjust value.
5603         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5604         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5605         Add defines.
5606         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5607
5608 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5609
5610         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5611         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5612         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5613         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5614         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5615         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5616
5617 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5618
5619         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5620         DNSREC_ADDITIONAL): Add defines.
5621
5622 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5623
5624         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5625
5626 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5627
5628         * include/aclui.h: New file.
5629         * lib/aclui.def: New file.
5630         * lib/test.c: Add aclui.h to includes.
5631
5632 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5633
5634         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5635         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5636         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5637
5638 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5639
5640         * include/wingdi.h: Protect non-unicode case of below.
5641
5642 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5643
5644         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5645         LPENUMLOGFONTEXDV with appropriate version check.
5646
5647 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5648
5649         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5650         DSPROPSETID_DirectSoundDevice): Add defines.
5651
5652 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5653
5654         * include/msacm.h: New file.
5655
5656 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5657
5658         * include/objbase.h (STGFMT): Declare enum.
5659         (STGOPTIONS): Declare structure.
5660         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5661         (STGOPTIONS_VERSION): Define.
5662         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5663
5664 2004-04-13  Filip Navara  <xnavara@volny.cz>
5665
5666         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5667         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5668         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5669         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5670         HELP_SETWINPOS): Define.
5671         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5672         (SPI_*): Add new definitions for WINVER >= 0x500.
5673         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5674         (InternalGetWindowText, SetWindowsHookW): Declare.
5675         * include/winbase.h (InitializeSListHead): Avoid conflicting
5676         definition with DDK headers.
5677
5678 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5679
5680         * include/winuser.h (GetLastError): Move from here...
5681         * include/winbase.h: ... to here.
5682
5683 2004-04-13  Filip Navara  <xnavara@volny.cz>
5684
5685         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5686
5687 2004-04-13  Filip Navara  <xnavara@volny.cz>
5688
5689         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5690         WINVER >= 0x400.
5691         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5692         (ENUMLOGFONTEXW): Fix definition.
5693         (ENUMLOGFONTEXDV[AW]): Declare.
5694
5695 2004-04-13  Filip Navara  <xnavara@volny.cz>
5696
5697         * include/wingdi.h: Declare the DirectDraw structures only if
5698         the DirectDraw kernel mode headers aren't included.
5699         (EMFINFO): Declare.
5700         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5701         STROBJ_bEnumPositionsOnly): Correct prototypes.
5702
5703 2004-04-13  Filip Navara  <xnavara@volny.cz>
5704
5705         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5706         * include/rpc.h (RPCRTAPI): Define.
5707         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5708         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5709         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5710         (I_RpcBindingSetAsync): Correct prototype.
5711         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5712         to w2kReserved.
5713         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5714         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5715         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5716         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5717         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5718         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5719         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5720         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5721         NdrUserMarshalFree): Declare.
5722         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5723         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5724
5725 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5726
5727         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5728         LPC_MESSAGE_BASE_SIZE): Define.
5729         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5730
5731 2004-04-13  Filip Navara  <xnavara@volny.cz>
5732
5733         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5734         Declare.
5735
5736 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5737
5738         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5739         MONITORINFO when compiling as C++.
5740
5741 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5742
5743         * README.w32api: List separate copyright conditions for some headers.
5744         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5745
5746 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5747
5748         * include/wingdi.h (RGB): Correct macro.
5749
5750 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5751
5752         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5753
5754 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5755
5756         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5757
5758 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5759
5760         * lib/Makefile.in: Add directx to .PHONY target.
5761         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5762         Don't include stdio.h or tchar.h.
5763         Replace _T() macro with TEXT() macro, throughout.
5764         Replace _stprintf with wsprintf, throughout.
5765
5766 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5767
5768         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5769         Add define.
5770         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5771         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5772         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5773
5774 2004-03-27  Filip Navara  <xnavara@volny.cz>
5775
5776         * include/directx: New subdir.
5777         * lib/directx: Ditto.
5778         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5779         dxerr9.h): New files.
5780         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5781         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5782         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5783         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5784         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5785         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5786         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5787         strmiids.c, test.c): Ditto.
5788         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5789         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5790
5791 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5792
5793         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5794         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5795         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5796
5797 2004-03-24  Filip Navara  <xnavara@volny.cz>
5798
5799         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5800         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5801
5802 2004-03-24  Filip Navara  <xnavara@volny.cz>
5803
5804         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5805         TaggedQueueing to TaggedQueuing.
5806         (_HW_INITIALIZATION_DATA): Likewise.
5807
5808 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5809
5810         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5811         prototype.
5812         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5813
5814 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5815
5816         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5817         (MmMapIoSpace): Likewise.
5818         Thanks to Dan Aloni  <da-x@colinux.org>
5819
5820 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5821
5822         * include/shellapi.h (NIM_* NIS_*): Define constants for
5823         notification icons with _WIN32_IE >= 0x0500.
5824         (NOTIFYICONDATA): Add new structure members for notification
5825         icons with _WIN32_IE >= 0x0500.
5826
5827 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5828
5829         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5830         Add defines.
5831         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5832         (GROUPID) Add typedef.
5833         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5834         (CreateUrlCacheGroup): Add prototype.
5835         (DeleteUrlCacheGroup): Add prototype.
5836         (FindFirstUrlCacheGroup): Add prototype.
5837         (FindNextUrlCacheGroup): Add prototype.
5838         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
5839         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
5840
5841 2004-03-10  Al Slater  <al.slater@scluk.com>
5842
5843         * include/winsock2.h: Add missing LPFN_ typdefs for
5844         function pointers.
5845         Clean up whitespace.
5846
5847 2004-03-05  Filip Navara  <xnavara@volny.cz>
5848
5849         * include/ddk/scsi.h: Replace assert with ASSERT.
5850         * include/ddk/video.h: Ditto.
5851         * include/ddk/winddk.h: Ditto. Remove the assert macro.
5852         * include/ddk/tdi.h: Correct packing.
5853
5854 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
5855
5856         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
5857         NONAMELESSUNION case.
5858
5859 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
5860
5861         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
5862         __VARIANT_NAME_ constants.
5863
5864 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5865
5866         * include/uxtheme.h: Include <commctrl.h>
5867
5868 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5869
5870         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
5871
5872 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
5873
5874         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
5875         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
5876         together.
5877         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
5878         (V_I8, V_I8REF): Correct macros.
5879         (V_DECIMAL): Correct macro definitions.
5880         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
5881         constants.
5882         (VTBIT_*): Define constants.
5883         (UDATE): Add structure definition.
5884         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
5885         functions.
5886         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
5887         (SafeArrayCreateVectorEx): Declare function.
5888         (Var*): declare VARIANT manipulation functions.
5889         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
5890         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
5891         macros.
5892
5893 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
5894
5895         * include/oaidl.h (FADF_*): Define missing constants.
5896         (IDispatch_*): Define COBJ macros.
5897         (VARIANT): Add missing union members llVal and ullVal.
5898         (wireVARIANT): Likewise.
5899         (ITypeinfo_*): Define COBJ macros.
5900         * include/oleauto.h (Var*FromDisp): Correct parameter type from
5901         LPDISPATCH* to LPDISPATCH.
5902         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
5903         VAR_CALENDAR_*): Add missing constants.
5904         (SafeArray[Get/Set]*): Add prototypes.
5905         (Var*From*):  Add missing prototypes.
5906         (NUMPRS_*): Add defines.
5907         (NUMPARSE): Define structure.
5908         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
5909         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
5910         * include/winuser.h (COLOR_*): Define missing constants.
5911         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
5912         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
5913
5914 2004-02-23  Filip Navara  <xnavara@volny.cz>
5915
5916         * include/ddk/video.h: Corrected packing.
5917
5918 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5919
5920         * include/GL/glu.h (GLU_ERROR): Define.
5921         Thanks to Philip Lamb  <phil at rave dot co dot nz>
5922
5923 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5924
5925         * include/GL/glu.h: Include <stddef.h>.
5926         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
5927
5928 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
5929
5930         * include/w32api.h: Increment version to 3.0.
5931         * Makefile.in: Ditto.
5932         * README.win32api: Modify license to Public Domain per agreement as
5933         found in the mingw-dvlpr list archive.
5934
5935 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
5936
5937         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
5938         (DIRECTORY_TRAVERSE): Ditto.
5939         (DIRECTORY_CREATE_OBJECT): Ditto.
5940         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
5941         (DIRECTORY_ALL_ACCESS): Ditto.
5942         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
5943
5944 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
5945
5946         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
5947
5948         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
5949         Thanks to Mike Nordell <tamlin at algonet dot se>.
5950
5951 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5952
5953         * lib/dnsapi.def: New file.
5954         * lib/test.c: Include windns.h.
5955
5956 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
5957
5958         * include/windns.h: New file.
5959
5960 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5961
5962         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
5963         defines.
5964         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
5965         (SQLSetDescFieldW): Correct prototype.
5966         (SQLSetDescFieldA): Add prototype.
5967         (SQLGetDescFieldW): Add prototype.
5968
5969 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
5970
5971         * include/winuser.h (DFC_POPUPMENU): Add define.
5972
5973 2004-02-07  Dan Aloni  <da-x@gmx.net>
5974
5975         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
5976         suffix.
5977
5978 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5979
5980         * include/oleacc.h (LIBID_Accessibility): Declare.
5981         * lib/uuid.c (LIBID_Accessibility): Define.
5982
5983 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5984
5985         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
5986         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
5987
5988 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5989
5990         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
5991         defines.
5992
5993 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
5994
5995         * include/winuser.h (RT_MANIFEST): Make conditional on
5996         RC_INVOKED.
5997         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
5998         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
5999         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6000         defines.
6001
6002 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6003
6004         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6005
6006 2004-01-15  Filip Navara  <xnavara@volny.cz>
6007
6008         * include/ddk/mcd.h: Don't care about value of DBG define.
6009         * include/ddk/srb.h: Ditto.
6010         * include/ddk/storport.h: Ditto.
6011         * include/ddk/video.h: Ditto.
6012         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6013         GetAddressByNameW): Correct protoype.
6014         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6015
6016 2004-01-05  Filip Navara  <xnavara@volny.cz>
6017
6018         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6019         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6020         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6021         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6022         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6023         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6024         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6025         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6026         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6027         SSF_*): Add defines.
6028         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6029         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6030         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6031         Correct.
6032         (IEnumIDList): Add COBJMACROS.
6033         * include/winuser.h (MIM_*): Add define.
6034
6035 2004-01-04  Filip Navara  <xnavara@volny.cz>
6036
6037         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6038         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6039         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6040         PERSIST_FOLDER_TARGET_INFO): Define structures.
6041         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6042         IPersistFolder2, IPersistFolder3): Add COM interface
6043         definitions.
6044         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6045         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6046         Add COBJMACROS.
6047         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6048         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6049         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6050
6051 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6052
6053         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6054         declarations.
6055         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6056
6057 2004-01-03  Filip Navara  <xnavara@volny.cz>
6058
6059         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6060         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6061         declare IID's.
6062         (IErrorInfo): Add COBJMACROS.
6063         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6064         (CoGetPSClsid): Add protototype,
6065         (CoRegisterPSClsid): Likewise.
6066         * include/objidl.h (IMarshal): Correct methods.
6067         (IMallocSpy): Likewise,
6068         (LPPSFACTORYBUFFER): Add typedef.
6069         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6070         IID.
6071         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6072         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6073         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6074         structures.
6075         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6076         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6077         IQuickActivate): Define interfaces. Declare IID's.
6078         (IPersistPropertyBag2): Add COBJMACROS.
6079         (LPOLEUNDOMANAGER): Add typedef.
6080         (LPPROPERTYBAG2): Likewise.
6081         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6082         (BINDSPEED): Add definition.
6083         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6084         IDropTarget): Add COBJMACROS.
6085         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6086         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6087         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6088         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6089         Add IID definitions.
6090
6091 2004-01-02  Filip Navara  <xnavara@volny.cz>
6092
6093         * include/ddk/winddk.h: Don't care about value of
6094         DBG define.
6095
6096 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6097             Filip Navara  <xnavara@volny.cz>
6098
6099         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6100         _DDK_DUMMYUNION_N_MEMBER): New macros.
6101         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6102         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6103         Use them.
6104
6105 2004-01-01  Filip Navara  <xnavara@volny.cz>
6106
6107         * include/objbase.h: Don't care about value of DBG define.
6108         * include/objidl.h: Add some COBJMACROS.
6109         * include/ocidl.h: Ditto.
6110         * include/oleidl.h: Ditto.
6111         * include/servprov.h: Ditto.
6112         * include/shlobj.h: Ditto.
6113         * include/shlobj.h (IContextMenu2): Correct parent in
6114         DECLARE_INTERFACE.
6115         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6116         Define interfaces.
6117         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6118         Add new constants for _SETUPAPI_VER >= 0x501.
6119
6120 2004-01-01  Filip Navara  <xnavara@volny.cz>
6121
6122         * include/winnt.h (NtCurrentTeb): Add inline definition.
6123
6124 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6125
6126         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6127         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6128
6129 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6130
6131         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6132         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6133         * include/ddk/cfg.h (DN_*): Add defines.
6134
6135 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6136
6137         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6138
6139 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6140
6141         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6142         (NMTVGETINFOTIP): Add structure.
6143
6144 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6145
6146         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6147         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6148         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6149
6150 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6151
6152         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6153         Add macros.
6154         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6155         constants.
6156         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6157         (SHCOLUMNDAT): Likwise.
6158         (SHCOLUMNID): Likewise.
6159         (SHCOLUMNINFO): Likewise.
6160         (SHCOLSTATE): Add enum.
6161         (IColumnProvider): Add COM interface.
6162         (IQueryInfo): Likewise.
6163         (IShellIconOverlayIdentifier): Likewise.
6164         * include/shlguid.h (IID_IColumnProvider) Declare.
6165         (IID_IQueryInfo): Likweise.
6166         (IID_IShellIconOverlayIdentifier): Likwise.
6167         * lib/shell32.c (IID_IColumnProvider) Define.
6168         (IID_IQueryInfo): Likweise.
6169         (IID_IShellIconOverlayIdentifier): Likwise.
6170
6171 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6172
6173         * include/winuser.h (RT_MANIFEST): Add define.
6174
6175 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6176
6177         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6178
6179 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6180
6181         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6182         (GetFiberData): Likewise.
6183         (GetCurrentFiber): Change volatile to __volatile__.
6184         (GetFiberData): Likewise.
6185
6186 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6187
6188         * lib/Makefile.in: Use make function to locate .mri file to allow
6189         building in directory other than source directory.
6190
6191 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6192
6193         * lib/vfw32.def: Remove, replacing with ...
6194         * lib/msvfw32.def: New file.
6195         * lib/avicap32.def: New file.
6196         * lib/avifil32.def: New file.
6197         * lib/vfw32.mri: New file.
6198         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6199         import libs with multiple dll's.
6200         (LIBS): Add MIMPLIBS.
6201         (DISTFILES): Add MRI_FILES.
6202         (libvfw32.a): Build using mri script.
6203
6204 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6205
6206         * include/winnt.h (PAGE_*): Group defines together. Change
6207         constants to hex notation.
6208
6209 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6210
6211         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6212
6213 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6214
6215         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6216         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6217         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6218         Add prototypes.
6219         * lib/shell32.def: Add stubs.
6220
6221         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6222         compiler warnings.
6223
6224 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6225
6226         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6227
6228 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6229
6230         * include/windows.h (CopyCursor): Define as macro.
6231
6232 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6233
6234         * include/winnt.h (CONTAINING_RECORD): Add macro.
6235
6236 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6237
6238         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6239         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6240         defines.
6241
6242 2003-10-13  Filip Navara  <xnavara@volny.cz>
6243
6244         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6245         defines for Dynamic Storage Arrays.
6246         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6247         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6248         and defines for Flat ScrollBars.
6249         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6250         DefSubclassProc): Add prototypes for subclassing.
6251         (DrawShadowText): Add prototype.
6252         (COMCTL32_VERSION): Define.
6253
6254 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6255
6256         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6257         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6258
6259 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6260
6261         * include/winnt.h (SM_REMOTESESSION): Add define.
6262         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6263
6264 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6265
6266         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6267         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6268         duplicate definitions.
6269         (KP_X, KP_Y): Correct typos.
6270
6271 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6272
6273         * include/afxres.h: New file.
6274
6275         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6276         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6277         ENM_SCROLLEVENTS): Add constants.
6278
6279         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6280
6281 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6282
6283         * include/errorep.h: New file.
6284
6285         * lib/faultrep.def: New file.
6286
6287 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6288
6289         * include/winbase.h (AddVectoredExceptionHandler): Define if
6290         _WIN32_WINNT >= 0x0500.
6291
6292         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6293         _WIN32_WINNT >= 0x0500.
6294
6295 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6296
6297         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6298         _WIN32_WINNT >= 0x0501.
6299
6300 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6301
6302         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6303         UnregisterWaitEx): Add functions.
6304
6305         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6306         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6307         or guard function. The MSDN says it is available on Windows XP and
6308         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6309         Huh?
6310
6311         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6312         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6313         ZombifyActCtx, QueryActCtxW): Add functions.
6314
6315         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6316         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6317         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6318         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6319
6320         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6321         SetFirmwareEnvironmentVariable[AW]): Add functions.
6322
6323         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6324         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6325         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6326         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6327         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6328
6329         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6330         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6331
6332         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6333         (ACTIVATION_CONTEXT_INFO_CLASS,
6334         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6335         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6336         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6337         Add structures.
6338
6339         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6340         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6341         SetFileShortName[AW], SetFileValidData,
6342         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6343         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6344
6345 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6346
6347         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6348         ResetWriteWatch): Add function.
6349
6350         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6351         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6352         Add functions.
6353
6354         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6355         (GetSystemWow64Directory[AW], HeapQueryInformation,
6356         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6357         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6358         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6359         RemoveVectoredExceptionHandler): Add functions.
6360
6361         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6362         Add enumeration.
6363
6364         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6365         Add function.
6366
6367         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6368         Add function. The MSDN Magazine of June 2003 reads:
6369                 RestoreLastError is an enigma. It's code is identical to
6370                 SetLastError. It's unclear to me why it was made into a
6371                 separate API.
6372
6373         * lib/user32.def (GetSystemWindowsDirectory[AW],
6374         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6375         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6376         InterlockedFlushSList, InterlockedPopEntrySList,
6377         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6378         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6379         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6380         RestoreLastError): Add functions.
6381
6382 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6383
6384         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6385         GetProcessIoCounters): Add functions.
6386
6387         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6388         Move around, needed by GetComputerNameEx.
6389
6390         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6391         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6392         Add functions.
6393
6394         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6395         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6396
6397         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6398         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6399         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6400         Windows XP SP1 and better.
6401
6402         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6403         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6404         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6405         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6406         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6407         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6408         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6409         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6410         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6411
6412         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6413         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6414         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6415         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6416         Add functions.
6417
6418 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6419
6420         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6421         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6422         DebugSetProcessKillOnExit): Add functions.
6423
6424         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6425         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6426         DnsHostnameToComputerName[AW]): Add functions.
6427
6428         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6429         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6430         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6431
6432 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6433
6434         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6435         on Windows XP and later.
6436
6437 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6438
6439         * include/commctrl.h (TreeView_Select): Returns BOOL.
6440
6441 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6442
6443         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6444
6445         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6446         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6447
6448         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6449         CreateTimerQueueTimer): Add function.
6450
6451         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6452         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6453
6454         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6455         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6456
6457         * include/winnt.h (WT_*): Add constants.
6458
6459         * lib/user32.def (CancelDeviceWakeupRequest,
6460         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6461         DeactivateActCtx): Add functions.
6462
6463 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6464
6465         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6466         Add function. Sometimes I don't understand MSDN. This function is
6467         available on Windows XP and Server 2003, but the SDK is supposed to
6468         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6469         Mmmh...
6470
6471         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6472         Guard function. Same remark as above.
6473
6474         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6475         Add functions.
6476
6477 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6478
6479         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6480         Add constants.
6481
6482         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6483         structures.
6484
6485         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6486         function. MSDN says the first argument is HACTCTX but I'm not sure
6487         where such a specialized handle is defined, so use HANDLE instead.
6488
6489         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6490         CheckNameLegalDOS8Dot3[AW]): Add functions.
6491
6492         * lib/user32.def (ActivateActCtx, AttachConsole,
6493         CheckNameLegalDOS8Dot3[AW]): Add functions.
6494
6495         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6496         Unfortunately I don't know which header to put the declarations in.
6497
6498 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6499
6500         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6501         Add constants.
6502
6503         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6504         constants for National Language Support.
6505
6506         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6507         Language Support.
6508
6509         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6510         Language Support.
6511
6512         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6513         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6514         Add functions.
6515
6516         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6517         functions. Strange... I am unable to find which library contains
6518         these functions. Can't find anything with pexports. Any clue?
6519
6520         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6521         SetUserGeoID): Add functions.
6522
6523 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6524
6525         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6526         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6527
6528         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6529         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6530         value for constants.
6531
6532 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6533
6534         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6535         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6536         the algorithms.
6537
6538 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6539
6540         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6541
6542 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6543
6544         * include/wincrypt.h (KP_*): Add constants. Needed by
6545         CryptSetKeyParam() and other functions.
6546
6547 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6548
6549         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6550         Add constants, related to Console Accessibility.
6551
6552 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6553
6554         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6555         wrong value for constant.
6556
6557 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6558
6559         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6560
6561         * include/uxtheme.h: Cleanup.
6562         * include/tmschema.h: Cleanup.
6563
6564 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6565
6566         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6567         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6568
6569 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6570
6571         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6572
6573 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6574
6575         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6576         both winuser.h and dbt.h.
6577         * include/dbt.h (BSF_*, BSM_*): Likewise.
6578
6579         * include/winuser.h (struct tagRAWINPUT): Remove
6580         _ANONYMOUS_UNION tag from named union.
6581         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6582
6583 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6584
6585         * include/dhcpcdsk.h: New file.
6586         Note that MSDN is confused about whether it should start constant
6587         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6588         experience suggests it's DHCPCAPI with `C'.
6589
6590         * lib/dhcpcsvc.def: New file.
6591
6592 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6593
6594         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6595         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6596
6597         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6598         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6599         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6600         for use in RAWINPUTDEVICE.
6601
6602         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6603         (GetRawInputDeviceInfo[AW]): Ooops... there are
6604         ANSI/Unicode versions of this function.
6605
6606         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6607         are ANSI/Unicode versions of this function.
6608
6609 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6610
6611         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6612         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6613         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6614         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6615         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6616         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6617         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6618         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6619         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6620         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6621         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6622         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6623         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6624         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6625         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6626         RIDI_DEVICEINFO): Add constants.
6627
6628         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6629         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6630         RAWINPUTDEVICELIST): Add structures.
6631
6632         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6633         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6634         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6635
6636         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6637         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6638         GetRegisteredRawInputDevices): Add functions.
6639
6640 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6641
6642         * include/winable.h (BlockInput): Add function.
6643
6644         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6645         For use with WINDOWINFO structure.
6646
6647         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6648         Add function.
6649
6650         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6651         Add function.
6652
6653         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6654         Add function...
6655
6656         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6657         ...and duplicate.
6658
6659         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6660         Guard function...
6661
6662         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6663         ...and duplicate.
6664
6665         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6666         Guard function...
6667
6668         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6669         ...and duplicate.
6670
6671         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6672         HARDWAREINPUT, INPUT): Guard structures...
6673
6674         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6675         HARDWAREINPUT, INPUT): ...and duplicate.
6676
6677         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6678         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6679
6680         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6681         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6682
6683         * include/winuser.h: Move around some lines. Reformat according
6684         to recommended or dominant style. Remove FAR keyword.
6685
6686         * include/winable.h: Move around some lines.
6687
6688         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6689         LockWorkStation, UnhookWinEvent): Add functions.
6690
6691 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6692
6693         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6694         PW_CLIENTONLY): Add function and constant.
6695
6696         * lib/user32.def (PrintWindow): Add function.
6697
6698 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6699
6700         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6701
6702         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6703
6704 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6705
6706         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6707         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6708         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6709
6710         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6711
6712 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6713
6714         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6715         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6716         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6717
6718         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6719         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6720         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6721
6722         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6723         Add function.
6724
6725         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6726         Add functions.
6727
6728 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6729
6730         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6731         ACE_OBJECT_TYPE_PRESENT): Add constants.
6732         For use with OBJECTS_AND_NAME structure.
6733
6734 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6735
6736         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6737         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6738         void* instead.
6739
6740         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6741         PINHERITED_FROM[AW]): Add structures.
6742
6743         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6744
6745 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6746
6747         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6748
6749 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6750
6751         * lib/version.def (LIBRARY): Quote name.
6752
6753 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6754
6755         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6756         and constants.
6757
6758         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6759         GR_USEROBJECTS): Add functions and constants.
6760
6761         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6762         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6763
6764         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6765         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6766         constants.
6767
6768         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6769         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6770
6771 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6772
6773         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6774         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6775         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6776         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6777         BSF_RETURNHDESK): Add functions and constants.
6778
6779         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6780         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6781
6782         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6783         GetProcessDefaultLayout, SetProcessDefaultLayout,
6784         RealChildWindowFromPoint, SetProcessDefaultLayout,
6785         SwitchToThisWindow): Add functions.
6786
6787         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6788         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6789         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6790         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6791         RealChildWindowFromPoint, SetProcessDefaultLayout,
6792         SwitchToThisWindow): Add function.
6793
6794 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6795
6796         * include/winuser.h (DeregisterShellHookWindow): Add function.
6797
6798         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6799
6800         * lib/user32.def (EndTask): Add function.
6801
6802         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6803         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6804
6805         * include/winable.h: Reorder target macros.
6806
6807         * lib/*.def: Cleanup.
6808
6809 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6810
6811         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6812         function.
6813
6814         * lib/user32.def (AnimateWindow): Add function. By the way
6815         there are ~ 140 symbols missing from this file when comparing
6816         to user32.dll on Windows XP.
6817
6818 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6819
6820         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6821         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6822         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6823         AnimateWindow().
6824
6825 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6826
6827         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6828         LPGUITHREADINFO): Add function and associated typedef...
6829
6830         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6831         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6832         seems to be required on older versions of Windows.
6833
6834 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6835
6836         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
6837         function. MSDN suggests using gluErrorUnicodeStringWIN
6838         instead of gluErrorString, as it allows both ANSI and Unicode
6839         error strings.
6840
6841         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
6842         returned pointer const for consistency reasons.
6843
6844 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6845
6846         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
6847         Function exists in glu32.def but is undocumented on MSDN.
6848         A Google search came up with this declaration.
6849
6850 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6851
6852         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
6853         headers from OpenGL Sample Implementation. Windows ships with
6854         GLU 1.2 so some constants and functions were removed. Then some
6855         typedef's and function declarations were reworked to look like
6856         the previous GL/glu.h.
6857
6858 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6859
6860         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
6861         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
6862         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
6863
6864         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
6865         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
6866         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
6867         and `enum THEMESIZE'.
6868
6869 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6870
6871         * include/uxtheme.h: New file.
6872         * include/tmschema.h: New file.
6873         * include/uxtheme.def: New file.
6874         * lib/test.c: Include uxtheme.h, tmschema.h.
6875
6876 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6877
6878         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
6879         Add defines.
6880
6881 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6882
6883         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6884         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
6885         <winable.h> as seems to be required on older versions of
6886         Windows.
6887
6888 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6889
6890         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
6891         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6892         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
6893         Add defines, the last one only on Windows XP...
6894
6895         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
6896         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6897         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
6898         them in <winable.h> as seems to be required on older
6899         versions of Windows.
6900
6901 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6902
6903         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
6904         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6905         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6906         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
6907         back into <winuser.h>...
6908
6909         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
6910         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6911         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6912         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
6913         comment out in <winable.h>. MSDN may say <winable.h> but this
6914         breaks many programs. It seems it used to be <winable.h> on
6915         older versions of Windows.
6916
6917 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
6918
6919         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
6920         Thanks to Will Levine  <willll@users.sourceforge.net>
6921
6922 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6923
6924         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
6925         const struct sockaddr*.
6926         (LPWSPCONNECT): Likewise.
6927         (LPWSPJOINLEAF): Likewise.
6928         (LPWSPSENDTO): Likewise.
6929         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
6930
6931 2003-09-15  Filip Navara  <xnavara@volny.cz>
6932
6933         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
6934         Add definitions.
6935
6936 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
6937
6938         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
6939         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
6940         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
6941         DISPLAY_DEVICE_MODESPRUNED): Define constants.
6942         (ChangeDisplaySettingsEx[A,W]): Add prototype.
6943
6944         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
6945         (EnumDisplayDevices[A,W]): Likewise.
6946
6947 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6948
6949         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
6950         throughout.
6951
6952 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6953
6954         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6955         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6956         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6957         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6958         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
6959         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6960         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6961         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
6962         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6963         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6964         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6965         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6966         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
6967         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6968         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6969         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
6970         with documentation.
6971         * include/olectl.h: Do #include <ocidl.h>.
6972         * include/ocidl.h: Don't #include <olectl.h>.
6973
6974 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6975
6976         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
6977         Change guards to use numeric constants, throughout.
6978
6979 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
6980
6981         * include/w32api.h: Increment version to 2.5.
6982         * Makefile.in: Ditto.
6983
6984 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
6985
6986         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
6987         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
6988
6989 2003-09-08  Filip Navara  <xnavara@volny.cz>
6990
6991         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
6992         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
6993
6994 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
6995
6996         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
6997         * include/winbase.h (_NT5, etc): Ditto.
6998
6999 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7000
7001         * lib/snmpapi.def (LIBRARY) Add library name.
7002         Remove '\r', throughout.
7003         * lib/wsnmp32.def: Remove '\r', throughout.
7004         * lib/igmpagnt.def: Likewise.
7005
7006 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7007
7008         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7009         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7010         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7011         (MWMO_*): Add flags.
7012
7013         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7014         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7015         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7016         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7017
7018 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7019
7020         * lib/test.c: Add vfw.h to includes.
7021         * include/mmsystem.h: Add #ifndef guard to definition of
7022         mmioFOURCC macro.
7023         * include/vfw.h: Protect __OBJC__ from COM declarations.
7024
7025 2003-08-26  Filip Navara  <xnavara@volny.cz>
7026
7027         * include/vfw.h: New file.
7028
7029 2003-08-26  Filip Navara  <xnavara@volny.cz>
7030
7031         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7032         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7033         PIO_COMPLETION_ROUTINE.
7034
7035 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7036
7037         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7038         includes.
7039
7040 2003-08-26  Filip Navara  <xnavara@volny.cz>
7041
7042         * include/snmp.h: New file.
7043         * include/winsnmp.h: New file.
7044         * include/mgmtapi.h: New file.
7045         * lib/snmpapi.def: New file.
7046         * lib/wsnmp32.def: New file.
7047         * lib/igmpagnt.def: New file.
7048         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7049         (SnmpMgrGetTrapEx): Ditto.
7050         (SnmpMgrMIB2Disk): Remove.
7051         (dbginit): Remove.
7052
7053 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7054
7055         * include/ddk/ntifs.h: Change all C++ style comments to C.
7056         * include/GL/gl.h: Ditto.
7057
7058 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7059
7060         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7061         (SFGAO_HIDDEN): Add define.
7062
7063 2003-08-25  Filip Navara  <xnavara@volny.cz>
7064
7065         * include/commctrl.h (ILCF_*): Add defines.
7066         (ILD_*): Ditto.
7067         (HDS_*): Ditto.
7068         (IPN_FIRST, IPN_LAST): Cast to UINT.
7069         (SBN_FIRST, SBN_LAST): Add defines.
7070         (PGN_*): Ditto.
7071         (HDF_JUSTIFYMASK): Fix typo.
7072         (HDM_*): Add defines.
7073         (HICF_*): Ditto.
7074         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7075         (TBSTATE_MARKED): Add define.
7076         (TBSTYLE_EX_*): Add defines.
7077         (TBCDRF_*): Ditto.
7078         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7079         (TB_*): Ditto.
7080         (TBN_*): Ditto.
7081         (TBNRF_*): Ditto.
7082         (TTF_*): Ditto.
7083         (TBCD_*): Ditto.
7084         (TBDDRET_*): Ditto.
7085         (TBIMHT_*): Ditto.
7086         (TTM_*): Ditto.
7087         (UDM_*): Ditto.
7088         (TBIF_BYINDEX): Define as hex constant.
7089         (CDIS_*): Add defines.
7090         (CDDS_SUBITEM): Add define.
7091         (LVIF_*): Add defines.
7092         (LVM_*): Ditto.
7093         (LVGIT_UNFOLDED): Add define.
7094         (TVM_): Add defines.
7095         (TVE_EXPANDPARTIAL): Add define.
7096         (TVGN_LASTVISIBLE): Ditto.
7097         (TVN_*): Add defines.
7098         (TVNRET_*): Add defines.
7099         (TCIF_STATE): Add define.
7100         (NM_TOOLTIPSCREATED): Ditto.
7101         (CCM_*): Add defines.
7102         (INFOTIPSIZE): Add numeric value.
7103         (ODT_LISTVIEW): Ditto.
7104         (MCM_GETMAXTODAYWIDTH): Ditto.
7105         (MCHT_*): Add defines.
7106         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7107         (PGF_*): Add defines.
7108         (PGM_*): Ditto.
7109         (TBINSERTMARK): Add structure.
7110         (LPIMAGEINFO) Add typedef.
7111         (LPHDHITTESTINFO): Ditto.
7112         (NMLVGETINFOTIP[AW]: Add structures.
7113         (NMTBCUSTOMDRAW): Add structure.
7114         (TTTOOLINFOA_V*_SIZE): Add macros.
7115         (TTTOOLINFOW_V1_SIZE): Ditto.
7116         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7117         (LVITEM[AW]: Ditto.
7118         (TCITEM[AW]):Ditto.
7119         (CCSIZEOF_STRUCT): Correct macro definition.
7120         (ListView_*): Add new macros.
7121         (HIMAGELIST): Correct typedef.
7122         (HTREEITEM): Ditto.
7123
7124 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7125
7126         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7127         TCHITTESTINFO for backward compatibility.
7128         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7129         compatibility.
7130
7131 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7132
7133         * include/objidl.h (COBJMACROS): Define macros only
7134         if using C interace.
7135         * include/unknwn.h: Ditto.
7136         * include/comcat.h: Ditto.
7137
7138 2003-08-24  Filip Navara  <xnavara@volny.cz>
7139
7140         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7141         PSH_NOCONTEXTHELP): Define.
7142         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7143         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7144         (LPDLGTEMPLATE[AW]): Add typedefs.
7145
7146 2003-08-22  Filip Navara  <xnavara@volny.cz>
7147
7148         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7149         Add prototypes.
7150         BuildImpersonateTrustee[AW]): Add prototypes.
7151         GetMultipleTrustee[AW]): Add prototypes.
7152         GetMultipleTrusteeOperation[AW]): Add prototypes.
7153
7154 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7155
7156         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7157
7158 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7159
7160         * include/shlobj.h (IPersistFolder::GetClassID):
7161         Correct declaration.
7162         (CMF_*) Add missing defines.
7163
7164 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7165
7166         * include/winuser.h (DC_BUTTONS): Add define.
7167
7168 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7169
7170         * include/winuser.h (DC_GRADIENT): Add define.
7171
7172 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7173
7174         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7175         older TBSTYLE_* constants.
7176
7177 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7178
7179         * include/commctrl.h (TB_*) Group defines together.
7180
7181 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7182
7183         * include/winuser.h (ICON_SMALL2): Define.
7184         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7185         Define.
7186         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7187         (IDragSourceHelper) Define interface.
7188         (IDropTargetHelper): Likewise.
7189         (IExtractIcon): Unicode it.
7190         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7191         OnStateChange and IncludeObject methods.
7192
7193 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7194
7195         * include/commctrl.h (TreeView_GetScrollTime,
7196         TreeView_SetScrollTime): Define macros.
7197         * include/winuser.h (GetShellWindow): Add prototype.
7198         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7199
7200 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7201
7202         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7203         IID_IDragSourceHelper): Declare.
7204         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7205         IID_IDragSourceHelper): Define.
7206
7207 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7208
7209         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7210         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7211         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7212
7213 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7214
7215         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7216         CGID_ShellServiceObject): Remove definitions.
7217         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7218
7219 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7220
7221         * include/shlobj.h (SHELLSTATE): Add structure.
7222         (SHGetSetSettings): Add prototype.
7223         (SHGetSettings): Add prototype.
7224         * lib/shell32.def (SHGetSetSettings): Add stub.
7225
7226 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7227
7228         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7229         (Header_OrderToIndex): Add macro.
7230         (Header_GetOrderArray): Add macro.
7231
7232         * include/commdlg.h (FR_MATCHALEFHAMZA,
7233         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7234
7235 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7236
7237         * include/commctrl.h (TVM_GETSCROLLTIME,
7238         TVM_SETSCROLLTIME): Add defines.
7239
7240 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7241
7242         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7243         (SHGetInstanceExplorer): Correct return type.
7244         (SHGetFolderPath[AW]): Likewise.
7245         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7246         for report.
7247
7248 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7249
7250         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7251
7252 2003-08-01  Filip Navara  <xnavara@volny.cz>
7253
7254         * include/winldap.h: New file.
7255         * include/ntldap.h: New file.
7256         * include/winber.h: New file.
7257         * lib/winldap32.def: New file.
7258
7259 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7260
7261         * include/ddk/atm.h: Remove stray '.';
7262
7263 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7264
7265         * include/ddk/winddk.h: Remove trailing ';' from macros,
7266         throughout. Add () around defines with cast returns, throughout.
7267
7268 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7269
7270         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7271         (SFGAOF, SHGDNF): Add typedef's.
7272         (SHCONTF): Extend enum.
7273
7274 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7275
7276         * include/shellapi.h: Include all structs within pshpack2.h/
7277         poppack.h block.
7278
7279 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7280
7281         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7282         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7283         _WIN32_WINDOWS, not WINVER.
7284         (AllowSetForegroundWindow,LockSetForegroundWindow,
7285         SetLayeredWindowAttributes): Likewise.
7286         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7287         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7288         Add stubs.
7289
7290 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7291
7292         * include/objidl.h (IMalloc): Fix typo.
7293
7294 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7295
7296         * include/dkk/ntifs.h: Fix typo in guard for
7297         #pragma GCC system_header.
7298
7299 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7300
7301         * include/objidl.h (PropVariant): Add CHAR cVal field
7302         to union.
7303         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7304         FMTID_UserDefinedProperties): Declare.
7305
7306 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7307
7308         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7309
7310 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7311
7312         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7313         DUPLICATE_SAME_ACCESS): Remove defines.
7314         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7315         ddk/ntapi.h defines.
7316         (SEM_*) : Likewise.
7317         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7318         ddk/ntifs.h defines.
7319         (FILE_*): Likewise.
7320         (MEM_IMAGE, SEC_*): Likewise.
7321         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7322         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7323         (TOKEN_*): Sync with ddk/ntifs.h defines.
7324         * include/ddk/ntapi.h: Add comments noting definitions in
7325         winbase.h.
7326         * include/ddk/ntifs.h: Add comments noting definitions in
7327         winnt.h.
7328         * include/ddk/winddk.h: Add comments noting definitions in
7329         winnt.h.
7330
7331 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7332
7333         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7334         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7335
7336 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7337
7338         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7339
7340 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7341
7342         Clean up warnings in ddk.
7343
7344         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7345         conditional on  __cplusplus.
7346         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7347         defines, throughout.
7348         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7349         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7350         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7351         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7352         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7353         defines, throughout.
7354         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7355         defines, throughout. Remove trailing semicolon from *_S 'structure'
7356         macro expansion, throughout. Remove trailing semicolon from
7357         DECLARE_UNKNOWN_STRUCT macro expansion.
7358         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7359         _ANONYMOUS_UNION.
7360         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7361         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7362         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7363         Add _ANONYMOUS_UNION.
7364         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7365         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7366         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7367         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7368         match proto in ntapi.h.
7369         (ZwSetInformationObject): Likewise.
7370         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7371         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7372         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7373         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7374         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7375         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7376         last comma.
7377         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7378         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7379         trailing semicolon when expanding macro.
7380         (GENERAL_LOOKASIDE_S): Likewise.
7381         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7382         Change inline to __inline, throughout.
7383         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7384
7385 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7386
7387         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7388         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7389         KPRIORITY.
7390         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7391         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7392         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7393         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7394         to anonymous structs.
7395
7396 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7397
7398         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7399
7400         * include/winuser.h (mouse_event): Correct type of fifth param,
7401         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7402
7403 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7404
7405         * include/winnt.h (HANDLE): Define based on STRICT filter.
7406         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7407         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7408
7409 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7410
7411         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7412         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7413         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7414         for report.
7415
7416 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7417
7418         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7419
7420 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7421
7422         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7423         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7424         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7425         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7426         (TPM_RECURSE): Add guard for Win98/Win2K.
7427         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7428
7429 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7430
7431         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7432         avoid user namespace conflicts.
7433
7434 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7435
7436         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7437         _IE3, _IE4, _IE5, _IE6): Add definitions.
7438         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7439         >= Win98.
7440         Change existing guards to use the above macro names as appropriate.
7441         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7442         Note: Also added to mingw/include/_mingw.h.
7443
7444 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7445
7446         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7447         PathFindSuffixArrayA, PathFindSuffixArrayW,
7448         PathFindExtensionA, PathFindExtensionW, StrStrW
7449         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7450         explicit type.
7451
7452 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7453
7454         * include/richedit.h (PARAFORMAT2): Add definition.
7455         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7456         missing constants.
7457
7458 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7459
7460         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7461         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7462         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7463         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7464
7465 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7466
7467         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7468         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7469         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7470         that these are obsolete no-ops.
7471
7472 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7473
7474         * include/winbase.h (GetProcessWorkingSetSize,
7475         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7476         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7477         Correct prototypes.
7478
7479 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7480
7481         * include/winuser.h (TPM_RECURSE): Add define.
7482
7483 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7484
7485         * lib/test.c: #include <powrprof.h>.
7486
7487 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7488
7489         * include/powerprof.h: New file.
7490         * lib/powerprof.def: New file.
7491
7492 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7493
7494         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7495         protection.
7496
7497 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7498
7499         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7500         hInstance members to HINSTANCE.
7501         Thanks to: Brenden T. <brenden@rcsis.com>
7502
7503 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7504
7505         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7506         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7507
7508 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7509
7510         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7511         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7512         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7513         Remove.
7514         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7515
7516 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7517
7518         * lib/oleacc.def: New file.
7519         * include/winable.h: New file.
7520         * include/oleacc.h: Add extern "C" guard.
7521         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7522         (AccessibleChildren, AccessibleObjectFromEvent,
7523         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7524         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7525         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7526         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7527         * include/winuser.h (NotifyWinEvent): Add prototype.
7528         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7529         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7530         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7531         OBJID_SOUND): Move from here to...
7532         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7533         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7534         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7535         OBJID_SOUND): Here, as per documentation.
7536         * lib/test.c: Include winable.h.
7537         * lib/user32.def (NotifyWinEvent): Add missing export.
7538
7539 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7540
7541         * include/winbase.h (HeapCompact): Correct prototype.
7542         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7543         SLIST_HEADER): Add.
7544
7545 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7546
7547         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7548
7549 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7550
7551         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7552
7553 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7554
7555         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7556         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7557
7558 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7559
7560         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7561         lpGlyphs field to LPWSTR.
7562
7563 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7564
7565         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7566         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7567         (PP_*): Add defines.
7568         (CryptContextAddRef): Add prototype.
7569         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7570
7571 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7572
7573         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7574
7575 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7576
7577         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7578         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7579         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7580         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7581         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7582         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7583         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7584         readability.
7585         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7586         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7587
7588 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7589
7590         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7591         Unname anonymous unions if NONAMELESSUNION not defined.
7592
7593 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7594
7595         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7596
7597 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7598
7599         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7600         anonymous unions as GCC extension.
7601
7602 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7603
7604         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7605         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7606         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7607         commented out).
7608         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7609
7610 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7611
7612         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7613         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7614         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7615
7616 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7617
7618         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7619         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7620         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7621         IProvideClassInfo2,IConnectionPointContainer,
7622         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7623         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7624         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7625         IPicture,IPictureDisp): Move from here to...
7626         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7627         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7628         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7629         IProvideClassInfo2,IConnectionPointContainer,
7630         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7631         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7632         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7633         IPicture,IPictureDisp): Here, as per documentation.
7634
7635 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7636
7637         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7638         * include/winbase.h (TerminateJobObject,
7639         AssignProcessToJobObject): Likewise.
7640         * include/servprov.h: New header.
7641         * lib/test.c: Include servprov.h.
7642
7643 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7644
7645         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7646         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7647         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7648         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7649         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7650         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7651
7652 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7653
7654         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7655         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7656         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7657
7658 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7659
7660         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7661         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7662         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7663         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7664         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7665         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7666         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7667
7668 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7669
7670         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7671
7672 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7673
7674         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7675         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7676
7677 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7678
7679         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7680         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7681         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7682
7683 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7684
7685         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7686
7687 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7688
7689         * include/oaidl.h (ITypeMarshal): Add interface.
7690
7691 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7692
7693         * include/winioctl.h: Clean up formatting.
7694         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7695         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7696         (DISK_CACHE_INFORMATION): Likewise.
7697         (DISK_DETECTION_INFO): Likewise.
7698         (DISK_PARTITION_INFO): Likewise.
7699         (PARTITION_INFORMATION_EX): Likewise.
7700         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7701
7702 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7703
7704         * include/winbase.h (DeleteVolumeMountPoint[AW],
7705         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7706         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7707         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7708         SetVolumeMountPoint[AW]): Add prototypes.
7709         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7710         IOCTL_DISK_SET_PARTITION_INFO_EX,
7711         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7712         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7713         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7714         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7715         IOCTL_DISK_GET_CACHE_INFORMATION,
7716         IOCTL_DISK_SET_CACHE_INFORMATION,
7717         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7718         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7719         FSCTL_MOVE_FILE): Define.
7720         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7721         DISK_CACHE_INFORMATION,
7722         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7723         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7724         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7725         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7726         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7727         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7728         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7729         MOVE_FILE_DATA,
7730         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7731         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7732         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7733         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7734         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7735         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7736         F3_240M_512, and F3_32M_512.
7737         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7738         stubs.
7739
7740 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7741
7742         * include/wingdi.h (DM_SPECVERSION): Define.
7743         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7744         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7745         appropriate _WIN32_WINNT values.
7746
7747 2003-04-15  Chris January  <chris@atomice.net>
7748
7749         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7750         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7751
7752 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7753
7754         * include/winuser.h (VK_*): Add missing defines.
7755
7756 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7757
7758         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7759         documented typedefs for struct _NM_UPDOWN.
7760         Add defines for backward comapatibility.
7761         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7762         * include/wininet.h (IRF_*): Add missing defines.
7763
7764 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7765
7766         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7767
7768 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7769
7770         * include/sspi.h: Add comment for FreeCredentialsHandle.
7771
7772 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7773
7774         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7775
7776 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7777
7778         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7779
7780 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7781
7782         * lib/uuid.c (IID_IHTML*): Move definitions to...
7783         * lib/mshtml-uuid.c: New file.
7784         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7785
7786 2003-03-30  Michael Sazonov  <traip@comset.net>
7787
7788         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7789         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7790         IHTMLImgElement): Add interface definitions.
7791
7792 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7793
7794         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7795         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7796         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7797         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7798         RC_INVOKED guard.
7799         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7800         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7801
7802 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7803
7804         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7805
7806 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7807
7808         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7809         TranslateName[AW]): Add prototypes.
7810         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7811         TranslateName[AW]): Add stubs.
7812         * lib/test.c: Include secext.h.
7813
7814 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7815
7816         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7817         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7818         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7819         _SpinLock.
7820
7821 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7822
7823         * include/w32api.h: Increment version to 2.4.
7824         * Makefile.in: Ditto.
7825
7826 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7827
7828         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7829         Move structure from here...
7830         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7831
7832         * include/ddk/ntapi.h (JOBOBJECT_*):
7833         Remove structures and enums definitions.
7834         (JOB_OBJECT*): Move defines from here...
7835         * include/winnt.h (JOB_OBJECT* ): To here.
7836
7837         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
7838         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7839         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7840         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7841         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7842         SYSTEM_POWER_CAPABILITIES): Move enums, structures
7843         and associated defines from here ...
7844         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
7845         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7846         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7847         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7848         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7849         SYSTEM_POWER_CAPABILITIES):To here.
7850
7851         * include/ddk/winddk.h (DEVICE_POWER_STATE,
7852         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
7853         from here...
7854         * include/winnt.h (DEVICE_POWER_STATE,
7855         SYSTEM_POWER_STATE, POWER_ACTION): To here.
7856
7857 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
7858
7859         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
7860         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
7861         (NdisUpdateSharedMemory): Likewise.
7862         (NdisMFreeSharedMemory: Likewise.
7863         (NdisMMapIoSpace: Likewise.
7864
7865 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
7866
7867         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
7868         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
7869         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
7870
7871 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
7872
7873         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
7874         (EnumResourceNames[AW]): Ditto.
7875         (EnumResourceTypes[AW]): Ditto.
7876         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
7877
7878 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
7879
7880         * include/winuser.h (SendInput): Add prototype.
7881         * lib/user32.def (SendInput): Add stub.
7882
7883 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
7884
7885         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
7886         (FSCTL_DELETE_REPARSE_POINT): Likewise.
7887
7888 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
7889
7890         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
7891         (JOBOBJECT_*): Define corresponding structures.
7892
7893 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
7894
7895         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
7896         typedef.
7897
7898 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
7899
7900         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
7901         (Process32{First,Next}{,W}): Ditto.
7902         (Thread32{First,Next}): Ditto.
7903         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
7904
7905 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
7906
7907         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
7908         Thanks to Jim Barton <jmbarton@users.sf.net>.
7909
7910 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
7911
7912         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
7913         member SectionAlignment.
7914
7915 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
7916
7917         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
7918         warnings.
7919         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
7920         * Makefile.in (bindist): Correct process.
7921         * lib/Makefile.in (install): Ditto.
7922         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
7923
7924 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
7925
7926         * include/rasdlg.h: New file.
7927         * lib/rasdlg.def: New file.
7928         * lib/test.c: Include rasdlg.h.
7929
7930 2003-03-06  Christopher January  <chris@atomice.net>
7931
7932         * include/winbase.h (FindFirstVolume): Add declaration.
7933         (FindNextVolume): Add declaration.
7934         (FindVolumeClose): Add declaration.
7935         (GetSystemTimes): Add declaration.
7936         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
7937
7938 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
7939
7940         *lib/kernel32.def (GetSystemTimes): Add stub.
7941
7942 2003-03-04  Heiko Gerdau  <hg@technosis.de>
7943
7944         * oleidl.h (IOleObject): Correct GetUserType prototype.
7945         (IViewObject2): Correct GetExtent prototype.
7946         * olectl.h (DISPIP_): Add new defines
7947         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
7948
7949 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7950
7951         * include/olectl.h (OleLoadPictureEx) Add prototype.
7952         (OleLoadPictureFile): Ditto.
7953         (OleLoadPictureFileEx): Ditto.
7954         (OleLoadPicturePath): Ditto.
7955         (OleSavePictureFile): Ditto.
7956
7957 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7958
7959         * include/objbase.h (CoAddRefServerProcess): Add prototype.
7960         (CoAddReleaseServerProcess): Ditto.
7961         (CoResumeClassObjects): Ditto.
7962         (CoSuspendClassObjects): Ditto.
7963         * include/oleauto.h (V_I1): Define.
7964         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
7965
7966 2003-03-01  Heiko Gerdau  <hg@technosis.de>
7967
7968         * include/oleidl.h (USERCLASSTYPE): Add enum.
7969         * include/ocidl.h (IObjectWithSite): Add interface.
7970
7971 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
7972
7973         Fixup UNICODE thinko in 2003-02-22 patch.
7974         * include/wingdi.h (AddFontMemResourceEx): Add.
7975         (RemoveFontMemResourceEx): Ditto.
7976         (AddFontMemResourceEx[AW]): Remove.
7977         (RemoveFontMemResourceEx[AW]): Ditto
7978         * lib/gdi32.def: (AddFontResourceEx): Add.
7979         (RemoveFontMemResourceEx): Ditto.
7980         (AddFontMemResourceEx[AW]): Remove.
7981         (RemoveFontResourceEx[AW]): Ditto.
7982
7983 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
7984
7985         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
7986         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
7987
7988 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
7989
7990         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
7991         (RemoveFontMemResourceEx[AW]): Ditto
7992         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
7993         (RemoveFontMemResourceEx[AW]): Ditto.
7994
7995 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
7996
7997         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
7998         (NtCurrentTeb): Remove.
7999
8000 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8001
8002         * include/wsahelp.h: Remove ';' after closing
8003         #ifdef __cplusplus brace.
8004         * include/ws2spi.h: Likewise.
8005
8006 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8007
8008         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8009         (GlobalMemoryStatusEx): Add prototype.
8010         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8011
8012 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8013
8014         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8015
8016 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8017
8018         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8019         (RemoveFontResourceEx[AW]): Ditto
8020         (FR_PRIVATE): Define.
8021         (FR_NOT_ENUM): Define.
8022         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8023         (RemoveFontResourceEx[AW]): Ditto.
8024
8025 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8026
8027         * include/w32api.h: Increment version to 2.3.
8028         * Makefile.in: Ditto.
8029
8030 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8031
8032         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8033         (Ke386QueryToAccessMap): Ditto.
8034         (Ke386SetIoAccessMap): Ditto.
8035         Thanks to Marcel Telka <telka@users.sf.net>
8036         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8037         * include/security.h: Include secext.h.
8038         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8039         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8040         * include/GL/gl.h: Remove include of glext.h.
8041         Thanks to Greg Couch <gregcouch@users.sf.net>
8042
8043 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8044
8045         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8046         using GUID_DEFINED instead.
8047         * include/sqltypes.h: Ditto.
8048         * include/winnt.h: Ditto.
8049         * include/ddk/scsiwmi.h: Ditto.
8050
8051 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8052
8053         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8054         prototypes.
8055         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8056
8057 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8058
8059         * include/commctrl.h (TCM_*): Add missing defines.
8060
8061 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8062             Danny Smith  <dannysmith@users.sourceforge.net>
8063
8064         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8065         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8066         for (_WIN32_IE >= 0x0400).
8067         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8068         fields for (_WIN32_IE >= 0x0400).
8069
8070 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8071
8072         * include/winbase.h (CreateFiber): Change first parameter
8073         to SIZE_T.
8074         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8075         if (_WIN32_WINNT >= 0x0500).
8076
8077 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8078
8079         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8080         Add missing typedefs.
8081         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8082         prototypes.
8083         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8084
8085 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8086
8087         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8088         define.
8089         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8090
8091 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8092
8093         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8094         define.
8095         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8096         definition.
8097         (WAIT_FAILED): Cast to DWORD.
8098         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8099         definition.
8100
8101 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8102
8103         * include/winerror.h: Protect against multiple
8104         definition of WSA* error codes.
8105         * include/winsock.h: Likewise.
8106         * include/winsock2.h: Likewise.
8107
8108 2003-01-27  Bang Dong-Heui
8109             Bang Jun-Young  <junyoung@netbsd.org>
8110
8111         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8112         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8113         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8114
8115
8116 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8117
8118         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8119         (WINVER >= 0x501).
8120
8121 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8122
8123         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8124         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8125         fields for (WINVER >= 0x501).
8126
8127 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8128
8129         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8130         Add stubs.
8131         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8132         options.
8133
8134 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8135
8136         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8137         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8138
8139 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8140
8141         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8142         SE_REGISTRY_WOW64_32KEY.
8143         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8144
8145 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8146
8147         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8148         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8149         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8150
8151 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8152
8153         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8154
8155 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8156
8157         * lib/dxguid.c: Don't #include <objbase.h>.
8158         * include/unknwn.h: Partially revert change of 2002-12-26.
8159         Don't include <ole2.h>.
8160
8161 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8162
8163         * lib/dinput.c: Don't #include <objbase.h>.
8164
8165 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8166
8167         * include/windows.h (ole2.h):Do #include for
8168         __WATCOMC__.
8169
8170 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8171
8172         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8173         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8174         definition.
8175         (WHEEL_PAGESCROLL): Likewise.
8176         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8177
8178 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8179
8180         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8181         (WHEEL_PAGESCROLL): Add define.
8182
8183 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8184
8185         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8186         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8187         compatability. Add RECT field. Add UNICODE mappings for new
8188         names.
8189         (tagNMREBARCHEVRON): Add struct and typedefs for
8190         _WIN32_IE >= 0x0500.
8191
8192 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8193
8194         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8195         (LVHITTESTINFO): Likewise.
8196
8197         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8198         (GRADIENT_RECT): Likewise.
8199
8200 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8201
8202         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8203         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8204         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8205         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8206         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8207         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8208         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8209         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8210         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8211         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8212         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8213         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8214         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8215         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8216         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8217         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8218         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8219         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8220         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8221         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8222         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8223         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8224         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8225         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8226         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8227         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8228         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8229         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8230         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8231         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8232         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8233         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8234         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8235         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8236         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8237         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8238         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8239         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8240         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8241         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8242         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8243         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8244         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8245         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8246         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8247         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8248         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8249         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8250         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8251         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8252         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8253         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8254         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8255         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8256         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8257         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8258         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8259         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8260         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8261         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8262         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8263         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8264         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8265         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8266         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8267         Add missing error codes.
8268
8269 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8270
8271         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8272         asm code.
8273         (GetFiberData): Likewise.
8274
8275 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8276
8277         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8278         asm code.
8279         (GetFiberData): Likewise.
8280
8281 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8282
8283         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8284         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8285         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8286         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8287         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8288         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8289         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8290         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8291         error codes.
8292         Re-sort codes.
8293
8294 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8295
8296         * include/winspool.h (PRINTER_INFO_6): Add.
8297         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8298
8299 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8300
8301         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8302
8303         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8304         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8305         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8306         Add stubs.
8307
8308 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8309
8310         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8311         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8312
8313 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8314
8315         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8316
8317 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8318
8319         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8320         VIETNAMESE_CHARSET): Remove duplicate defines.
8321         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8322
8323 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8324
8325         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8326         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8327
8328 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8329
8330         * include/unknwn.h: Include windows.h and ole2.h before header
8331         guard to avoid circular inclusion of COM headers.
8332
8333 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8334
8335         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8336         ReuseDDElParam): Use __WIN64 compatible typedefs.
8337
8338 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8339
8340         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8341         lpInheritProperty member const.
8342         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8343         const.
8344
8345 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8346
8347         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8348         COM_NO_WINDOWS_H.
8349         * include/unknwn.h: Ditto.
8350
8351 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8352
8353         * include/imm.h (ImmGetCompositionFont[AW],
8354         ImmSetCompositionFont[AW]): Add NOGDI guard.
8355
8356 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8357
8358         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8359         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8360         before using.
8361         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8362         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8363         definition.
8364         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8365         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8366         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8367         definition.
8368         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8369         (LPCGUID): Likewise.
8370         * include/ddk/tdi.h: Close "Listen flags" comment.
8371         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8372         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8373         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8374         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8375         * include/ddk/win2k.h: Likewise.
8376         * include/ddk/winddi.h: Likewise.
8377         * include/ddk/winddk.h: Likewise.
8378         * include/ddk/winnt4.h: Likewise.
8379         * include/ddk/ws2san.h: Likewise.
8380         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8381         * include/ddk/video.h: Don't process rest of file ifdef
8382         __WINDDI_H.
8383         * include/ddk/winddi.h: Don't process rest of file ifdef
8384         __VIDEO_H.
8385         * include/ddk/usb.h: Don't process rest of file ifdef
8386         __USBDI_H.
8387         * include/ddk/usbdi.h: Don't process rest of file ifdef
8388         __USB_H.
8389         * include/ddk/usbcamdi.h: Don't process rest of file if
8390         !defined(__USB_H) && !defined(__USBDI_H)
8391
8392 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8393
8394         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8395         prototypes.
8396         * include/winuser.h (GetAncestor) Add prototype.
8397         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8398         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8399         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8400         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8401         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8402         defines.
8403         * lib/user32.def (GetAncestor@8): Add stub.
8404
8405 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8406
8407         * include/windows.h: Guard inclusion of wingdi.h,
8408         commdlg.h, winspool.h, ole2.h with NOGDI.
8409         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8410         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8411         Guard with NOGDI.
8412
8413 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8414
8415         * include/oleacc.h (SELFLAG_*): Change to enum.
8416
8417 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8418
8419         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8420         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8421
8422 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8423
8424         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8425         to UINT.
8426         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8427
8428 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8429
8430         * include/winuser.h (AllowSetForegroundWindow,
8431         LockSetForegroundWindow): Add prototypes.
8432         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8433         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8434         * lib/winuser.def (AllowSetForegroundWindow,
8435         LockSetForegroundWindow): Add stubs.
8436
8437 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8438
8439         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8440         UNICODE mappings.
8441         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8442         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8443         compatability. Add lParam field. Add UNICODE mappings for new
8444         names.
8445
8446 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8447
8448         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8449         Wrap with pshpack2.h/poppack.h to correct alignment.
8450
8451 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8452
8453         * include/commctrl.h (LVBKIF_*): Add defines.
8454         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8455         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8456         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8457         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8458         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8459         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8460         (ListView_GetBkImage): Add define.
8461         (ListView_SetBkImage): Add define.
8462         (LVBKIMAGE): Add structures and typedefs.
8463
8464 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8465
8466         * include/w32api.h: Increment to version 2.2
8467         * Makefile.in: Ditto.
8468
8469 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8470
8471         * lib/Makefile.in (dist, install): Correct the install destinations.
8472         * lib/ddk/Makefile.in (dist, install): Ditto.
8473
8474 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8475
8476         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8477         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8478         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8479         in definitions.
8480         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8481         IID_IOleControlSite89): Remove.
8482
8483 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8484
8485         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8486         (IID_IStdMarshalInfo): Ditto.
8487
8488 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8489
8490         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8491         (IID_IPersistStorage): Ditto.
8492
8493 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8494
8495         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8496         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8497         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8498         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8499         Correct definitions.
8500
8501 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8502
8503         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8504         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8505         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8506         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8507         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8508         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8509         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8510         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8511         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8512         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8513         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8514         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8515         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8516         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8517         xfilter.h): Change comment to refer w32api package, not MinGW.
8518
8519 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8520
8521         * include/ddk/ntddk.h: Include winnt.h as system header.
8522
8523 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8524
8525         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8526         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8527         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8528         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8529         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8530         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8531         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8532         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8533         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8534         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8535         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8536         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8537         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8538         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8539         xfilter.h): Fix typo in disclaimer comment.
8540
8541 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8542
8543         * include/exdisp.h: Include oaidl.h as system header.
8544
8545 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8546
8547         * include/w32api.h (__W32API_VERSION): Fix.
8548
8549 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8550
8551         * lib/uuid.c (IID_ICatInformation): Correct definition.
8552
8553 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8554
8555         * include/oleauto.h (DeregisterTypeLib): Remove.
8556         (UnRegisterTypeLib): Add prototype.
8557
8558 2002-11-07  Christopher January  <chris@atomice.net>
8559
8560         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8561
8562 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8563
8564         * include/winnt.h (VerSetConditionMask): Add prototype.
8565         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8566
8567 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8568
8569         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8570         definitions and ANSI/UNICODE mappings.
8571         Cleanup whitespace.
8572
8573 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8574
8575         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8576         * configure.in: Ditto.
8577         * lib/Makefile.in: Ditto.
8578         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8579         autoconf-2.53.
8580         * configure: Regenerate.
8581
8582 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8583
8584         * include/windows.h: Don't include basetyps.h.
8585         * include/objfwd.h: Do include basetyps.h.
8586
8587 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8588
8589         * include/objbase.h: Include rpc.h and rpcndr.h
8590         before header guard.
8591
8592 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8593
8594         * include/olectl.h (PROPPAGEINFO): Change type of
8595         field cb to ULONG.
8596
8597 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8598
8599         * lib/ntdll.def (RtlAcquireResourceExclusive,
8600         RtlAcquireResourceShared, RtlDeleteResource,
8601         RtlInitializeResource, RtlReleaseResource,
8602         RtlTimeToSecondsSince1970) : Added missing exports.
8603
8604 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8605
8606         * include/oleacc.h: New file.
8607         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8608         (OBJID_*) Add defines.
8609         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8610         * lib/test.c: Include oleacc.h.
8611
8612 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8613
8614         * include/ddk: New subdir.
8615         * lib/ddk: Ditto.
8616         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8617         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8618         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8619         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8620         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8621         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8622         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8623         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8624         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8625         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8626         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8627         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8628         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8629         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8630         xfilter.h): New files.
8631         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8632         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8633         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8634         win32k.def): Ditto.
8635
8636 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8637
8638         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8639         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8640         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8641         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8642         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8643         RtlAddAccessAllowedAce, RtlCreateAcl,
8644         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8645         RtlGetAce, RtlGetControlSecurityDescriptor,
8646         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8647         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8648         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8649         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8650         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8651         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8652         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8653         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8654         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8655         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8656         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8657         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8658         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8659
8660 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8661
8662         *include/windef.h (WPARAM): Update typedef.
8663         (LPARAM): Ditto.
8664         (LRESULT): Ditto.
8665
8666 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8667
8668         * include/shlobj.h (CSIDL_*): Add defines.
8669
8670 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8671
8672         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8673         has been included first.
8674
8675 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8676
8677         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8678         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8679         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8680
8681 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8682
8683         * include/winuser.h (DS_SHELLFONT): Define.
8684
8685 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8686
8687         * include/winnt.h (VER_SUITE_BLADE): Define.
8688
8689 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8690
8691         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8692         Add _WIN32_IE guard. Correct prototype for wide version.
8693         (SHGetFolderPath): Add comment on shfolder.dll.
8694         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8695         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8696
8697 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8698
8699         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8700         * lib/shfolder.def: New file.
8701
8702 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8703
8704         * include/winsock.h (timeval): Guard struct and associated
8705         macros with _TIMEVAL_DEFINED.
8706         * include/winsock2.h (timeval): Likewise.
8707
8708 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8709
8710         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8711         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8712         SHCreateShellItem,SHEmptyRecycleBin[AW],
8713         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8714         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8715         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8716         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8717         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8718         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8719         SHLoadNonloadedIconOverlayIdentifiers,
8720         SHOpenFolderAndSelectItems,SHParseDisplayName,
8721         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8722         SHSetLocalizedName,SHSetUnreadMailCountW,
8723         SHUpdateRecycleBinIcon: Add missing stubs.
8724
8725 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8726
8727         * include/windef.h (WINVER): Add documentation.
8728         (_WIN32_WINNT): Ditto.
8729         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8730
8731 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8732
8733         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8734
8735 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8736
8737         * include/winbase.h (AllocateUserPhysicalPages,
8738         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8739         FreeUserPhysicalPages): Add prototypes.
8740         * lib/kernel32.def: Add function stubs for above.
8741
8742 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8743
8744         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8745         Add WINVER guards for dialog box command id defines.
8746
8747 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8748
8749         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8750
8751 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8752
8753         * include/wincon.h: Define GetConsoleWindow(void).
8754
8755 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8756
8757         * include/w32api.h: Increment version to 2.1.
8758         * Makefile.in: Ditto.
8759
8760 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8761
8762         * include/winsock2.h (SOCKET_ADDRESS): Define if
8763         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8764         (CSADDR_INFO): Ditto.
8765         (nspapi.h) : Don't include. Removed FIXME comment.
8766         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8767         __CSADDR_T_DEFINED is not defined.
8768         (CSADDR_INFO): Ditto.
8769         (BLOB): Add structure and typedef if not already defined.
8770         (NS_*): Add defines.
8771         (SERVICE_*): Ditto.
8772         (SERVICE_ADDRESS): Add structure and typedefs.
8773         (SERVICE_ADDRESSES): Ditto.
8774         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8775         (LPSERVICE_ASYNC_INFO): Add typedef.
8776         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8777         mappings.
8778         * include/wsipx.h: New file.
8779         * include/svcguid.h: New file.
8780         * lib/test.c: Include wspix.h and svcguid.h.
8781
8782 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8783
8784         * include/wsahelp.h: New file.
8785         * lib/test.c: Include wsahelp.h.
8786
8787 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8788
8789         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8790         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8791
8792 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8793
8794         * include/ws2spi.h: Modify comment about being part of
8795         mingw32 package.
8796         (winsock2.h): Change "" to <>.
8797
8798 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8799
8800         * include/ws2spi.h: New file.
8801         * lib/test.c: Include ws2spi.h.
8802
8803 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8804
8805         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8806         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8807         functions.
8808
8809 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8810
8811         * include/winuser.h (CURSOR_SHOWING) Add define.
8812         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8813
8814 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8815
8816         * include/winerror.h: Cast OLE error codes to HRESULT.
8817         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8818
8819 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8820
8821         * include/wincrypt.h (ALG_*): Add defines.
8822         (CALG_*): Ditto.
8823         (CRYPT_*): Ditto.
8824         (PP_*): Ditto.
8825         (PROV_*): Ditto.
8826         (PRIVATEKEYBLOB): Add define.
8827
8828 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8829
8830         * include/shlobj.h (SHGetFolderPath): Add define.
8831         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8832         (SHGetFolderPath): Ditto.
8833
8834 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8835
8836         * include/commdlg.h: Don't include COM headers or use
8837         COM-dependent symbols if __OBJC__.
8838
8839 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8840
8841         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
8842         Add prototypes.
8843
8844 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
8845
8846         * include/shellapi.h (FOF_NOERRORUI): Add define.
8847
8848 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
8849
8850         * include/objidl.h (IEnumMoniker): Put 'interface' back.
8851
8852 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
8853
8854         * include/objidl.h (IEnumMoniker): Correct declaration.
8855
8856 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
8857
8858         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
8859
8860 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
8861
8862         * include/commctrl.h: Whitespace change.
8863
8864 2002-08-09  Lars Munch  <lars@segv.dk>
8865
8866         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
8867         struct name _TVHITTESTINFO and typedefs and add defines for
8868         backward compatability.
8869         (ListView_SetExtendedListViewStyleEx): Add macro.
8870
8871 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
8872
8873         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
8874         Add prototypes.
8875         * lib/msimg32.def: New file, with stubs for above.
8876
8877 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
8878
8879         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
8880         GetFileSizeEx, SetFilePointerEx): Add prototypes.
8881         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
8882         and UNICODE mappings.
8883
8884 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
8885
8886         * include/winbase.h (ReadFileScatter, WriteFileGather):
8887         Change second parameter to pointer.
8888
8889 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
8890
8891         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
8892         UNICODE mappings.
8893         * lib/wininet.def: Regenerate.
8894
8895 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
8896
8897         * include/windef.h (PVOID): Move typedef to...
8898         * include/winnt: ...here.
8899         (PVOID64): New typedef.
8900
8901         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
8902         * include/winbase.h (ReadFileScatter, WriteFileGather):
8903         Add prototypes.
8904
8905         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
8906         (PROCESSOR_INTEL_IA64): Add define.
8907
8908 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8909
8910         * include/oleidl.h (MK_ALT): Define.
8911
8912 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8913
8914         * include/exdisp.h: New file.
8915         * include/exdispid.h: New file.
8916         * include/mshtml.h: New file.
8917         * lib/test.c: #include exdisp.h and mshtml.h
8918         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
8919         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
8920         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
8921         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
8922         New GUIDs.
8923
8924 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8925
8926         * include/docobj.h: New file.
8927         * include/idispids.h: New file.
8928         * include/objidl.h (IID_IMoniker): Declare.
8929         * include/ocidl.h (READYSTATE): New enum.
8930         (IOleInPlaceSiteEx): New interface.
8931         * include/olectlid.h (IID_IEnumSTATSTG): New interface
8932         identifier.
8933         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
8934         IOleInPlaceSite): New interfaces.
8935         * lib/test.c: #include docobj.h,idispids.h,
8936
8937 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8938
8939         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
8940         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
8941
8942 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
8943
8944         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
8945         * include/commdlg.h: Likewise.
8946
8947 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
8948
8949         * include/oleauto.h (V_UNION): Correct definition for case of
8950         NONAMELESSUNION:
8951         (V_VT): Likewise.
8952
8953 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
8954
8955         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
8956         not bool, for C as well as C++.
8957
8958 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
8959
8960         * include/shlwapi.h: New file.
8961         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
8962         Victor Porton  <porton@narod.ru> for contributions.
8963         * lib/shlwapi.def: New file.
8964         * lib/test.c: #include shlwapi.h.
8965
8966 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
8967
8968         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
8969         character.
8970         * include/winsock2.h (struct sockaddr): Use __int64 instead of
8971         long long.
8972         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
8973         does not need external *Fiber library functions.
8974
8975 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8976
8977         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
8978         definition.
8979         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
8980         avoid compile error when already defined.
8981
8982 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
8983
8984         * include/winuser.h (WM_MENURBUTTONUP): Add define.
8985
8986 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8987
8988         * include/commdlg.h: Define CDN_* notification message constants
8989         as UINT.
8990
8991 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
8992
8993         * include/commctrl.h: Define notification message constants for
8994         NMHDR.code as UINT.
8995
8996 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
8997
8998         * include/ddeml.h (MH_*) Add defines.
8999         (MONHSZSTRUCT): Add structure and typedefs.
9000         (MONLINKSTRUCT): Ditto.
9001         (MONCONVSTRUCT): Ditto.
9002         (MONCBSTRUCT): Ditto.
9003         (MONERRSTRUCT): Ditto.
9004         (MONMSGSTRUCT): Ditto.
9005         * include/windef.h: Don't define __cdecl or _cdecl for
9006         __WATCOM__.
9007         Don't define _export or __export for __WATCOM__.
9008         * include/windows.h (imm.h): #include.
9009         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9010
9011 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9012
9013         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9014         rpcndr.h.
9015
9016 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9017
9018         * include/winbase.h (OpenThread): Add prototype.
9019         * lib/kernel32.def (OpenThread): Add symbol.
9020
9021 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9022
9023         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9024
9025 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9026
9027         * include/rpc.h: Conditionally include <windows.h> before
9028         header guard.
9029         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9030         header guard.
9031
9032 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9033
9034         * include/commctrl.h (WC_*): Remove some duplicate defines.
9035
9036 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9037
9038         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9039         UNICODE mappings.
9040         (IPM*): Add defines.
9041         (IPN_*): Add defines.
9042         (NMIPADDRESS): Add structure and typedefs.
9043         (MAKEIPADDRESS): Add macro.
9044         (MAKEIPRANGE): Add macro.
9045         (FIRST_IPADDRESS): Add macro.
9046         (SECOND_IPADDRESS): Add macro.
9047         (THIRD_IPADDRESS): Add macro.
9048         (FOURTH_IPADDRESS): Add macro.
9049
9050 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9051
9052         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9053
9054 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9055
9056         * include/winbase.h (WINBASEAPI): Don't define if prior
9057         definition.
9058
9059         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9060         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9061         PARTITION_UNIX): Add defines.
9062         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9063         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9064         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9065         (IsContainerPartition): Add macro.
9066
9067 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9068
9069         * include/commctrl.h: (CBEIF_*): Add defines.
9070         (CBEN_*): Add defines and UNICODE mappings
9071         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9072         (CBEMAXSTRLEN): Add define.
9073         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9074         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9075         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9076         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9077
9078 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9079
9080         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9081         union member _VARIANT_BOOL bool.
9082
9083 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9084
9085         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9086
9087 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9088
9089         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9090         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9091         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9092         Add typedefs.
9093         (CCHAR): Correct typedef.
9094         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9095         Add defines.
9096
9097 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9098
9099         * README.w32api: Correct spelling error.
9100
9101 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9102
9103         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9104         INPUT_HARDWARE): Add defines.
9105         (HDEVNOTIFY): Add typedef.
9106         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9107         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9108         typedefs.
9109         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9110         GetClassInfoEx[AW],GetKeyboardLayoutList,
9111         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9112         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9113         RegisterClassEx[AW]): Correct prototypes.
9114
9115 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9116
9117         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9118         prototypes.
9119         * include/winsvc.h (StartServiceW): Correct prototype.
9120         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9121         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9122         GetTickCount,InterlockedExchangeAdd,
9123         WritePrivateProfileStruct[AW]: Correct prototypes.
9124         (GetEnvironmentStrings): Correct mapping to
9125         GetEnvironmentStringsA.
9126         * include/winver.h (VerQueryValueA,VerQueryValueW):
9127         Correct prototypes.
9128         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9129         prototype.
9130         * include/winreg.h (RegQueryMultipleValues[AW],
9131         RegQueryValueEx[AW]):Correct prototypes.
9132         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9133         PPOLYTEXTW): Add typedefs.
9134         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9135         structures and typedefs.
9136         (MM_MAX_NUMAXES): Add define.
9137         (EnumFontsW,GetEnhMetaFilePixelFormat,
9138         wglGetLayerPaletteEntries): Correct prototypes.
9139         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9140         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9141         RPC_S_SEND_INCOMPLETE): Add defines.
9142
9143 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9144
9145         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9146         Add defines.
9147
9148 2002-06-16  Egor Duda  <deo@logos-m.ru>
9149
9150         * include/ntdll.h: New file.
9151         * lib/ntdll.def: Add NtShutdownSystem.
9152
9153 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9154
9155         * lib/dinput.def (DirectInputCreateEx): Add stub.
9156         * lib/ntdll.def: New file.
9157
9158 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9159
9160         * include/w32api.h: Change to version 2.0 to reflect the change
9161         in the license.
9162         * README: Renamed.
9163         * README.w32api: Renamed from README.  Modified license to remove
9164         the restriction of notifying the author based on the fact that the
9165         author is unreachable at the notified address.
9166         * Makefile.in (VERSION): Change to 2.0.
9167
9168 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9169
9170         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9171         * Makefile.in (bindist): Correct the MinGW distribution.
9172
9173 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9174
9175         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9176         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9177
9178 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9179
9180         * lib/test.c: #include comcat.h.
9181
9182 2002-06-13  John K. Hohm  <jhohm@acm.org>
9183
9184         * include/comcat.h: New file.
9185
9186 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9187
9188         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9189         (GETTEXTEX): Add structure definition.
9190
9191 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9192
9193         * include/windows.h (ole2.h): #include if !__OBJC__ and
9194         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9195
9196 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9197
9198         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9199
9200 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9201
9202         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9203         PACCESS_DENIED_ACE): Add typedefs.
9204
9205 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9206
9207         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9208
9209 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9210
9211         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9212
9213 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9214
9215         * include/windef.h: Fix typo in last change.
9216
9217 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9218
9219         * include/windef.h: Add no-op __try, __except, __finally
9220         defines from ...
9221         * include/excpt.h: Remove file.
9222         * include/windows.h: Don't include excpt.h.
9223
9224 2002-05-30  Christopher January  <chris@atomice.net>
9225
9226         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9227         Add missing typedefs.
9228
9229 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9230
9231         * include/w32api.h: Increment version to 1.5
9232         * Makefile.in: Ditto.
9233
9234
9235 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9236
9237         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9238         LP[W]STR with LPC[W]STR.
9239         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9240         Clean up whitespace.
9241
9242 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9243
9244         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9245
9246 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9247
9248         * Makefile.in: Increment VERSION to 1.4.
9249         (conf_prefix): New variable.
9250         (bindist): Modify target to use $(conf_prefix).
9251
9252 2002-05-20  Philip Aston  <philipa@mail.com>
9253
9254         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9255
9256 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9257
9258         * include/lmaccess.h: (NetAccess*, NetGroup*,
9259         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9260         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9261
9262 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9263
9264         * include/commctrl.h (ImageList_DragShowNolock): Remove
9265         conflicting redeclaration.
9266
9267 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9268
9269         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9270         STRICT and related defines to ...
9271         * include/windef.h: Here.
9272
9273 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9274
9275         * include/winsock2.h (int32): Remove typedef.
9276         (SERVICETYPE): Add typedef.
9277         (struct _flowspec):Revise struct definition,  Comment
9278         on types used for members.
9279
9280 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9281
9282         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9283         more defines added in earlier change.
9284         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9285
9286 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9287
9288         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9289         added in last change.
9290
9291 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9292
9293         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9294         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9295
9296 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9297
9298         * include/commctrl.h (SNDMSG): Define and use throughout
9299         in other macros instead of SendMessage.
9300         * include/commdlg.h (SNDMSG): Ditto.
9301
9302 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9303
9304         * include/GL/gl.h: New file.
9305         * include/GL/glext.h: Ditto.
9306         * include/GL/glu.h: Ditto.
9307
9308 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9309
9310         * include/w32api.h: Increment version.
9311         * Makefile.in: Ditto.
9312
9313 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9314
9315         * Makefile.in (bindist): Use * instead of . for file list for tar
9316         command.
9317
9318 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9319
9320         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9321
9322 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9323
9324         * include/objidl.h (IRunningObjectTable.Register): Correct
9325         prototype.
9326         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9327         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9328
9329 2002-03-31  Victor Porton  <porton@narod.ru>
9330
9331         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9332
9333 2002-03-29  David Robinow  <drobinow@yahoo.com>
9334
9335         * include/wingdi.h (SetPixelFormat): Correct prototype.
9336
9337 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9338
9339         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9340
9341 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9342
9343         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9344         Add defines.
9345
9346 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9347
9348         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9349         * include/shlobj.h (IContextMenu2): Put methods in right order.
9350         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9351         CINTERFACE before defining.
9352
9353 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9354
9355         * include/accctrl.h: Add #pragma GCC system_header
9356         if __GNUC__ >= 3.
9357         * include/aclapi.h: Same.
9358         * include/basetsd.h: Same.
9359         * include/basetyps.h: Same.
9360         * include/cderr.h: Same.
9361         * include/cguid.h: Same.
9362         * include/commctrl.h: Same.
9363         * include/commdlg.h: Same.
9364         * include/cpl.h: Same.
9365         * include/cplext.h: Same.
9366         * include/custcntl.h: Same.
9367         * include/dbt.h: Same.
9368         * include/dde.h: Same.
9369         * include/ddeml.h: Same.
9370         * include/dlgs.h: Same.
9371         * include/excpt.h: Same.
9372         * include/httpext.h: Same.
9373         * include/imagehlp.h: Same.
9374         * include/imm.h: Same.
9375         * include/initguid.h: Same.
9376         * include/intshcut.h: Same.
9377         * include/ipexport.h: Same.
9378         * include/iphlpapi.h: Same.
9379         * include/ipifcons.h: Same.
9380         * include/iprtrmib.h: Same.
9381         * include/iptypes.h: Same.
9382         * include/isguids.h: Same.
9383         * include/largeint.h: Same.
9384         * include/lm.h: Same.
9385         * include/lmaccess.h: Same.
9386         * include/lmalert.h: Same.
9387         * include/lmapibuf.h: Same.
9388         * include/lmat.h: Same.
9389         * include/lmaudit.h: Same.
9390         * include/lmbrowsr.h: Same.
9391         * include/lmchdev.h: Same.
9392         * include/lmconfig.h: Same.
9393         * include/lmcons.h: Same.
9394         * include/lmerr.h: Same.
9395         * include/lmerrlog.h: Same.
9396         * include/lmmsg.h: Same.
9397         * include/lmremutl.h: Same.
9398         * include/lmrepl.h: Same.
9399         * include/lmserver.h: Same.
9400         * include/lmshare.h: Same.
9401         * include/lmsname.h: Same.
9402         * include/lmstats.h: Same.
9403         * include/lmsvc.h: Same.
9404         * include/lmuse.h: Same.
9405         * include/lmuseflg.h: Same.
9406         * include/lmwksta.h: Same.
9407         * include/lzexpand.h: Same.
9408         * include/mapi.h: Same.
9409         * include/mciavi.h: Same.
9410         * include/mcx.h: Same.
9411         * include/mmsystem.h: Same.
9412         * include/mswsock.h: Same.
9413         * include/nb30.h: Same.
9414         * include/nddeapi.h: Same.
9415         * include/nspapi.h: Same.
9416         * include/ntdef.h: Same.
9417         * include/ntsecapi.h: Same.
9418         * include/ntsecpkg.h: Same.
9419         * include/oaidl.h: Same.
9420         * include/objbase.h: Same.
9421         * include/objfwd.h: Same.
9422         * include/objidl.h: Same.
9423         * include/odbcinst.h: Same.
9424         * include/ole.h: Same.
9425         * include/ole2.h: Same.
9426         * include/ole2ver.h: Same.
9427         * include/oleauto.h: Same.
9428         * include/olectl.h: Same.
9429         * include/olectlid.h: Same.
9430         * include/oledlg.h: Same.
9431         * include/oleidl.h: Same.
9432         * include/pbt.h: Same.
9433         * include/prsht.h: Same.
9434         * include/psapi.h: Same.
9435         * include/rapi.h: Same.
9436         * include/ras.h: Same.
9437         * include/raserror.h: Same.
9438         * include/rassapi.h: Same.
9439         * include/regstr.h: Same.
9440         * include/richedit.h: Same.
9441         * include/richole.h: Same.
9442         * include/rpc.h: Same.
9443         * include/rpcdce.h: Same.
9444         * include/rpcdce2.h: Same.
9445         * include/rpcdcep.h: Same.
9446         * include/rpcndr.h: Same.
9447         * include/rpcnsi.h: Same.
9448         * include/rpcnsip.h: Same.
9449         * include/rpcnterr.h: Same.
9450         * include/rpcproxy.h: Same.
9451         * include/schannel.h: Same.
9452         * include/schnlsp.h: Same.
9453         * include/scrnsave.h: Same.
9454         * include/security.h: Same.
9455         * include/setupapi.h: Same.
9456         * include/shellapi.h: Same.
9457         * include/shlguid.h: Same.
9458         * include/shlobj.h: Same.
9459         * include/sql.h: Same.
9460         * include/sqlext.h: Same.
9461         * include/sqltypes.h: Same.
9462         * include/sqlucode.h: Same.
9463         * include/sspi.h: Same.
9464         * include/subauth.h: Same.
9465         * include/tlhelp32.h: Same.
9466         * include/unknwn.h: Same.
9467         * include/userenv.h: Same.
9468         * include/w32api.h: Same.
9469         * include/winbase.h: Same.
9470         * include/wincon.h: Same.
9471         * include/wincrypt.h: Same.
9472         * include/windef.h: Same.
9473         * include/windows.h: Same.
9474         * include/windowsx.h: Same.
9475         * include/winerror.h: Same
9476         * include/wingdi.h: Same.
9477         * include/wininet.h: Same.
9478         * include/winioctl.h: Same.
9479         * include/winnetwk.h: Same.
9480         * include/winnls.h: Same.
9481         * include/winnt.h: Same.
9482         * include/winperf.h: Same.
9483         * include/winreg.h: Same.
9484         * include/winresrc.h: Same.
9485         * include/winsock.h: Same.
9486         * include/winsock2.h: Same.
9487         * include/winspool.h: Same.
9488         * include/winsvc.h: Same.
9489         * include/winuser.h: Same.
9490         * include/winver.h: Same.
9491         * include/ws2tcpip.h: Same.
9492         * include/wsnetbs.h: Same.
9493         * include/wtypes.h: Same.
9494         * include/zmouse.h: Same.
9495         * include/mapi.h: Change header guard name to _MAPI_H  for
9496         consistency.
9497
9498 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9499
9500         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9501         Remove unnecessary inclusion of <wtypes.h>.
9502         * ChangeLog: Fix omission of name in recent entries.
9503
9504 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9505
9506         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9507
9508 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9509
9510         * include/mswsock.h: Group winsock2 dependants
9511         together and protect with #ifdef _WINSOCK2_H.
9512         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9513         has been included.
9514
9515 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9516
9517         * include/mswsock.h (TP_*): Add new defines.
9518         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9519         (WSAMSG): Likewise.
9520         (WSACMSGHDR): Likewise.
9521         (DisconnectEx): Add new prototype.
9522         (WSARecvMsg): Likewise.
9523         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9524
9525 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9526
9527         * ChangeLog: Fix typo in last entry.
9528         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9529         * include/ws2tcpip.h: (IP_*): Add new defines.
9530         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9531         (NI_*): Add getnameinfo constants and bitmasks.
9532         (AI_*): Add getaddrinfo flags.
9533         (EAI_*): Add getaddrinfo error codes.
9534         (ip_mreq_source): Add new structure.
9535         (ip_msfilter): Add new structure.
9536         (IP_MSFILTER_SIZE): Add new macro.
9537         (in_pktinfo): Add new structure.
9538         Add preliminary IPv6 support.
9539         (in6_addr): Add new structure and some defines.
9540         (sockaddr_in6): Add new structure.
9541         (in6addr_any, in6addr_loopback): Declare extern structures.
9542         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9543         initialization macros for above.
9544         (IN6_ARE_ADDR_EQUAL): Define macro.
9545         (IN6_IS_ADDR_*): Define address testing macros.
9546         (socklen_t) Add new typedef.
9547         (ipv6_mreq): Add new structure.
9548         (in6_pktinfo): Same.
9549         (addrinfo): Same.
9550         (freeaddrinfo):Add new prototype.
9551         (getaddrinfo): Same.
9552         (gai_strerror[AW]): Same.
9553         (getnameinfo): Same.
9554         (sockaddr_in6_old): Add structure.
9555         (sockaddr_gen): Add union definition.
9556         (INTERFACE_INFO): Use sockaddr_gen as members.
9557         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9558         with INTERFACE_INFO on NT4 prior to sp4.
9559
9560 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9561
9562         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9563         when selecting winsock interface.
9564         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9565         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9566         Expand FIXME comment.
9567         (WSACOMPLETIONTYPE): Add enum.
9568         (WSACOMPLETION): Add structure and typedefs.
9569         (WSANSPIoctl): Add function prototpe and callback typedef.
9570         (SIO_NSP_NOTIFY_CHANGE): Add define.
9571         (sockaddr_storage): Add structure and typedefs.
9572
9573 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9574
9575         * include/winuser.h (OIC_*): Add resource constants.
9576
9577 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9578
9579         * include/ntsecpkg.h: New file.
9580         * include/schannel.h: New file.
9581         * include/schnlsp.h: New file.
9582         * include/security.h: New file.
9583         * include/sspi.h: New file.
9584         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9585         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9586         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9587         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9588         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9589         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9590         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9591         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9592         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9593         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9594         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9595         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9596         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9597         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9598         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9599         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9600         CERT_CHAIN_CONTEXT): Add missing structures.
9601         (CertCloseStore, CertGetCertificateChain,
9602         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9603         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9604         CertFindCertificateInStore, CertFreeCertificateContext,
9605         CertGetIssuerCertificateFromStore,
9606         CertFindChainInStore): Add missing functions.
9607         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9608         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9609         * lib/crypt32.def: New file.
9610         * lib/secur32.def: Add mising stubs.
9611         * lib/test.c: Include new headers.
9612
9613 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9614
9615         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9616         parameter.
9617
9618 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9619
9620         * lib/test.c: Include mapi.h.
9621         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9622         Thanks to: "Ron"  <ron@debian.org>
9623
9624 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9625
9626         * include/mapi.h: New file.
9627         * lib/mapi.def: Add missing function stubs.
9628
9629 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9630
9631         * include/winuser.h (GetWindowLongPtr[AW],
9632         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9633
9634 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9635
9636         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9637         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9638         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9639         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9640
9641 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9642
9643         * lib/test.c: Include wsnetbs.h.
9644
9645 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9646
9647         * include/wsnetbs.h: New file.
9648
9649 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9650
9651         * include/winnt.h: Remove merge conflict.
9652
9653 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9654
9655         * include/winnt.h (_TCHAR): Add typedefs.
9656
9657 2002-01-25  Tim Hughes  <tjh@delcam.com>
9658
9659         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9660         defines.
9661
9662 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9663
9664         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9665         Add defines.
9666         (LPACCESSTIMEOUT): Add typedef.
9667
9668 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9669
9670         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9671
9672 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9673
9674         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9675         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9676         backward compatability with old names. Update UNICODE mappings.
9677         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9678         for struct _HD_LAYOUT and add defines for backward
9679         compatability with old names.
9680         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9681         parallel chages to typedefs. Add defines for backward
9682         compatability with old names.
9683         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9684
9685 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9686
9687         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9688         hex for readability.
9689
9690 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9691
9692         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9693         and typedefs.
9694         (SPI_SETSCREENSAVERRUNNING): Add define.
9695         (LLKHF_ALTDOWN): Add define.
9696         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9697         PFD_DEPTH_DONTCARE): Add defines.
9698
9699 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9700
9701         * include/objbase.h (CoGetObject): Add prototype.
9702
9703 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9704
9705         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9706         ENUM_REGISTRY_SETTINGS): Add defines.
9707
9708 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9709
9710         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9711         (FILE_ATTRIBUTE_DEVICE): Add define.
9712
9713 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9714
9715         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9716
9717 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9718
9719         * ChangeLog: correct date in last entry.
9720
9721 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9722
9723         * include/winuser.h (MONITORENUMPROC): Add typedef.
9724         (EnumDisplayMonitors): Add prototype.
9725         * lib/user32.def (EnumDisplayMonitors): Add stub.
9726
9727 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9728
9729         * include/ntsecapi.h:  Fixed missing void parameter type in some
9730         prototypes.
9731         * include/objbase.h: Ditto.
9732         * include/rapi.h: Ditto.
9733         * include/rpc.h: Ditto.
9734         * include/rpcdce.h: Ditto.
9735         * include/rpcdcep.h: Ditto.
9736         * include/rpcndr.h: Ditto.
9737         * include/rpcnsip.h: Ditto.
9738         * include/rpcproxy.h: Ditto.
9739         * include/windef.h: Ditto.
9740
9741 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9742
9743         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9744
9745 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9746
9747         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9748          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9749         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9750         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9751         WS_EX_NOINHERITLAYOUT): Add defines.
9752         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9753         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9754         MEM_WRITE_WATCH): Add defines.
9755
9756
9757 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9758
9759         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9760         Add prototype.
9761         (SetCriticalSectionSpinCount): Likewise.
9762
9763 2001-12-30  Guido Serassio  <serassio@libero.it>
9764
9765         * include/winsvc.h: Add EnumServiceStatusEx(),
9766         QueryServiceStatusEx()
9767         & RegisterServiceCtrlHandlerEx()
9768
9769 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9770
9771         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9772
9773 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9774
9775         * lib/Makefile.in: Revert inst_installdir definitions to working
9776         versions.
9777
9778 2001-12-17  Guido Serassio  <serassio@libero.it>
9779
9780         * include/winsvc.h: Add ChangeServiceConfig2() &
9781         QueryServiceConfig2() definition
9782
9783 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9784
9785         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9786         on MSDN documentation for XP.
9787
9788 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9789
9790         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9791         mappings.
9792
9793 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9794
9795         * include/commctrl.h (ACS_*): Add new defines.
9796         (PGS_*): Ditto.
9797         (CBES_*): Ditto.
9798         (TBSTYLE_*): Ditto.
9799         (TB_*): Ditto.
9800         (TTS_*): Ditto.
9801         (UDS_HOTTRACK): Add define.
9802         (SBT_TOOLTIPS): Ditto.
9803         (TBS_*): Add new defines.
9804         (HDS_*): Ditto.
9805         (LVS_EX_*) Ditto.
9806         (LVKF_*): Ditto.
9807         (TCM_GETEXTENDEDSTYLE): Add define.
9808         (TVS_NOHSCROLL): Ditto.
9809         (TVIF_INTEGRAL): Ditto.
9810         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9811         (TCS_*): Add new defines.
9812         (CBEM_*): Add defines.
9813         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9814         (tagTVITEMEX[AW]: Ditto.
9815         (tagTVINSERTSTRUCT[AW]: Add union member.
9816         * include/winbase.h (VirtualAllocEx): Add prototype.
9817         * include/winuser.h (SS_*): Add new defines.
9818
9819 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9820
9821         * Makefile.in: Increment VERSION.
9822         * include/w32api.h: Ditto.
9823
9824 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9825
9826         * Makefile.in: Increment VERSION.
9827         * include/w32api.h: Ditto.
9828
9829 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9830
9831         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9832         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9833         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9834         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9835         SetupDiOpenDevRegKey): Correct function names.
9836
9837 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
9838
9839         * include/winuser.h (IDC_STATIC): Don't define.
9840
9841 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
9842
9843         Cleanup merge between SourceForge and winsup CVS.
9844         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
9845         definitions.
9846         * include/winnt.h (VER_NT*): Remove duplicate defines.
9847         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
9848
9849 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
9850
9851         * include/accctrl.h: Change \r\n to \n.
9852
9853 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
9854
9855         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
9856         Add structure definition.
9857         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
9858         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
9859         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
9860         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
9861         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
9862         UnenableRouter) Declare functions.
9863         * lib/iphlpapi.def: Add function names to import lib.
9864
9865 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
9866
9867         * include/winnt.h (PACCESS_MASK): Add typedef.
9868         * include/aclapi.h: New file.
9869         * include/acctrl.h: New file.
9870         * lib/advapi32.def: Add missing symbols.
9871         * lib/test.c: Add #include <aclapi.h>.
9872
9873 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
9874
9875         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
9876         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
9877         here ...
9878         * include/winnt.h: ... to here.
9879         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
9880         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
9881         and typedefs.
9882         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
9883         Add defines.
9884
9885 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9886
9887         * w32api/include/winnt.h: prepare SSE register support.
9888         (CONTEXT_EXTENDED_REGISTERS): Add new define.
9889         (MAXIMUM_SUPPORTED_EXTENSION): New define.
9890         (struct CONTEXT): ExtendedRegisters field added.
9891
9892 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
9893
9894         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
9895         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
9896         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
9897         tagLASTINPUTINFO ): Define new structures.
9898         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
9899         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
9900         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
9901         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
9902         SetMenuInfo): Add new prototypes.
9903         * lib/user32.def: Add import stubs for above functions.
9904
9905         * include/winuser.h (IDC_STATIC): Protect against prior
9906         definition.
9907
9908 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
9909
9910         * include/winbase.h (OSVERSIONINFOEX): Add definition.
9911         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
9912
9913 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
9914
9915         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
9916         warnings with _AUTHORITY #defines.
9917
9918 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9919
9920         * include/winnt.h (GetCurrentFiber): Create a prototype before the
9921         implementation.
9922         (GetFiberData): Ditto.
9923
9924 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9925
9926         * include/winnt.h: Backout last change.
9927
9928 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
9929
9930         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
9931         GetCurrentFiber: Create a prototype before the implementation.
9932         GetFiberData: Ditto.
9933
9934 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
9935
9936         * include/winuser.h (IDC_STATIC): Add define.
9937         Thanks to: Benoit Laniel.
9938
9939 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
9940
9941         * include/commdlg.h: Include <unknwn.h> rather than local
9942         definition of LPUKNOWN.
9943         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
9944         Emit warning.
9945
9946 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
9947
9948         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
9949         for Watcom.
9950         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
9951         functions of the form 'type * function(...)' in a way compatible
9952         with both Watcom and GCC.
9953         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
9954         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
9955         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
9956         * include/windows.h: Watcom can use anonymous structs/unions.
9957         * include/winnt.h: Watcom can use 64 bit ints.
9958         (GetCurrentFiber): Add another inline definition using
9959         Watcom inline assembly syntax.
9960         (GetFiberData): Likewise.
9961         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
9962         (gethostbyname): Likewise.
9963         (gethostbyaddr}: Likewise.
9964         (getservbyport}: Likewise.
9965         (getservbyname}: Likewise.
9966         (getprotobynumber}: Likewise.
9967         (getprotobyname}: Likewise.
9968         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
9969         (gethostbyname}: Likewise.
9970         (gethostbyaddr}: Likewise.
9971         (getservbyport}: Likewise.
9972         (getservbyname}: Likewise.
9973         (getprotobynumber}: Likewise.
9974         (getprotobyname}: Likewise.
9975         * lib/diinut.c: Correction for Watcom.
9976         * lib/kernel32.c (GetCurrentFiber): Add another definition
9977         using Watcom inline assembly syntax.
9978         (GetFiberData): Likewise.
9979         * lib/scrnsave.c (WinMain): Add break after default:
9980         clause.
9981
9982 2001-11-04  "stefan"  <stefan@lkcc.org>
9983
9984         * include/winnt.h (GetCurrentFiber): Add prototype.
9985         (GetFiberData): Likewise.
9986
9987 2001-11-04  Christopher Faylor  <cgf@redhat.com>
9988
9989         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
9990         parallel invocations.
9991
9992 2001-11-03  Christopher Faylor  <cgf@redhat.com>
9993
9994         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
9995
9996 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9997
9998         * include/basetyps.h (DECLARE_INTERFACE): Don't add
9999         __attribute__((com_interface)) for __GNUC__ >= 3.
10000
10001 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10002
10003         * include/commdlg.h (PRINTPAGERANGE): Add structure
10004         definition.
10005         (PRINTDLGEX[AW]): Likewise.
10006         (PrintDlgEx[AW]): Add function declaration.
10007         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10008         * ChangeLog: Fix typo in last entry.
10009
10010 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10011
10012         * include/objbase.h (CoGetClassObject): Change third parameter
10013         to COSERVERINFO*.
10014
10015 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10016
10017         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10018         Thanks to: Kim Saunders.
10019         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10020         Thanks to: Pat Thoyts.
10021         * include/winnt.h: Change C++ style comment to C style.
10022         * include/shlobj.h: Ditto.
10023         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10024         list.
10025         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10026         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10027         (enum not limited to range of int).
10028         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10029         (struct with no named members), ifndef NONAMELESSUNION.
10030
10031 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10032
10033         * include/winuser.h (CREATESTRUCT): UNICODE it.
10034         (CBT_CREATEWND): Likewise.
10035
10036 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10037
10038         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10039         (WNetGetResourceInformationW): Ditto.
10040         (WNetGetResourceInformation): Add define.
10041
10042 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10043
10044         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10045         before extracting words.
10046
10047 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10048
10049         * include/winnt.h: Add PF_* defines.
10050         Thanks to: "Wizord"  <wizord@argoslabs.com>
10051
10052 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10053
10054         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10055         field as _ANONYMOUS_STRUCT.
10056         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10057         for UNICODE.
10058         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10059         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10060         test.
10061
10062 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10063
10064         * include/commctrl.h: Add some ListView constants.
10065
10066 2001-09-17  Earnie Boyd  <earnie@sf.net>
10067
10068         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10069         portion of the directory from the install.
10070         (inst_libdir): Ditto.
10071         * Makefile.in (VERSION): Increment.
10072         * include/w32api.h: Increment version.
10073
10074 2001-09-13  Earnie Boyd  <earnie@SF.net>
10075
10076         * lib/Makefile.in (inst_includedir): Change to always use w32api
10077         subdirectory for target == cygwin.
10078         (inst_libdir): Ditto.
10079
10080 2001-09-13  Earnie Boyd  <earnie@SF.net>
10081
10082         * lib/Makefile.in (config_prefix): New variable.
10083         (inst_includedir): Manipulate special value only if target == cygwin
10084         and build == target and prefix != config_prefix.
10085         (inst_libdir): Ditto.
10086
10087 2001-09-12  Earnie Boyd  <earnie@SF.net>
10088
10089         * Makefile.in (TARFLAGS): New variable.
10090         (TARFILEEXT): Ditto.
10091
10092 2001-09-12  Earnie Boyd  <earnie@SF.net>
10093
10094         * Makefile.in: Increment version.
10095         * include/w32api.h: Ditto.
10096         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10097
10098 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10099
10100         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10101         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10102         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10103
10104 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10105
10106         * include/wininet.h (InternetAutodial): Add prototype.
10107         (InternetAutodialHangup): Ditto.
10108         (InternetDial): Ditto.
10109         (InternetGetConnectedState): Ditto.
10110         (InternetGoOnline): Ditto.
10111         (InternetHangUp): Ditto.
10112         (InternetSetDialState): Ditto.
10113         Add associated INTERNET_* auto dial flags.
10114         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10115
10116 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10117
10118         * lib/Makefile.in: Move the setting of variable libdir to after the
10119         setting of exec_prefix since the value of libdir is dependant on it.
10120
10121 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10122
10123         * include/winbase.h: Add missing closing parentheses to
10124         InterlockedExchangePointer declaration.
10125
10126 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10127
10128         * include/shlobj.h (CFSTR_* ): Add new defines.
10129         Thanks to: "Ron" <ron@debian.org> .
10130         Unicode them.
10131
10132 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10133
10134         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10135         anonymous structs are available rather than just testing preprocessor
10136         variable directly.
10137
10138 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10139
10140         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10141         with new `LARGE_INTEGER' definition.
10142
10143 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10144
10145         * include/winsock2.h: Remove "extra token" after #endif.
10146
10147 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10148
10149         * config.guess: Remove the \r from the end of line.
10150         * config.sub: Ditto.
10151
10152 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10153
10154         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10155         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10156
10157 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10158
10159         * config.guess: Add the MSYS system.
10160         * config.sub: Ditto.
10161         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10162         * incldue/winsock2.h: Ditto.
10163
10164 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10165
10166         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10167         non-anonymous (Xxx.u.LowPart) access to HighPart and
10168         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10169
10170 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10171
10172         * include/wingdi.h (HANGUL_CHARSET): Add define.
10173
10174 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10175
10176         * include/setupapi.h: Formatting.
10177
10178 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10179
10180         * include/shlobj.h: Remove \r from the line endings.
10181
10182 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10183
10184         * include/setupapi.h : New file.
10185         * lib/setupapi.def:New file.
10186         * lib/test.c: Include setupapi.h.
10187
10188 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10189         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10190
10191 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10192
10193         * include/richedit.h (ENLINK): Add structure definition.
10194         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10195
10196 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10197
10198         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10199         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10200         (GCS_*): Make UNICODE.
10201         (CSIDL_*): Add more defines.
10202         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10203         (_DISK_GEOMETRY): Ditto.
10204         (_DISK_PERFORMANCE): Ditto.
10205         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10206
10207 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10208
10209         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10210         of block protected by #ifndef VOID.
10211         (This reverts 1998-12-01 Anders Norlander change.)
10212         * include/odbcinst.h: End file with newline.
10213         * include/raserror.h: Ditto.
10214
10215 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10216
10217         * include/winsock2.h (#include <wtypes.h): Don't.
10218         (_BLOB): Define instead, if not already done.
10219         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10220         * include/wtypes.h (_BLOB): Guard against prior definition.
10221
10222 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10223
10224         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10225         as __extension__.
10226         (tagTYPEDESC): Ditto.
10227         (_wireBRECORD): Add structure definition.
10228         (_wireSAFEARR_BRECORD): Ditto.
10229         (_wireSAFEARR_HAVEIID): Ditto.
10230         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10231         SAFEARR_HAVEIID HaveIidStr.
10232         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10233         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10234         pparray to wirePSAFEARRAY*.
10235         (_wireVARIANT): Add field wireBRECORD brecVal.
10236         (wireVARIANT): Change typedef to struct _wireVariant*.
10237         (IRecordInfo): Add interface definition.
10238         (LPRECORDINFO): Add typedef for IRecordInfo*.
10239         (IID_IRecordInfo): Add forward decalaration.
10240
10241 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10242
10243         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10244         * include/nddeapi.h: Likewise.
10245
10246 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10247
10248         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10249         Add more includes of w32api headers.
10250
10251 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10252
10253         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10254         Swap asm code with that of GetFiberData.
10255         (GetFiberData): Ditto.
10256         * lib/kernel32.c: New file, containing library versions of
10257         GetCurrentFiber and GetFiberData.
10258         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10259
10260 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10261
10262         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10263         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10264
10265 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10266
10267         * lib/oleaut32.def: Regenerate.
10268
10269 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10270
10271         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10272
10273 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10274
10275         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10276         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10277         * include/oaidl.h: ... to here.
10278         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10279         (IErrorInfo::GetGUID): Change arg to GUID.
10280         (LPSUPPORTERRORINFO): Add typedef.
10281         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10282
10283 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10284
10285         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10286         defines.
10287
10288 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10289
10290         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10291
10292 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10293
10294         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10295         Thanks to: Jason Craig  <jacraig@softhome.net>
10296
10297 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10298
10299         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10300         and UNICODE mappings, if _WIN32_IE >= 0x400.
10301         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10302         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10303         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10304         (tagNMLVCUSTOMDRAW): Likewise.
10305         (tagNMTVCUSTOMDRAW): Likewise.
10306         (tagNMLVCACHEHINT): Likewise.
10307
10308 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10309
10310         * include/basetsd.h (#include <_mingw.h>): Remove.
10311         (__int64): Define.
10312
10313 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10314
10315         * include/wingdi.h (AC_SRC_OVER): Add define.
10316         (struct _BLENDFUNCTION): Add.
10317
10318 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10319
10320         * include/shlobj.h:  Add BIF_* defines.
10321
10322 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10323
10324         * include/winerror.h (E_PENDING): Add error code define.
10325
10326 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10327
10328         * include/basetsd.h (#include <_mingw.h>): Add directive.
10329
10330 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10331
10332         * include/winbase.h (InterlockedCompareExchange): Change args
10333         and return value from PVOID to LONG.
10334         (InterlockedExchange): Change first arg to LPLONG.
10335         (InterlockedCompareExchangePointer): New macro.
10336         (InterlockedExchangePointer): New macro.
10337
10338 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10339
10340         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10341         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10342
10343 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10344
10345         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10346         (IMalloc::Free()): Ditto.
10347
10348 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10349
10350         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10351         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10352         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10353
10354 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10355
10356         * include/shlobj.h (struct _browseinfo): UNICODE it.
10357         (SHBrowseForFolder): Ditto.
10358         (SHGetPathFromIDList): Ditto.
10359
10360 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10361
10362         * include/basetsd.h: RC_INVOKED protection and realignment.
10363         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10364
10365 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10366
10367         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10368         line.
10369
10370 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10371
10372         * lib/mapi32.def: Add MAPISendMail.
10373
10374 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10375
10376         * include/w32api.h: Update version.
10377         * Makefile.in: Ditto.
10378
10379 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10380
10381         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10382         compiler warnings.
10383
10384 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10385
10386         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10387         previous definition in include/ntsecapi.h.
10388         * include/ntsecapi.h: Vice versa.
10389
10390 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10391
10392         * include/winnt.h: Add defines for group attributes.
10393         Add define for SYSTEM_LUID.
10394         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10395         `PTOKEN_PRIMARY_GROUP'.
10396
10397 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10398
10399         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10400         for cygwin.
10401
10402 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10403
10404         * include/winsock2.h: Protect one *more* newlib defines when compiling
10405         cygwin.
10406
10407 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10408
10409         * include/winsock2.h: Protect some more newlib defines when compiling
10410         cygwin.
10411
10412 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10413
10414         * include/winsock.h: Protect some more newlib defines when compiling
10415         cygwin.
10416
10417 2001-04-17  Egor Duda  <deo@logos-m.ru>
10418
10419         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10420         as __extenstion__ when appropriate.
10421         * include/mmsystem.h: Mark anonymous structs and unions as
10422         __extension__ to prevent compiler warning when invoked with
10423         -pedantic
10424         * include/oaidl.h: Ditto.
10425         * include/objidl.h: Ditto.
10426         * include/olectl.h: Ditto.
10427         * include/prsht.h: Ditto.
10428         * include/shlobj.h: Ditto.
10429         * include/winbase.h: Ditto.
10430         * include/winnt.h: Ditto.
10431         * include/wtypes.h: Ditto.
10432
10433 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10434
10435         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10436         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10437
10438 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10439
10440         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10441
10442 2001-04-11  John Fortin  <fortinj@attglobal.net>
10443
10444         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10445         (*LPBOOL): Ditto.
10446
10447 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10448
10449         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10450         code will be included in every module which includes this header.
10451         (GetFiberData): Ditto.
10452
10453 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10454
10455         * include/winnt.h (GetCurrentFiber): Fix typo.
10456
10457 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10458
10459         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10460         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10461         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10462         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10463         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10464
10465         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10466         (GetCurrentFiber): Ditto.
10467         Thanks to: Andy Younger  <AndyY@redlemon.com>
10468
10469         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10470         DirectX 8 from complaining.
10471         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10472
10473 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10474
10475         * include/commctrl.h Updated TreeView and ListView defines and macros.
10476
10477 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10478
10479         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10480         and above.
10481
10482 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10483         * include/winuser.h (VK_KANA): New definition.
10484         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10485
10486 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10487
10488         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10489         (RT_FONT): Ditto.
10490         * include/basetsd.h (INT32): Ditto.
10491         * include/windef.h (ATOM): Ditto.
10492         (BOOL): Ditto.
10493         (BYTE): Ditto.
10494         * include/winbase.h (FreeResource): Ditto.
10495         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10496
10497 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10498
10499         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10500         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10501         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10502         macro now defined in newlib sys/types.h.  Emit warning if defined.
10503         * include/winsock2.h: Ditto.
10504         * include/windows.h (Win32_Winsock): Replace with new macros
10505         __USE_W32_SOCKETS and warn of deprecation.
10506
10507 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10508
10509         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10510         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10511
10512 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10513
10514         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10515         (TB_GETBUTTONSIZE): Ditto.
10516         (TCS_HOTTRACK): Ditto.
10517         Thanks to: Chris Hansen <popeofpop@softhome.net>
10518
10519 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10520
10521         * Makefile.in: (snapshot): Add target.
10522         * lib/Makefile.in: (install-headers): Use installdir variable.
10523         (installdir): Set value based on target-alias.
10524
10525 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10526
10527         * include/w32api.h: (_W32API_VERSION): Remove.
10528         (__W32API_VERSION): Add.
10529         (__W32API_MAJOR_VERSION): Ditto.
10530         (__W32API_MINOR_VERSION): Ditto.
10531
10532 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10533
10534         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10535         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10536         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10537         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10538
10539 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10540
10541         * include/mswsock.h: New file.
10542         * include/ws2tcpip.h: New file.
10543         * include/winsock.h (IPPROTO_IGMP): New define.
10544         (IPPROTO_GGP): Correct value.
10545         (SO_* macros): Remove mswsock defines.
10546         (TCP_BSDURGENT): Likewise.
10547         (IP_* macros): Add comment warning of WinSock2 incompatibility
10548         (WSARecvEx): Remove mswsock prototype.
10549         (TransmitFile): Likewise.
10550         (AcceptEx): Likewise.
10551         (GetAcceptExSockaddrs): Likewise.
10552         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10553         (#include <mswsock.h>): Add directive and explanatory comment
10554         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10555         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10556         (#include <winsock.h>): Replace directive with winsock.h file content
10557         The following changes apply to the merged file:
10558         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10559         (SOMAXCONN): Likewise
10560         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10561         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10562         in ws2tcpip.h)
10563         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10564         (FD_*_BIT and FD_* defines): Place together and extend to
10565         FD_MAX_EVENTS 10
10566         (AF* defines): Extend to AF_MAX 10
10567         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10568         (WSAUnhookBlockingHook): Likewise.
10569         (WSASetBlockingHook): Likewise.
10570         (WSACancelBlockingCall): Likewise.
10571         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10572         (#include <mswsock.h>): Delete directive inherited from winsock.h
10573         (WSA_QOS* defines): Add QualityOfService error codes.
10574         (SIO_* defines): Add new macros
10575         * include/ipexport.h (IP_STATUS flags): Add definitions.
10576         (IP_FLAG_DF): Likewise.
10577         (IP_OPT_* ): Likewise.
10578         (struct ip_option_information): Likewise.
10579         (struct icmp_echo_reply): Likewise.
10580
10581 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10582
10583         * include/commctrl.h: Revert TEXT change.
10584         * include/lmalert.h: Ditto.
10585         * include/lmcons.h: Ditto.
10586         * include/lmsname.h: Ditto.
10587         * include/lmsvc.h: Ditto.
10588         * include/ntsecapi.h: Ditto.
10589         * include/oledlg.h: Ditto.
10590         * include/ras.h: Ditto.
10591         * include/regstr.h: Ditto.
10592         * include/richedit.h: Ditto.
10593         * include/wininet.h: Ditto.
10594         * include/winnt.h: Ditto.
10595
10596 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10597
10598         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10599         * include/lmalert.h: Ditto.
10600         * include/lmcons.h: Ditto.
10601         * include/lmsname.h: Ditto.
10602         * include/lmsvc.h: Ditto.
10603         * include/ntsecapi.h: Ditto.
10604         * include/oledlg.h: Ditto.
10605         * include/ras.h: Ditto.
10606         * include/regstr.h: Ditto.
10607         * include/richedit.h: Ditto.
10608         * include/wininet.h: Ditto.
10609         * include/w32api.h: New File.
10610
10611 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10612
10613         * include/shlobj.h: Add missing SLR_* flags.
10614
10615 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10616
10617         * lib/Makefile.in: (host_alias): Add variable.
10618         (host_build): Ditto:
10619         (xinstall): Removed
10620         (xinstall-libraries): Ditto.
10621         (xinstall-headers): Ditto.
10622         (xuninstall): Ditto.
10623         (xuninstall-libraries): Ditto.
10624         (xuninstall-headers): Ditto.
10625         * Makefile.in: (host_alias): Add variable.
10626         (build_alias): Ditto.
10627
10628 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10629
10630         * include/winnt.h: (__TEXT): Add private macro.
10631         (_TEXT): Modify definition to use __TEXT.
10632         (_T): Ditto.
10633         This change allows the passing of a MACRO as an argument and have that
10634         MACRO resolved first.
10635         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10636
10637 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10638
10639         * Makefile.in: Increment VERSION to 0.5
10640         * include/winnt.h: Change TEXT to _TEXT throughout.
10641         (SID_RELEASE): Define.
10642         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10643
10644 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10645
10646         * Apply Phil Krylov patches.
10647         2001-01-19  Phil Krylov  <phil@mail.ru>
10648         * include/commctrl.h: (HDI_IMAGE) New definition.
10649         (HDI_DI_SETITEM) Ditto.
10650         (HDI_ORDER) Ditto.
10651         (HDI_FILTER) Ditto.
10652         (HDF_BITMAP_ON_RIGHT) Ditto.
10653         (HDF_IMAGE) Ditto.
10654         (HDM_SETORDERARRAY) Ditto.
10655         (Header_SetOrderArray) Ditto.
10656         (ICC_BAR_CLASSES) Ditto.
10657         (struct _HD_ITEMA) Change definition.
10658         (struct _HD_ITEMW) Ditto.
10659         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10660         (InitCommonControlsEx()) Ditto.
10661         2001-01-23  Phil Krylov  <phil@mail.ru>
10662         * include/richedit.h: Many Richedit 2.0 definitions.
10663
10664 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10665
10666         * include/winuser.h: (IDC_HAND)  New resource identifier.
10667         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10668
10669 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10670
10671         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10672         Fix typo's.
10673
10674 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10675
10676         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10677         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10678         Thanks To: <bge@users.sourceforge.net>
10679
10680 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10681
10682         * Apply Danny Smith patch 102386
10683         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10684         * lib/rasapi32.def: add symbols available in NT4 and W2k
10685
10686 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10687
10688         * Apply Danny Smith patch 102382
10689         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10690         * lib/mswsock.def: remove leading underscores from symbol names
10691
10692 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10693
10694         * Apply Danny Smith patch 102446
10695         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10696         * include/sql.h (ODBCVER): change default to 0x0351.
10697         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10698         (SQLColAttributes): likewise.
10699         (SQLBindParam): add prototype for ODBC 3.x function.
10700         (SQLCloseCursor): likewise.
10701         (SQLColAttribute): likewise.
10702         (SQLCopyDesc):likewise.
10703         (SQLEndTran): likewise.
10704         (SQLFetchScroll): likewise.
10705         (SQLGetConnectAttr): likewise.
10706         (SQLGetDescField): likewise.
10707         (SQLGetDescRec): likewise.
10708         (SQLGetDiagField): likewise.
10709         (SQLGetDiagRec): likewise.
10710         (SQLGetEnvAttr): likewise.
10711         (SQLGetStmtAttr): likewise.
10712         (SQLSetConnectAttr): likewise.
10713         (SQLSetDescField):likewise.
10714         (SQLSetDescRec): likewise.
10715         (SQLSetEnvAttr): likewise.
10716         (SQLSetStmtAttr): likewise.
10717         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10718         _WIN64 compatability;
10719         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10720         (SQL_ACTIVE_CONNECTIONS): likewise.
10721         (SQL_ACTIVE_STATEMENTS): likewise.
10722         (SQL_ALL_EXCEPT_LIKE): likewise.
10723         (SQL_API_ALL_FUNCTIONS): likewise.
10724         (SQL_API_LOADBYORDINAL): likewise.
10725         (SQL_API_SQLBINDPARAMETER): likewise.
10726         (SQL_API_SQLBROWSECONNECT): likewise.
10727         (SQL_API_SQLCOLATTRIBUTES): likewise.
10728         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10729         (SQL_API_SQLDESCRIBEPARAM): likewise.
10730         (SQL_API_SQLDRIVERCONNECT): likewise.
10731         (SQL_API_SQLDRIVERS): likewise.
10732         (SQL_API_SQLEXTENDEDFETCH): likewise.
10733         (SQL_API_SQLFOREIGNKEYS): likewise.
10734         (SQL_API_SQLMORERESULTS): likewise.
10735         (SQL_API_SQLNATIVESQL): likewise.
10736         (SQL_API_SQLNUMPARAMS): likewise.
10737         (SQL_API_SQLPARAMOPTIONS): likewise.
10738         (SQL_API_SQLPRIMARYKEYS): likewise.
10739         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10740         (SQL_API_SQLPROCEDURES): likewise.
10741         (SQL_API_SQLSETPOS): likewise.
10742         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10743         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10744         (SQL_ASYNC_ENABLE): likewise.
10745         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10746         (SQL_ASYNC_ENABLE_OFF): likewise.
10747         (SQL_ASYNC_ENABLE_ON): likewise.
10748         (SQL_ATTR_READONLY): likewise.
10749         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10750         (SQL_ATTR_WRITE): likewise.
10751         (SQL_AUTOCOMMIT): likewise.
10752         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10753         (SQL_AUTOCOMMIT_OFF): likewise.
10754         (SQL_AUTOCOMMIT_ON): likewise.
10755         (SQL_BEST_ROWID): likewise.
10756         (SQL_BIGINT): likewise.
10757         (SQL_BINARY): likewise.
10758         (SQL_BIND_BY_COLUMN): likewise.
10759         (SQL_BIND_TYPE): likewise.
10760         (SQL_BIND_TYPE_DEFAULT): likewise.
10761         (SQL_BIT): likewise.
10762         (SQL_BOOKMARK_PERSISTENCE): likewise.
10763         (SQL_BP_CLOSE): likewise.
10764         (SQL_BP_DELETE): likewise.
10765         (SQL_BP_DROP): likewise.
10766         (SQL_BP_OTHER_HSTMT): likewise.
10767         (SQL_BP_SCROLL): likewise.
10768         (SQL_BP_TRANSACTION): likewise.
10769         (SQL_BP_UPDATE): likewise.
10770         (SQL_C_BINARY): likewise.
10771         (SQL_C_BIT): likewise.
10772         (SQL_C_BOOKMARK): likewise.
10773         (SQL_C_CHAR): likewise.
10774         (SQL_C_DATE): likewise.
10775         (SQL_C_DEFAULT): likewise.
10776         (SQL_C_DOUBLE): likewise.
10777         (SQL_C_FLOAT): likewise.
10778         (SQL_C_LONG): likewise.
10779         (SQL_C_SHORT): likewise.
10780         (SQL_C_SLONG): likewise.
10781         (SQL_C_SSHORT): likewise.
10782         (SQL_C_STINYINT): likewise.
10783         (SQL_C_TIME): likewise.
10784         (SQL_C_TIMESTAMP): likewise.
10785         (SQL_C_TINYINT): likewise.
10786         (SQL_C_ULONG): likewise.
10787         (SQL_C_USHORT): likewise.
10788         (SQL_C_UTINYINT): likewise.
10789         (SQL_CB_NON_NULL): likewise.
10790         (SQL_CB_NULL): likewise.
10791         (SQL_CC_CLOSE): likewise.
10792         (SQL_CC_DELETE): likewise.
10793         (SQL_CC_PRESERVE): likewise.
10794         (SQL_CN_ANY): likewise.
10795         (SQL_CN_DIFFERENT): likewise.
10796         (SQL_CN_NONE): likewise.
10797         (SQL_COLATT_OPT_MAX): likewise.
10798         (SQL_COLATT_OPT_MIN): likewise.
10799         (SQL_COLUMN_ALIAS): likewise.
10800         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10801         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10802         (SQL_COLUMN_COUNT): likewise.
10803         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10804         (SQL_COLUMN_DRIVER_START): likewise.
10805         (SQL_COLUMN_LABEL): likewise.
10806         (SQL_COLUMN_LENGTH): likewise.
10807         (SQL_COLUMN_MONEY): likewise.
10808         (SQL_COLUMN_NAME): likewise.
10809         (SQL_COLUMN_NULLABLE): likewise.
10810         (SQL_COLUMN_OWNER_NAME): likewise.
10811         (SQL_COLUMN_PRECISION): likewise.
10812         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10813         (SQL_COLUMN_SCALE): likewise.
10814         (SQL_COLUMN_SEARCHABLE): likewise.
10815         (SQL_COLUMN_TABLE_NAME): likewise.
10816         (SQL_COLUMN_TYPE): likewise.
10817         (SQL_COLUMN_TYPE_NAME): likewise.
10818         (SQL_COLUMN_UNSIGNED): likewise.
10819         (SQL_COLUMN_UPDATABLE): likewise.
10820         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10821         (SQL_CONCUR_DEFAULT): likewise.
10822         (SQL_CONCUR_LOCK): likewise.
10823         (SQL_CONCUR_READ_ONLY): likewise.
10824         (SQL_CONCUR_ROWVER): likewise.
10825         (SQL_CONCUR_TIMESTAMP): likewise.
10826         (SQL_CONCUR_VALUES): likewise.
10827         (SQL_CONCURRENCY): likewise.
10828         (SQL_CONN_OPT_MAX): likewise.
10829         (SQL_CONN_OPT_MIN): likewise.
10830         (SQL_CONNECT_OPT_DRVR_START): likewise.
10831         (SQL_CONVERT_BIGINT): likewise.
10832         (SQL_CONVERT_BINARY): likewise.
10833         (SQL_CONVERT_BIT): likewise.
10834         (SQL_CONVERT_CHAR): likewise.
10835         (SQL_CONVERT_DATE): likewise.
10836         (SQL_CONVERT_DECIMAL): likewise.
10837         (SQL_CONVERT_DOUBLE): likewise.
10838         (SQL_CONVERT_FLOAT): likewise.
10839         (SQL_CONVERT_FUNCTIONS): likewise.
10840         (SQL_CONVERT_INTEGER): likewise.
10841         (SQL_CONVERT_LONGVARBINARY): likewise.
10842         (SQL_CONVERT_LONGVARCHAR): likewise.
10843         (SQL_CONVERT_NUMERIC): likewise.
10844         (SQL_CONVERT_REAL): likewise.
10845         (SQL_CONVERT_SMALLINT): likewise.
10846         (SQL_CONVERT_TIME): likewise.
10847         (SQL_CONVERT_TIMESTAMP): likewise.
10848         (SQL_CONVERT_TINYINT): likewise.
10849         (SQL_CONVERT_VARBINARY): likewise.
10850         (SQL_CONVERT_VARCHAR): likewise.
10851         (SQL_CORRELATION_NAME): likewise.
10852         (SQL_CR_CLOSE): likewise.
10853         (SQL_CR_DELETE): likewise.
10854         (SQL_CR_PRESERVE): likewise.
10855         (SQL_CUR_DEFAULT): likewise.
10856         (SQL_CUR_USE_DRIVER): likewise.
10857         (SQL_CUR_USE_IF_NEEDED): likewise.
10858         (SQL_CUR_USE_ODBC): likewise.
10859         (SQL_CURRENT_QUALIFIER): likewise.
10860         (SQL_CURSOR_DYNAMIC): likewise.
10861         (SQL_CURSOR_FORWARD_ONLY): likewise.
10862         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
10863         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
10864         (SQL_CURSOR_STATIC): likewise.
10865         (SQL_CURSOR_TYPE): likewise.
10866         (SQL_CURSOR_TYPE_DEFAULT): likewise.
10867         (SQL_CVT_BIGINT): likewise.
10868         (SQL_CVT_BINARY): likewise.
10869         (SQL_CVT_BIT): likewise.
10870         (SQL_CVT_CHAR): likewise.
10871         (SQL_CVT_DATE): likewise.
10872         (SQL_CVT_DECIMAL): likewise.
10873         (SQL_CVT_DOUBLE): likewise.
10874         (SQL_CVT_FLOAT): likewise.
10875         (SQL_CVT_INTEGER): likewise.
10876         (SQL_CVT_LONGVARBINARY): likewise.
10877         (SQL_CVT_LONGVARCHAR): likewise.
10878         (SQL_CVT_NUMERIC): likewise.
10879         (SQL_CVT_REAL): likewise.
10880         (SQL_CVT_SMALLINT): likewise.
10881         (SQL_CVT_TIME): likewise.
10882         (SQL_CVT_TIMESTAMP): likewise.
10883         (SQL_CVT_TINYINT): likewise.
10884         (SQL_CVT_VARBINARY): likewise.
10885         (SQL_CVT_VARCHAR): likewise.
10886         (SQL_DATABASE_NAME): likewise.
10887         (SQL_DATE): likewise.
10888         (SQL_DRIVER_HDBC): likewise.
10889         (SQL_DRIVER_HENV): likewise.
10890         (SQL_DRIVER_HLIB): likewise.
10891         (SQL_DRIVER_HSTMT): likewise.
10892         (SQL_DRIVER_NAME): likewise.
10893         (SQL_DRIVER_ODBC_VER): likewise.
10894         (SQL_DRIVER_VER): likewise.
10895         (SQL_ENSURE): likewise.
10896         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
10897         (SQL_EXT_API_LAST): likewise.
10898         (SQL_EXT_API_START): likewise.
10899         (SQL_FD_FETCH_BOOKMARK): likewise.
10900         (SQL_FD_FETCH_PREV): likewise.
10901         (SQL_FD_FETCH_RESUME): likewise.
10902         (SQL_FETCH_PREV): likewise.
10903         (SQL_FETCH_RESUME): likewise.
10904         (SQL_FILE_NOT_SUPPORTED): likewise.
10905         (SQL_FILE_QUALIFIER): likewise.
10906         (SQL_FILE_TABLE): likewise.
10907         (SQL_FILE_USAGE): likewise.
10908         (SQL_FN_CVT_CONVERT): likewise.
10909         (SQL_FN_NUM_ABS): likewise.
10910         (SQL_FN_NUM_ACOS): likewise.
10911         (SQL_FN_NUM_ASIN): likewise.
10912         (SQL_FN_NUM_ATAN): likewise.
10913         (SQL_FN_NUM_ATAN2): likewise.
10914         (SQL_FN_NUM_CEILING): likewise.
10915         (SQL_FN_NUM_COS): likewise.
10916         (SQL_FN_NUM_COT): likewise.
10917         (SQL_FN_NUM_DEGREES): likewise.
10918         (SQL_FN_NUM_EXP): likewise.
10919         (SQL_FN_NUM_FLOOR): likewise.
10920         (SQL_FN_NUM_LOG): likewise.
10921         (SQL_FN_NUM_LOG10): likewise.
10922         (SQL_FN_NUM_MOD): likewise.
10923         (SQL_FN_NUM_PI): likewise.
10924         (SQL_FN_NUM_POWER): likewise.
10925         (SQL_FN_NUM_RADIANS): likewise.
10926         (SQL_FN_NUM_RAND): likewise.
10927         (SQL_FN_NUM_ROUND): likewise.
10928         (SQL_FN_NUM_SIGN): likewise.
10929         (SQL_FN_NUM_SIN): likewise.
10930         (SQL_FN_NUM_SQRT): likewise.
10931         (SQL_FN_NUM_TAN): likewise.
10932         (SQL_FN_NUM_TRUNCATE): likewise.
10933         (SQL_FN_STR_ASCII): likewise.
10934         (SQL_FN_STR_CHAR): likewise.
10935         (SQL_FN_STR_CONCAT): likewise.
10936         (SQL_FN_STR_DIFFERENCE): likewise.
10937         (SQL_FN_STR_INSERT): likewise.
10938         (SQL_FN_STR_LCASE): likewise.
10939         (SQL_FN_STR_LEFT): likewise.
10940         (SQL_FN_STR_LENGTH): likewise.
10941         (SQL_FN_STR_LOCATE): likewise.
10942         (SQL_FN_STR_LOCATE_2): likewise.
10943         (SQL_FN_STR_LTRIM): likewise.
10944         (SQL_FN_STR_REPEAT): likewise.
10945         (SQL_FN_STR_REPLACE): likewise.
10946         (SQL_FN_STR_RIGHT): likewise.
10947         (SQL_FN_STR_RTRIM): likewise.
10948         (SQL_FN_STR_SOUNDEX): likewise.
10949         (SQL_FN_STR_SPACE): likewise.
10950         (SQL_FN_STR_SUBSTRING): likewise.
10951         (SQL_FN_STR_UCASE): likewise.
10952         (SQL_FN_SYS_DBNAME): likewise.
10953         (SQL_FN_SYS_IFNULL): likewise.
10954         (SQL_FN_SYS_USERNAME): likewise.
10955         (SQL_FN_TD_CURDATE): likewise.
10956         (SQL_FN_TD_CURTIME): likewise.
10957         (SQL_FN_TD_DAYNAME): likewise.
10958         (SQL_FN_TD_DAYOFMONTH): likewise.
10959         (SQL_FN_TD_DAYOFWEEK): likewise.
10960         (SQL_FN_TD_DAYOFYEAR): likewise.
10961         (SQL_FN_TD_HOUR): likewise.
10962         (SQL_FN_TD_MINUTE): likewise.
10963         (SQL_FN_TD_MONTH): likewise.
10964         (SQL_FN_TD_MONTHNAME): likewise.
10965         (SQL_FN_TD_NOW): likewise.
10966         (SQL_FN_TD_QUARTER): likewise.
10967         (SQL_FN_TD_SECOND): likewise.
10968         (SQL_FN_TD_TIMESTAMPadd): likewise.
10969         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
10970         (SQL_FN_TD_WEEK): likewise.
10971         (SQL_FN_TD_YEAR): likewise.
10972         (SQL_FN_TSI_DAY): likewise.
10973         (SQL_FN_TSI_FRAC_SECOND): likewise.
10974         (SQL_FN_TSI_HOUR): likewise.
10975         (SQL_FN_TSI_MINUTE): likewise.
10976         (SQL_FN_TSI_MONTH): likewise.
10977         (SQL_FN_TSI_QUARTER): likewise.
10978         (SQL_FN_TSI_SECOND): likewise.
10979         (SQL_FN_TSI_WEEK): likewise.
10980         (SQL_FN_TSI_YEAR): likewise.
10981         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
10982         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
10983         (SQL_GB_NO_RELATION): likewise.
10984         (SQL_GB_NOT_SUPPORTED): likewise.
10985         (SQL_GD_BLOCK): likewise.
10986         (SQL_GD_BOUND): likewise.
10987         (SQL_GET_BOOKMARK): likewise.
10988         (SQL_GROUP_BY): likewise.
10989         (SQL_INFO_DRIVER_START): likewise.
10990         (SQL_INFO_FIRST): likewise.
10991         (SQL_INFO_LAST): likewise.
10992         (SQL_INTERVAL_DAY): likewise.
10993         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
10994         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
10995         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
10996         (SQL_INTERVAL_HOUR): likewise.
10997         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
10998         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
10999         (SQL_INTERVAL_MINUTE): likewise.
11000         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11001         (SQL_INTERVAL_MONTH): likewise.
11002         (SQL_INTERVAL_SECOND): likewise.
11003         (SQL_INTERVAL_YEAR): likewise.
11004         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11005         (SQL_KEYSET_SIZE): likewise.
11006         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11007         (SQL_KEYWORDS): likewise.
11008         (SQL_LCK_EXCLUSIVE): likewise.
11009         (SQL_LCK_NO_CHANGE): likewise.
11010         (SQL_LCK_UNLOCK): likewise.
11011         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11012         (SQL_LIKE_ONLY): likewise.
11013         (SQL_LOCK_TYPES): likewise.
11014         (SQL_LOGIN_TIMEOUT): likewise.
11015         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11016         (SQL_LONGVARBINARY): likewise.
11017         (SQL_LONGVARCHAR): likewise.
11018         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11019         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11020         (SQL_MAX_DSN_LENGTH): likewise.
11021         (SQL_MAX_LENGTH): likewise.
11022         (SQL_MAX_LENGTH_DEFAULT): likewise.
11023         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11024         (SQL_MAX_OWNER_NAME_LEN): likewise.
11025         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11026         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11027         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11028         (SQL_MAX_ROWS): likewise.
11029         (SQL_MAX_ROWS_DEFAULT): likewise.
11030         (SQL_MODE_DEFAULT): likewise.
11031         (SQL_MODE_READ_ONLY): likewise.
11032         (SQL_MODE_READ_WRITE): likewise.
11033         (SQL_MULT_RESULT_SETS): likewise.
11034         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11035         (SQL_NC_END): likewise.
11036         (SQL_NC_START): likewise.
11037         (SQL_NEED_LONG_DATA_LEN): likewise.
11038         (SQL_NNC_NON_NULL): likewise.
11039         (SQL_NNC_NULL): likewise.
11040         (SQL_NO_TOTAL): likewise.
11041         (SQL_NON_NULLABLE_COLUMNS): likewise.
11042         (SQL_NOSCAN): likewise.
11043         (SQL_NOSCAN_DEFAULT): likewise.
11044         (SQL_NOSCAN_OFF): likewise.
11045         (SQL_NOSCAN_ON): likewise.
11046         (SQL_NUM_EXTENSIONS): likewise.
11047         (SQL_NUM_FUNCTIONS): likewise.
11048         (SQL_NUMERIC_FUNCTIONS): likewise.
11049         (SQL_OAC_LEVEL1): likewise.
11050         (SQL_OAC_LEVEL2): likewise.
11051         (SQL_OAC_NONE): likewise.
11052         (SQL_ODBC_API_CONFORMANCE): likewise.
11053         (SQL_ODBC_CURSORS): likewise.
11054         (SQL_ODBC_KEYWORDS): likewise.
11055         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11056         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11057         (SQL_ODBC_SQL_OPT_IEF): likewise.
11058         (SQL_ODBC_VER): likewise.
11059         (SQL_OPT_TRACE): likewise.
11060         (SQL_OPT_TRACE_DEFAULT): likewise.
11061         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11062         (SQL_OPT_TRACE_OFF): likewise.
11063         (SQL_OPT_TRACE_ON): likewise.
11064         (SQL_OPT_TRACEFILE): likewise.
11065         (SQL_OSC_CORE): likewise.
11066         (SQL_OSC_EXTENDED): likewise.
11067         (SQL_OSC_MINIMUM): likewise.
11068         (SQL_OSCC_COMPLIANT): likewise.
11069         (SQL_OSCC_NOT_COMPLIANT): likewise.
11070         (SQL_OU_DML_STATEMENTS): likewise.
11071         (SQL_OU_INDEX_DEFINITION): likewise.
11072         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11073         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11074         (SQL_OU_TABLE_DEFINITION): likewise.
11075         (SQL_OUTER_JOINS): likewise.
11076         (SQL_OWNER_TERM): likewise.
11077         (SQL_OWNER_USAGE): likewise.
11078         (SQL_PACKET_SIZE): likewise.
11079         (SQL_PC_NOT_PSEUDO): likewise.
11080         (SQL_POS_add): likewise.
11081         (SQL_POS_DELETE): likewise.
11082         (SQL_POS_OPERATIONS): likewise.
11083         (SQL_POS_POSITION): likewise.
11084         (SQL_POS_REFRESH): likewise.
11085         (SQL_POS_UPDATE): likewise.
11086         (SQL_POSITIONED_STATEMENTS): likewise.
11087         (SQL_PROCEDURE_TERM): likewise.
11088         (SQL_PROCEDURES): likewise.
11089         (SQL_PS_POSITIONED_DELETE): likewise.
11090         (SQL_PS_POSITIONED_UPDATE): likewise.
11091         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11092         (SQL_QL_END): likewise.
11093         (SQL_QL_START): likewise.
11094         (SQL_QU_DML_STATEMENTS): likewise.
11095         (SQL_QU_INDEX_DEFINITION): likewise.
11096         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11097         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11098         (SQL_QU_TABLE_DEFINITION): likewise.
11099         (SQL_QUALIFIER_LOCATION): likewise.
11100         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11101         (SQL_QUALIFIER_TERM): likewise.
11102         (SQL_QUALIFIER_USAGE): likewise.
11103         (SQL_QUERY_TIMEOUT): likewise.
11104         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11105         (SQL_QUICK): likewise.
11106         (SQL_QUIET_MODE): likewise.
11107         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11108         (SQL_RD_DEFAULT): likewise.
11109         (SQL_RD_OFF): likewise.
11110         (SQL_RD_ON): likewise.
11111         (SQL_RETRIEVE_DATA): likewise.
11112         (SQL_ROW_NUMBER): likewise.
11113         (SQL_ROW_UPDATES): likewise.
11114         (SQL_ROWSET_SIZE): likewise.
11115         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11116         (SQL_ROWVER): likewise.
11117         (SQL_SC_NON_UNIQUE): likewise.
11118         (SQL_SC_TRY_UNIQUE): likewise.
11119         (SQL_SC_UNIQUE): likewise.
11120         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11121         (SQL_SCROLL_DYNAMIC): likewise.
11122         (SQL_SCROLL_FORWARD_ONLY): likewise.
11123         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11124         (SQL_SCROLL_OPTIONS): likewise.
11125         (SQL_SCROLL_STATIC): likewise.
11126         (SQL_SEARCHABLE): likewise.
11127         (SQL_SIGNED_OFFSET): likewise.
11128         (SQL_SIMULATE_CURSOR): likewise.
11129         (SQL_SO_DYNAMIC): likewise.
11130         (SQL_SO_FORWARD_ONLY): likewise.
11131         (SQL_SO_KEYSET_DRIVEN): likewise.
11132         (SQL_SO_MIXED): likewise.
11133         (SQL_SO_STATIC): likewise.
11134         (SQL_SPEC_MAJOR): likewise.
11135         (SQL_SPEC_MINOR): likewise.
11136         (SQL_SPEC_STRING): likewise.
11137         (SQL_SQ_COMPARISON): likewise.
11138         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11139         (SQL_SQ_EXISTS): likewise.
11140         (SQL_SQ_IN): likewise.
11141         (SQL_SQ_QUANTIFIED): likewise.
11142         (SQL_SQLSTATE_SIZE): likewise.
11143         (SQL_SS_addITIONS): likewise.
11144         (SQL_SS_DELETIONS): likewise.
11145         (SQL_SS_UPDATES): likewise.
11146         (SQL_STATIC_SENSITIVITY): likewise.
11147         (SQL_STMT_OPT_MAX): likewise.
11148         (SQL_STMT_OPT_MIN): likewise.
11149         (SQL_STRING_FUNCTIONS): likewise.
11150         (SQL_SUBQUERIES): likewise.
11151         (SQL_SYSTEM_FUNCTIONS): likewise.
11152         (SQL_TABLE_STAT): likewise.
11153         (SQL_TABLE_TERM): likewise.
11154         (SQL_TIME): likewise.
11155         (SQL_TIMEDATE_add_INTERVALS): likewise.
11156         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11157         (SQL_TIMEDATE_FUNCTIONS): likewise.
11158         (SQL_TIMESTAMP): likewise.
11159         (SQL_TINYINT): likewise.
11160         (SQL_TRANSLATE_DLL): likewise.
11161         (SQL_TRANSLATE_OPTION): likewise.
11162         (SQL_TXN_ISOLATION): likewise.
11163         (SQL_TXN_VERSIONING): likewise.
11164         (SQL_TYPE_DRIVER_END): likewise.
11165         (SQL_TYPE_DRIVER_START): likewise.
11166         (SQL_TYPE_MAX): likewise.
11167         (SQL_TYPE_MIN): likewise.
11168         (SQL_TYPE_NULL): likewise.
11169         (SQL_U_UNION): likewise.
11170         (SQL_U_UNION_ALL): likewise.
11171         (SQL_UB_DEFAULT): likewise.
11172         (SQL_UB_OFF): likewise.
11173         (SQL_UB_ON): likewise.
11174         (SQL_UNICODE): likewise.
11175         (SQL_UNICODE_CHAR): likewise.
11176         (SQL_UNICODE_LONGVARCHAR): likewise.
11177         (SQL_UNICODE_VARCHAR): likewise.
11178         (SQL_UNION): likewise.
11179         (SQL_UNSEARCHABLE): likewise.
11180         (SQL_UNSIGNED_OFFSET): likewise.
11181         (SQL_USE_BOOKMARKS): likewise.
11182         (SQL_VARBINARY): likewise.
11183         (SQL_TRUE): add define for ODBC3.x.
11184         (SQL_FALSE): likewise.
11185         (SQL_AM_CONNECTION): likewise.
11186         (SQL_AM_NONE): likewise.
11187         (SQL_AM_STATEMENT): likewise.
11188         (SQL_API_SQLALLOCHANDLE): likewise.
11189         (SQL_API_SQLBINDPARAM): likewise.
11190         (SQL_API_SQLCLOSECURSOR): likewise.
11191         (SQL_API_SQLCOLATTRIBUTE): likewise.
11192         (SQL_API_SQLCOPYDESC): likewise.
11193         (SQL_API_SQLENDTRAN): likewise.
11194         (SQL_API_SQLFETCHSCROLL): likewise.
11195         (SQL_API_SQLFREEHANDLE): likewise.
11196         (SQL_API_SQLGETCONNECTATTR): likewise.
11197         (SQL_API_SQLGETDESCFIELD): likewise.
11198         (SQL_API_SQLGETDESCREC): likewise.
11199         (SQL_API_SQLGETDIAGFIELD): likewise.
11200         (SQL_API_SQLGETDIAGREC): likewise.
11201         (SQL_API_SQLGETENVATTR): likewise.
11202         (SQL_API_SQLGETSTMTATTR): likewise.
11203         (SQL_API_SQLSETCONNECTATTR): likewise.
11204         (SQL_API_SQLSETDESCFIELD): likewise.
11205         (SQL_API_SQLSETDESCREC): likewise.
11206         (SQL_API_SQLSETENVATTR): likewise.
11207         (SQL_API_SQLSETSTMTATTR): likewise.
11208         (SQL_ARD_TYPE): likewise.
11209         (SQL_AT_add_CONSTRAINT): likewise.
11210         (SQL_ATTR_APP_PARAM_DESC): likewise.
11211         (SQL_ATTR_APP_ROW_DESC): likewise.
11212         (SQL_ATTR_AUTO_IPD): likewise.
11213         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11214         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11215         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11216         (SQL_ATTR_IMP_ROW_DESC): likewise.
11217         (SQL_ATTR_METADATA_ID): likewise.
11218         (SQL_ATTR_OUTPUT_NTS): likewise.
11219         (SQL_CATALOG_NAME): likewise.
11220         (SQL_CODE_DATE): likewise.
11221         (SQL_CODE_TIME): likewise.
11222         (SQL_CODE_TIMESTAMP): likewise.
11223         (SQL_COLLATION_SEQ): likewise.
11224         (SQL_CURSOR_SENSITIVITY): likewise.
11225         (SQL_DATE_LEN): likewise.
11226         (SQL_DATETIME): likewise.
11227         (SQL_DEFAULT): likewise.
11228         (SQL_DESC_ALLOC_AUTO): likewise.
11229         (SQL_DESC_ALLOC_TYPE): likewise.
11230         (SQL_DESC_ALLOC_USER): likewise.
11231         (SQL_DESC_COUNT): likewise.
11232         (SQL_DESC_DATA_PTR): likewise.
11233         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11234         (SQL_DESC_INDICATOR_PTR): likewise.
11235         (SQL_DESC_LENGTH): likewise.
11236         (SQL_DESC_NAME): likewise.
11237         (SQL_DESC_NULLABLE): likewise.
11238         (SQL_DESC_OCTET_LENGTH): likewise.
11239         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11240         (SQL_DESC_PRECISION): likewise.
11241         (SQL_DESC_SCALE): likewise.
11242         (SQL_DESC_TYPE): likewise.
11243         (SQL_DESC_UNNAMED): likewise.
11244         (SQL_DESCRIBE_PARAMETER): likewise.
11245         (SQL_DIAG_ALTER_DOMAIN): likewise.
11246         (SQL_DIAG_ALTER_TABLE): likewise.
11247         (SQL_DIAG_CALL): likewise.
11248         (SQL_DIAG_CLASS_ORIGIN): likewise.
11249         (SQL_DIAG_CONNECTION_NAME): likewise.
11250         (SQL_DIAG_CREATE_ASSERTION): likewise.
11251         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11252         (SQL_DIAG_CREATE_COLLATION): likewise.
11253         (SQL_DIAG_CREATE_DOMAIN): likewise.
11254         (SQL_DIAG_CREATE_INDEX): likewise.
11255         (SQL_DIAG_CREATE_SCHEMA): likewise.
11256         (SQL_DIAG_CREATE_TABLE): likewise.
11257         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11258         (SQL_DIAG_CREATE_VIEW): likewise.
11259         (SQL_DIAG_DELETE_WHERE): likewise.
11260         (SQL_DIAG_DROP_ASSERTION): likewise.
11261         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11262         (SQL_DIAG_DROP_COLLATION): likewise.
11263         (SQL_DIAG_DROP_DOMAIN): likewise.
11264         (SQL_DIAG_DROP_INDEX): likewise.
11265         (SQL_DIAG_DROP_SCHEMA): likewise.
11266         (SQL_DIAG_DROP_TABLE): likewise.
11267         (SQL_DIAG_DROP_TRANSLATION): likewise.
11268         (SQL_DIAG_DROP_VIEW): likewise.
11269         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11270         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11271         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11272         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11273         (SQL_DIAG_GRANT): likewise.
11274         (SQL_DIAG_INSERT): likewise.
11275         (SQL_DIAG_MESSAGE_TEXT): likewise.
11276         (SQL_DIAG_NATIVE): likewise.
11277         (SQL_DIAG_NUMBER): likewise.
11278         (SQL_DIAG_RETURNCODE): likewise.
11279         (SQL_DIAG_REVOKE): likewise.
11280         (SQL_DIAG_ROW_COUNT): likewise.
11281         (SQL_DIAG_SELECT_CURSOR): likewise.
11282         (SQL_DIAG_SERVER_NAME): likewise.
11283         (SQL_DIAG_SQLSTATE): likewise.
11284         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11285         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11286         (SQL_DIAG_UPDATE_WHERE): likewise.
11287         (SQL_FALSE): likewise.
11288         (SQL_FETCH_ABSOLUTE): likewise.
11289         (SQL_FETCH_LAST): likewise.
11290         (SQL_FETCH_PRIOR): likewise.
11291         (SQL_FETCH_RELATIVE): likewise.
11292         (SQL_HANDLE_DBC): likewise.
11293         (SQL_HANDLE_DESC): likewise.
11294         (SQL_HANDLE_ENV): likewise.
11295         (SQL_HANDLE_STMT): likewise.
11296         (SQL_INSENSITIVE): likewise.
11297         (SQL_INTEGRITY): likewise.
11298         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11299         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11300         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11301         (SQL_MAX_IDENTIFIER_LEN): likewise.
11302         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11303         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11304         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11305         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11306         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11307         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11308         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11309         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11310         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11311         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11312         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11313         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11314         (SQL_MAXIMUM_ROW_SIZE): likewise.
11315         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11316         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11317         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11318         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11319         (SQL_NAMED): likewise.
11320         (SQL_NONSCROLLABLE): likewise.
11321         (SQL_NTSL): likewise.
11322         (SQL_NULL_HANDLE): likewise.
11323         (SQL_NULL_HDESC): likewise.
11324         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11325         (SQL_PRED_BASIC): likewise.
11326         (SQL_PRED_CHAR): likewise.
11327         (SQL_PRED_NONE): likewise.
11328         (SQL_ROW_IDENTIFIER): likewise.
11329         (SQL_SCROLLABLE): likewise.
11330         (SQL_SENSITIVE): likewise.
11331         (SQL_SUCCEEDED(rc)): likewise.
11332         (SQL_TIME_LEN): likewise.
11333         (SQL_TIMESTAMP_LEN): likewise.
11334         (SQL_TRANSACTION_CAPABLE): likewise.
11335         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11336         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11337         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11338         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11339         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11340         (SQL_TYPE_DATE): likewise.
11341         (SQL_TYPE_TIME): likewise.
11342         (SQL_TYPE_TIMESTAMP): likewise.
11343         (SQL_UNKNOWN_TYPE): likewise.
11344         (SQL_UNNAMED): likewise.
11345         (SQL_UNSPECIFIED): likewise.
11346         (SQL_XOPEN_CLI_YEAR): likewise.
11347         (SQLAllocConnect): add comment marking as deperecated.
11348         (SQLAllocEnv): likewise.
11349         (SQLAllocStmt): likewise.
11350         (SQLFreeConnect): likewise.
11351         (SQLFreeEnv): likewise.
11352         (SQLGetConnectOption): likewise.
11353         (SQLGetStmtOption): likewise.
11354
11355         * include/sqlext.h (#include <sqlucode.h>): add directive.
11356         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11357         (SQLColAttributes): likewise.
11358         (SQLBulkOperations): add function prototype.
11359         (SQLAllocHandleStd): likewise
11360         (TraceReturn): add Trace API prototype.
11361         (TraceVersion): likewise.
11362         (ODBCGetTryWaitValue):likewise.
11363         (ODBCSetTryWaitValue): likewise.
11364         (SQL_LOCK_RECORD): correct function macro.
11365         (SQL_REFRESH_RECORD): likewise.
11366         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11367         _WIN64 compatability.
11368         move defines for non-core functions from sql.h to sqlext.h (refer
11369         changes for sql.h)
11370         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11371         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11372         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11373         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11374         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11375         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11376         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11377         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11378         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11379         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11380         (SQL_AF_ALL): likewise.
11381         (SQL_AF_AVG): likewise.
11382         (SQL_AF_COUNT): likewise.
11383         (SQL_AF_DISTINCT): likewise.
11384         (SQL_AF_MAX): likewise.
11385         (SQL_AF_MIN): likewise.
11386         (SQL_AF_SUM): likewise.
11387         (SQL_AGGREGATE_FUNCTIONS): likewise.
11388         (SQL_ALL_CATALOGS): likewise.
11389         (SQL_ALL_SCHEMAS): likewise.
11390         (SQL_ALL_TABLE_TYPES): likewise.
11391         (SQL_ALTER_DOMAIN): likewise.
11392         (SQL_AM_CONNECTION): likewise.
11393         (SQL_AM_NONE): likewise.
11394         (SQL_AM_STATEMENT): likewise.
11395         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11396         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11397         (SQL_API_SQLALLOCHANDLESTD): likewise.
11398         (SQL_API_SQLBULKOPERATIONS): likewise.
11399         (SQL_ASYNC_MODE): likewise.
11400         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11401         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11402         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11403         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11404         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11405         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11406         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11407         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11408         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11409         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11410         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11411         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11412         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11413         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11414         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11415         (SQL_ATTR_ACCESS_MODE): likewise.
11416         (SQL_ATTR_ASYNC_ENABLE): likewise.
11417         (SQL_ATTR_AUTOCOMMIT): likewise.
11418         (SQL_ATTR_CONCURRENCY): likewise.
11419         (SQL_ATTR_CONNECTION_POOLING): likewise.
11420         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11421         (SQL_ATTR_CP_MATCH): likewise.
11422         (SQL_ATTR_CURRENT_CATALOG): likewise.
11423         (SQL_ATTR_CURSOR_TYPE): likewise.
11424         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11425         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11426         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11427         (SQL_ATTR_ENLIST_IN_XA): likewise.
11428         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11429         (SQL_ATTR_KEYSET_SIZE): likewise.
11430         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11431         (SQL_ATTR_MAX_LENGTH): likewise.
11432         (SQL_ATTR_MAX_ROWS): likewise.
11433         (SQL_ATTR_NOSCAN): likewise.
11434         (SQL_ATTR_ODBC_CURSORS): likewise.
11435         (SQL_ATTR_ODBC_VERSION): likewise.
11436         (SQL_ATTR_PACKET_SIZE): likewise.
11437         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11438         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11439         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11440         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11441         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11442         (SQL_ATTR_PARAMSET_SIZE): likewise.
11443         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11444         (SQL_ATTR_QUIET_MODE): likewise.
11445         (SQL_ATTR_RETRIEVE_DATA): likewise.
11446         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11447         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11448         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11449         (SQL_ATTR_ROW_NUMBER): likewise.
11450         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11451         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11452         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11453         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11454         (SQL_ATTR_TRACE): likewise.
11455         (SQL_ATTR_TRACEFILE): likewise.
11456         (SQL_ATTR_TRANSLATE_LIB): likewise.
11457         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11458         (SQL_ATTR_TXN_ISOLATION): likewise.
11459         (SQL_ATTR_USE_BOOKMARKS): likewise.
11460         (SQL_BATCH_ROW_COUNT): likewise.
11461         (SQL_BATCH_SUPPORT): likewise.
11462         (SQL_BRC_EXPLICIT): likewise.
11463         (SQL_BRC_PROCEDURES): likewise.
11464         (SQL_BRC_ROLLED_UP): likewise.
11465         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11466         (SQL_BS_ROW_COUNT_PROC): likewise.
11467         (SQL_BS_SELECT_EXPLICIT): likewise.
11468         (SQL_BS_SELECT_PROC): likewise.
11469         (SQL_C_INTERVAL_DAY): likewise.
11470         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11471         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11472         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11473         (SQL_C_INTERVAL_HOUR): likewise.
11474         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11475         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11476         (SQL_C_INTERVAL_MINUTE): likewise.
11477         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11478         (SQL_C_INTERVAL_MONTH): likewise.
11479         (SQL_C_INTERVAL_SECOND): likewise.
11480         (SQL_C_INTERVAL_YEAR): likewise.
11481         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11482         (SQL_C_NUMERIC): likewise.
11483         (SQL_C_SBIGINT): likewise.
11484         (SQL_C_TYPE_DATE): likewise.
11485         (SQL_C_TYPE_TIME): likewise.
11486         (SQL_C_TYPE_TIMESTAMP): likewise.
11487         (SQL_C_UBIGINT): likewise.
11488         (SQL_C_VARBOOKMARK): likewise.
11489         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11490         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11491         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11492         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11493         (SQL_CA_CREATE_ASSERTION): likewise.
11494         (SQL_CA1_ABSOLUTE): likewise.
11495         (SQL_CA1_BOOKMARK): likewise.
11496         (SQL_CA1_BULK_ADD): likewise.
11497         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11498         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11499         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11500         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11501         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11502         (SQL_CA1_LOCK_UNLOCK): likewise.
11503         (SQL_CA1_NEXT): likewise.
11504         (SQL_CA1_POS_DELETE): likewise.
11505         (SQL_CA1_POS_POSITION): likewise.
11506         (SQL_CA1_POS_REFRESH): likewise.
11507         (SQL_CA1_POS_UPDATE): likewise.
11508         (SQL_CA1_POSITIONED_DELETE): likewise.
11509         (SQL_CA1_POSITIONED_UPDATE): likewise.
11510         (SQL_CA1_RELATIVE): likewise.
11511         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11512         (SQL_CA2_CRC_APPROXIMATE): likewise.
11513         (SQL_CA2_CRC_EXACT): likewise.
11514         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11515         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11516         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11517         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11518         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11519         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11520         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11521         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11522         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11523         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11524         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11525         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11526         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11527         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11528         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11529         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11530         (SQL_CATALOG_LOCATION): likewise.
11531         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11532         (SQL_CATALOG_TERM): likewise.
11533         (SQL_CATALOG_USAGE): likewise.
11534         (SQL_CCOL_CREATE_COLLATION): likewise.
11535         (SQL_CCS_COLLATE_CLAUSE): likewise.
11536         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11537         (SQL_CCS_LIMITED_COLLATION): likewise.
11538         (SQL_CDO_COLLATION): likewise.
11539         (SQL_CDO_CONSTRAINT): likewise.
11540         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11541         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11542         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11543         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11544         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11545         (SQL_CDO_CREATE_DOMAIN): likewise.
11546         (SQL_CDO_DEFAULT): likewise.
11547         (SQL_CL_END): likewise.
11548         (SQL_CL_START): likewise.
11549         (SQL_COL_PRED_BASIC): likewise.
11550         (SQL_COL_PRED_CHAR): likewise.
11551         (SQL_COLUMN_DRIVER_START): likewise.
11552         (SQL_COLUMN_IGNORE): likewise.
11553         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11554         (SQL_CONVERT_GUID): likewise.
11555         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11556         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11557         (SQL_CONVERT_WCHAR): likewise.
11558         (SQL_CONVERT_WLONGVARCHAR): likewise.
11559         (SQL_CONVERT_WVARCHAR): likewise.
11560         (SQL_CP_DEFAULT): likewise.
11561         (SQL_CP_MATCH_DEFAULT): likewise.
11562         (SQL_CP_OFF): likewise.
11563         (SQL_CP_ONE_PER_DRIVER): likewise.
11564         (SQL_CP_ONE_PER_HENV): likewise.
11565         (SQL_CP_RELAXED_MATCH): likewise.
11566         (SQL_CP_STRICT_MATCH): likewise.
11567         (SQL_CREATE_ASSERTION): likewise.
11568         (SQL_CREATE_CHARACTER_SET): likewise.
11569         (SQL_CREATE_COLLATION): likewise.
11570         (SQL_CREATE_DOMAIN): likewise.
11571         (SQL_CREATE_SCHEMA): likewise.
11572         (SQL_CREATE_TABLE): likewise.
11573         (SQL_CREATE_TRANSLATION): likewise.
11574         (SQL_CREATE_VIEW): likewise.
11575         (SQL_CS_AUTHORIZATION): likewise.
11576         (SQL_CS_CREATE_SCHEMA): likewise.
11577         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11578         (SQL_CT_COLUMN_COLLATION): likewise.
11579         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11580         (SQL_CT_COLUMN_DEFAULT): likewise.
11581         (SQL_CT_COMMIT_DELETE): likewise.
11582         (SQL_CT_COMMIT_PRESERVE): likewise.
11583         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11584         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11585         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11586         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11587         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11588         (SQL_CT_CREATE_TABLE): likewise.
11589         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11590         (SQL_CT_LOCAL_TEMPORARY): likewise.
11591         (SQL_CT_TABLE_CONSTRAINT): likewise.
11592         (SQL_CTR_CREATE_TRANSLATION): likewise.
11593         (SQL_CU_DML_STATEMENTS): likewise.
11594         (SQL_CU_INDEX_DEFINITION): likewise.
11595         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11596         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11597         (SQL_CU_TABLE_DEFINITION): likewise.
11598         (SQL_CVT_GUID): likewise.
11599         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11600         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11601         (SQL_CVT_WCHAR): likewise.
11602         (SQL_CVT_WLONGVARCHAR): likewise.
11603         (SQL_CVT_WVARCHAR): likewise.
11604         (SQL_DA_DROP_ASSERTION): likewise.
11605         (SQL_DATETIME_LITERALS): likewise.
11606         (SQL_DB_DEFAULT): likewise.
11607         (SQL_DB_DISCONNECT): likewise.
11608         (SQL_DB_RETURN_TO_POOL): likewise.
11609         (SQL_DC_DROP_COLLATION): likewise.
11610         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11611         (SQL_DD_CASCADE): likewise.
11612         (SQL_DD_DROP_DOMAIN): likewise.
11613         (SQL_DD_RESTRICT): likewise.
11614         (SQL_DDL_INDEX): likewise.
11615         (SQL_DELETE_BY_BOOKMARK): likewise.
11616         (SQL_DESC_ARRAY_SIZE): likewise.
11617         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11618         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11619         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11620         (SQL_DESC_BASE_TABLE_NAME): likewise.
11621         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11622         (SQL_DESC_BIND_TYPE): likewise.
11623         (SQL_DESC_CASE_SENSITIVE): likewise.
11624         (SQL_DESC_CATALOG_NAME): likewise.
11625         (SQL_DESC_CONCISE_TYPE): likewise.
11626         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11627         (SQL_DESC_DISPLAY_SIZE): likewise.
11628         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11629         (SQL_DESC_LABEL): likewise.
11630         (SQL_DESC_LITERAL_PREFIX): likewise.
11631         (SQL_DESC_LITERAL_SUFFIX): likewise.
11632         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11633         (SQL_DESC_MAXIMUM_SCALE): likewise.
11634         (SQL_DESC_MINIMUM_SCALE): likewise.
11635         (SQL_DESC_NUM_PREC_RADIX): likewise.
11636         (SQL_DESC_PARAMETER_TYPE): likewise.
11637         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11638         (SQL_DESC_SCHEMA_NAME): likewise.
11639         (SQL_DESC_SEARCHABLE): likewise.
11640         (SQL_DESC_TABLE_NAME): likewise.
11641         (SQL_DESC_TYPE_NAME): likewise.
11642         (SQL_DESC_UNSIGNED): likewise.
11643         (SQL_DESC_UPDATABLE): likewise.
11644         (SQL_DI_CREATE_INDEX): likewise.
11645         (SQL_DI_DROP_INDEX): likewise.
11646         (SQL_DIAG_COLUMN_NUMBER): likewise.
11647         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11648         (SQL_DIAG_ROW_NUMBER): likewise.
11649         (SQL_DL_SQL92_DATE): likewise.
11650         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11651         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11652         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11653         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11654         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11655         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11656         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11657         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11658         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11659         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11660         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11661         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11662         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11663         (SQL_DL_SQL92_TIME): likewise.
11664         (SQL_DL_SQL92_TIMESTAMP): likewise.
11665         (SQL_DM_VER): likewise.
11666         (SQL_DRIVER_HDESC): likewise.
11667         (SQL_DROP_ASSERTION): likewise.
11668         (SQL_DROP_CHARACTER_SET): likewise.
11669         (SQL_DROP_COLLATION): likewise.
11670         (SQL_DROP_DOMAIN): likewise.
11671         (SQL_DROP_SCHEMA): likewise.
11672         (SQL_DROP_TABLE): likewise.
11673         (SQL_DROP_TRANSLATION): likewise.
11674         (SQL_DROP_VIEW): likewise.
11675         (SQL_DS_CASCADE): likewise.
11676         (SQL_DS_DROP_SCHEMA): likewise.
11677         (SQL_DS_RESTRICT): likewise.
11678         (SQL_DT_CASCADE): likewise.
11679         (SQL_DT_DROP_TABLE): likewise.
11680         (SQL_DT_RESTRICT): likewise.
11681         (SQL_DTC_DONE): likewise.
11682         (SQL_DTR_DROP_TRANSLATION): likewise.
11683         (SQL_DV_CASCADE): likewise.
11684         (SQL_DV_DROP_VIEW): likewise.
11685         (SQL_DV_RESTRICT): likewise.
11686         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11687         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11688         (SQL_EXT_API_LAST): likewise.
11689         (SQL_EXT_API_START): likewise.
11690         (SQL_FETCH_BY_BOOKMARK): likewise.
11691         (SQL_FETCH_FIRST_SYSTEM): likewise.
11692         (SQL_FETCH_FIRST_USER): likewise.
11693         (SQL_FN_CVT_CAST): likewise.
11694         (SQL_FN_STR_BIT_LENGTH): likewise.
11695         (SQL_FN_STR_CHAR_LENGTH): likewise.
11696         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11697         (SQL_FN_STR_OCTET_LENGTH): likewise.
11698         (SQL_FN_STR_POSITION): likewise.
11699         (SQL_FN_TD_CURRENT_DATE): likewise.
11700         (SQL_FN_TD_CURRENT_TIME): likewise.
11701         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11702         (SQL_FN_TD_EXTRACT): likewise.
11703         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11704         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11705         (SQL_FUNC_EXISTS(exists,api)): likewise.
11706         (SQL_GB_COLLATE): likewise.
11707         (SQL_HANDLE_SENV): likewise.
11708         (SQL_IK_ALL): likewise.
11709         (SQL_IK_ASC): likewise.
11710         (SQL_IK_DESC): likewise.
11711         (SQL_IK_NONE): likewise.
11712         (SQL_INDEX_KEYWORDS): likewise.
11713         (SQL_INFO_DRIVER_START): likewise.
11714         (SQL_INFO_LAST): likewise.
11715         (SQL_INFO_SCHEMA_VIEWS): likewise.
11716         (SQL_INITIALLY_DEFERRED): likewise.
11717         (SQL_INITIALLY_IMMEDIATE): likewise.
11718         (SQL_INSERT_STATEMENT): likewise.
11719         (SQL_INTERVAL): likewise.
11720         (SQL_IS_INSERT_LITERALS): likewise.
11721         (SQL_IS_INSERT_SEARCHED): likewise.
11722         (SQL_IS_INTEGER): likewise.
11723         (SQL_IS_POINTER): likewise.
11724         (SQL_IS_SELECT_INTO): likewise.
11725         (SQL_IS_SMALLINT): likewise.
11726         (SQL_IS_UINTEGER): likewise.
11727         (SQL_IS_USMALLINT): likewise.
11728         (SQL_ISV_ASSERTIONS): likewise.
11729         (SQL_ISV_CHARACTER_SETS): likewise.
11730         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11731         (SQL_ISV_COLLATIONS): likewise.
11732         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11733         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11734         (SQL_ISV_COLUMNS): likewise.
11735         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11736         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11737         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11738         (SQL_ISV_DOMAINS): likewise.
11739         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11740         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11741         (SQL_ISV_SCHEMATA): likewise.
11742         (SQL_ISV_SQL_LANGUAGES): likewise.
11743         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11744         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11745         (SQL_ISV_TABLES): likewise.
11746         (SQL_ISV_TRANSLATIONS): likewise.
11747         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11748         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11749         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11750         (SQL_ISV_VIEWS): likewise.
11751         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11752         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11753         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11754         (SQL_NO_COLUMN_NUMBER): likewise.
11755         (SQL_NO_ROW_NUMBER): likewise.
11756         (SQL_NOT_DEFERRABLE): likewise.
11757         (SQL_NUM_EXTENSIONS): likewise.
11758         (SQL_NUM_FUNCTIONS): likewise.
11759         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11760         (SQL_OIC_CORE): likewise.
11761         (SQL_OIC_LEVEL1): likewise.
11762         (SQL_OIC_LEVEL2): likewise.
11763         (SQL_OV_ODBC2): likewise.
11764         (SQL_OV_ODBC3): likewise.
11765         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11766         (SQL_PARAM_ARRAY_SELECTS): likewise.
11767         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11768         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11769         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11770         (SQL_PARAM_ERROR): likewise.
11771         (SQL_PARAM_IGNORE): likewise.
11772         (SQL_PARAM_PROCEED): likewise.
11773         (SQL_PARAM_SUCCESS): likewise.
11774         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11775         (SQL_PARAM_UNUSED): likewise.
11776         (SQL_PARC_BATCH): likewise.
11777         (SQL_PARC_NO_BATCH): likewise.
11778         (SQL_PAS_BATCH): likewise.
11779         (SQL_PAS_NO_BATCH): likewise.
11780         (SQL_PAS_NO_SELECT): likewise.
11781         (SQL_ROW_IGNORE): likewise.
11782         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11783         (SQL_ROW_PROCEED): likewise.
11784         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11785         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11786         (SQL_SC_SQL92_ENTRY): likewise.
11787         (SQL_SC_SQL92_FULL): likewise.
11788         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11789         (SQL_SCC_ISO92_CLI): likewise.
11790         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11791         (SQL_SCHEMA_TERM): likewise.
11792         (SQL_SCHEMA_USAGE): likewise.
11793         (SQL_SDF_CURRENT_DATE): likewise.
11794         (SQL_SDF_CURRENT_TIME): likewise.
11795         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11796         (SQL_SFKD_CASCADE): likewise.
11797         (SQL_SFKD_NO_ACTION): likewise.
11798         (SQL_SFKD_SET_DEFAULT): likewise.
11799         (SQL_SFKD_SET_NULL): likewise.
11800         (SQL_SFKU_CASCADE): likewise.
11801         (SQL_SFKU_NO_ACTION): likewise.
11802         (SQL_SFKU_SET_DEFAULT): likewise.
11803         (SQL_SFKU_SET_NULL): likewise.
11804         (SQL_SG_DELETE_TABLE): likewise.
11805         (SQL_SG_INSERT_COLUMN): likewise.
11806         (SQL_SG_INSERT_TABLE): likewise.
11807         (SQL_SG_REFERENCES_COLUMN): likewise.
11808         (SQL_SG_REFERENCES_TABLE): likewise.
11809         (SQL_SG_SELECT_TABLE): likewise.
11810         (SQL_SG_UPDATE_COLUMN): likewise.
11811         (SQL_SG_UPDATE_TABLE): likewise.
11812         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11813         (SQL_SG_USAGE_ON_COLLATION): likewise.
11814         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11815         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11816         (SQL_SG_WITH_GRANT_OPTION): likewise.
11817         (SQL_SNVF_BIT_LENGTH): likewise.
11818         (SQL_SNVF_CHAR_LENGTH): likewise.
11819         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11820         (SQL_SNVF_EXTRACT): likewise.
11821         (SQL_SNVF_OCTET_LENGTH): likewise.
11822         (SQL_SNVF_POSITION): likewise.
11823         (SQL_SP_BETWEEN): likewise.
11824         (SQL_SP_COMPARISON): likewise.
11825         (SQL_SP_EXISTS): likewise.
11826         (SQL_SP_IN): likewise.
11827         (SQL_SP_ISNOTNULL): likewise.
11828         (SQL_SP_ISNULL): likewise.
11829         (SQL_SP_LIKE): likewise.
11830         (SQL_SP_MATCH_FULL): likewise.
11831         (SQL_SP_MATCH_PARTIAL): likewise.
11832         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11833         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11834         (SQL_SP_OVERLAPS): likewise.
11835         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11836         (SQL_SP_UNIQUE): likewise.
11837         (SQL_SQL_CONFORMANCE): likewise.
11838         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
11839         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
11840         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
11841         (SQL_SQL92_GRANT): likewise.
11842         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
11843         (SQL_SQL92_PREDICATES): likewise.
11844         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
11845         (SQL_SQL92_REVOKE): likewise.
11846         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
11847         (SQL_SQL92_STRING_FUNCTIONS): likewise.
11848         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
11849         (SQL_SR_CASCADE): likewise.
11850         (SQL_SR_DELETE_TABLE): likewise.
11851         (SQL_SR_GRANT_OPTION_FOR): likewise.
11852         (SQL_SR_INSERT_COLUMN): likewise.
11853         (SQL_SR_INSERT_TABLE): likewise.
11854         (SQL_SR_REFERENCES_COLUMN): likewise.
11855         (SQL_SR_REFERENCES_TABLE): likewise.
11856         (SQL_SR_RESTRICT): likewise.
11857         (SQL_SR_SELECT_TABLE): likewise.
11858         (SQL_SR_UPDATE_COLUMN): likewise.
11859         (SQL_SR_UPDATE_TABLE): likewise.
11860         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
11861         (SQL_SR_USAGE_ON_COLLATION): likewise.
11862         (SQL_SR_USAGE_ON_DOMAIN): likewise.
11863         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
11864         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
11865         (SQL_SRJO_CROSS_JOIN): likewise.
11866         (SQL_SRJO_EXCEPT_JOIN): likewise.
11867         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
11868         (SQL_SRJO_INNER_JOIN): likewise.
11869         (SQL_SRJO_INTERSECT_JOIN): likewise.
11870         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
11871         (SQL_SRJO_NATURAL_JOIN): likewise.
11872         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
11873         (SQL_SRJO_UNION_JOIN): likewise.
11874         (SQL_SRVC_DEFAULT): likewise.
11875         (SQL_SRVC_NULL): likewise.
11876         (SQL_SRVC_ROW_SUBQUERY): likewise.
11877         (SQL_SRVC_VALUE_EXPRESSION): likewise.
11878         (SQL_SSF_CONVERT): likewise.
11879         (SQL_SSF_LOWER): likewise.
11880         (SQL_SSF_SUBSTRING): likewise.
11881         (SQL_SSF_TRANSLATE): likewise.
11882         (SQL_SSF_TRIM_BOTH): likewise.
11883         (SQL_SSF_TRIM_LEADING): likewise.
11884         (SQL_SSF_TRIM_TRAILING): likewise.
11885         (SQL_SSF_UPPER): likewise.
11886         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
11887         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
11888         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
11889         (SQL_SU_DML_STATEMENTS): likewise.
11890         (SQL_SU_INDEX_DEFINITION): likewise.
11891         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
11892         (SQL_SU_PROCEDURE_INVOCATION): likewise.
11893         (SQL_SU_TABLE_DEFINITION): likewise.
11894         (SQL_SVE_CASE): likewise.
11895         (SQL_SVE_CAST): likewise.
11896         (SQL_SVE_COALESCE): likewise.
11897         (SQL_SVE_NULLIF): likewise.
11898         (SQL_UB_FIXED): likewise.
11899         (SQL_UB_VARIABLE): likewise.
11900         (SQL_UNION_STATEMENT): likewise.
11901         (SQL_UPDATE_BY_BOOKMARK): likewise.
11902         (SQL_US_UNION): likewise.
11903         (SQL_US_UNION_ALL): likewise.
11904         (SQL_DESC_ROWVER): likewise.
11905         (SQL_GUID): likewise.
11906         (SQL_C_GUID): likewise.
11907         (ODBC_STD): likewise.
11908         (SQLAllocHandle): likewise.
11909         (SQLAllocEnv(p)): likewise.
11910         (SQL_YEAR): likewise.
11911         (SQL_MONTH): likewise.
11912         (SQL_DAY): likewise.
11913         (SQL_HOUR): likewise.
11914         (SQL_MINUTE): likewise.
11915         (SQL_SECOND): likewise.
11916         (SQL_YEAR_TO_MONTH): likewise.
11917         (SQL_DAY_TO_HOUR): likewise.
11918         (SQL_DAY_TO_MINUTE): likewise.
11919         (SQL_DAY_TO_SECOND): likewise.
11920         (SQL_HOUR_TO_MINUTE): likewise.
11921         (SQL_HOUR_TO_SECOND): likewise.
11922         (SQL_MINUTE_TO_SECOND): likewise.
11923         (SQL_ATTR_ANSI_APP): likewise.
11924         (SQL_AA_TRUE): likewise.
11925         (SQL_AA_FALSE): likewise.
11926
11927         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
11928         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
11929         (struct tagSQL_DAY_SECOND): likewise.
11930         (struct tagSQL_INTERVAL_STRUCT): likewise.
11931         (struct tagSQL_NUMERIC_STRUCT): likewise.
11932         (struct tagSQLGUID): add for 0DBC3.50.
11933         (enum SQLINTERVAL): add for ODBC3.x.
11934         (SQLWCHAR): add typedef.
11935         (SQLTCHAR): add typedef, conditional on UNICODE.
11936         (SQLLEN): add typedef for _WIN64, define for _WIN32.
11937         (SQLULEN): likewise.
11938         (SQLROWOFFSET): likewise.
11939         (SQLROWCOUNT): likewise.
11940         (SQLTRANSID): likewise.
11941         (SQLSETPOSIROW): likewise.
11942         (SQLHANDLE): add ODBC3.x typedef.
11943         (SQLHDESC): likewise.
11944         (SQLDATE): likewise.
11945         (SQLDECIMAL): likewise.
11946         (SQLDOUBLE): likewise.
11947         (SQLFLOAT): likewise.
11948         (SQLNUMERIC): likewise.
11949         (SQLREAL): likewise.
11950         (SQLTIME): likewise.
11951         (SQLTIMESTAMP): likewise.
11952         (SQLVARCHAR): likewise.
11953         (SQLBIGINT): likewise.
11954         (SQLUBIGINT): likewise.
11955         (SQL_DATE_STRUCT): likewise.
11956         (SQL_TIME_STRUCT): likewise.
11957         (SQL_TIMESTAMP_STRUCT): likewise.
11958         (ODBCINT64): add ODBC3.x define.
11959
11960         * lib/odbc32.def : regenerate.
11961
11962 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
11963
11964         * Apply Danny Smith patch 102275
11965         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11966         * include/objbase.h: (COM_RIGHTS): Add definition.
11967         (tagSTDMSHLFLAGS): add enumeration.
11968         (CoInitializeEx): Add prototypes.
11969         (CoGetStdMarshalEx): ditto.
11970         (CoCreateInstanceEx): ditto.
11971         (CoInitializeSecurity): ditto.
11972         (CoGetCallContext): ditto.
11973         (CoQueryProxyBlanket): ditto.
11974         (CoSetProxyBlanket): ditto.
11975         (CoCopyProxy): ditto.
11976         (CoQueryClientBlanket): ditto.
11977         (CoImpersonateClient): ditto.
11978         (CoRevertToSelf): ditto.
11979         (CoQueryAuthenticationServices): ditto.
11980         (CoSwitchCallContext): ditto.
11981         (CoGetInstanceFromFile): ditto.
11982         (CoGetInstanceFromIStorage): ditto.
11983         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
11984         (SOLE_AUTHENTICATION_INFO): ditto.
11985         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
11986         (COLE_DEFAULT_PRINCIPAL): Add definition.
11987         (COLE_DEFAULT_AUTHINFO): Ditto.
11988         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
11989         (RPC_PROTSEQ_VECTOR) Fix typo.
11990         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
11991         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
11992         attribute.
11993
11994 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
11995
11996         * lib/msvcp60.def: Apply Danny Smith patch 103321.
11997         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
11998         New file.
11999
12000 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12001
12002         * include/winnt.h: Add PTOKEN_USER.
12003
12004 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12005
12006         * include/sqlucode.h: Apply Danny Smith patch 102443
12007         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12008         New file.
12009
12010 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12011
12012         * lib/odbccp32.def: Apply Danny Smith patch 102442
12013         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12014         New file.
12015
12016 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12017
12018         * include/odbcinst.h: Apply Danny Smith patch 102441
12019         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12020         New file.
12021
12022 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12023
12024         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12025
12026 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12027
12028         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12029
12030 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12031
12032         * lib/Makefile.in: Install headers and libraries in tooldir.
12033
12034 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12035
12036         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12037         SORT_STRINGSORT: ditto.
12038         CMAP*: ditto.
12039         CTRY_*: add new defines.
12040         LGRPID_*: ditto.
12041         LCMAP*: change defines to hex notation.
12042         CALID: change from ULONG to DWORD.
12043         CALTYPE: ditto.
12044         _cpinfoex[AW]: add structure.
12045         FoldString: correct Unicode mappings.
12046         GetCPInfoEx[AW]: add prototypes.
12047         EnumCalendarInfoEx[AW]: ditto.
12048         EnumDateFormatsEx[AW]: ditto.
12049         EnumSystemLanguageGroups[AW]: ditto.
12050         EnumLanguageGroupLocales[AW]: ditto.
12051         EnumUILanguages[AW]: ditto.
12052         GetSystemDefaultUILanguage[AW]: ditto.
12053         GetUserDefaultUILanguage[AW]: ditto.
12054         IsValidLanguageGroup[AW]: ditto.
12055         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12056         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12057         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12058         UILANGUAGE_ENUMPROC[AW]: ditto
12059         DATEFMT_ENUMPROCEX[AW]: ditto
12060         LPCURRENCYFMT[AW]: add structure pointer typedef
12061         LPNUMBERFMT[AW]: ditto
12062
12063 2000-12-02  Matt Hargett  <matt@use.net>
12064
12065         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12066         possible return code for the SetFilePointer() win32 API call.
12067
12068 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12069
12070         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12071
12072 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12073
12074         * Makefile.in: increment VERSION.
12075         (dist:) Rename to srcdist.  Create new dist target to call
12076         srcdist and bindist targets.
12077         (srcdist:) New target.
12078         (clean-top:) add call to mostlyclean-top and add rm of distribution
12079         tarballs.
12080         * lib/Makefile.in: (uninstall:) modify to remove files from the
12081         new w32api subdirectory and to remove w32api subdirectory.
12082         (xuninstall:) Ditto.
12083         TODO: Add a task to redo the clean targets of Makefile.in
12084
12085 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12086
12087         * lib/Makefile.in: Install header files in w32api subdirectory.
12088
12089 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12090
12091         * CONTRIBUTIONS: New file.
12092         * README: Change the maintained by header.
12093         * TODO: Add a note about checking the TODO.
12094
12095 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12096
12097         * Merge in accepted changes from
12098         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12099         * include/basetyps.h: add comment for GUID_DEFINED
12100         * include/lm.h: add includes for lmerr.h and lmserver.h
12101         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12102         * include/lmerr.h:  add error codes
12103         * include/lmserver.h: replace LPTSTR with LPWSTR,
12104         LPTCSTR with LPWCSTR in structures and prototypes
12105         * include/lmshare.h: ditto
12106         * include/lmuse.h: ditto
12107         * include/lmstats.h: ditto
12108         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12109         * include/winbase.h: change first argument of CommConfigDialog to const
12110         * include/windowsx.h: add macros  defining FAR versions of
12111         mem and string functions for porting from Win16 code
12112         * include/winioctl.h:  added IOCTL_STORAGE defines
12113         * include/winnetwk.h:  added WNNC_NET flags
12114         * include/winnt.h: add include of <basetsd.h>;
12115         add structs; add pointer typedefs  for TOKEN structs
12116         * include/winsock.h: add guard around BSD-ish typedefs
12117         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12118         * include/basetsd.h: new file
12119         * include/raserror.h: ditto
12120         * include/rassapi.h: ditto
12121         * include/ras.h: ditto
12122         comment from Earnie: replaced original ras.h contribution with Danny's
12123         contribution as it is more complete.
12124         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12125
12126 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12127
12128         * Makefile.in: increment VERSION.  Change tar file name for dist and
12129         bindist targets to be more standard.
12130         * config.guess: Update with the currently published file.
12131         * config.sub: ditto.
12132         * configure.in: Use value of build_alias instead of testing for
12133         directory names to set BUILDENV.
12134         * configure: ditto.
12135         * lib/Makefile.in: Change the name of the targets install,
12136         install-headers and install-libraries to xinstall, xinstall-headers
12137         and xinstall-libraries for system target specified installation.
12138         Recreate targets install, install-headers and install-libraries for
12139         exec-prefix specified installation.  Ditto for the uninstall targets of
12140         the same name.
12141
12142 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12143
12144         * include/iprtrmib.h: Further layout changes according to standard.
12145         * include/iptypes.h: Ditto.
12146         * include/ntdef.h: Ditto.
12147         * include/ntsecapi.h: Ditto.
12148         * include/subauth.h: Ditto.
12149
12150 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12151
12152         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12153
12154 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12155
12156         * include/ntsecapi.h: New file.
12157         * include/subauth.h: Ditto.
12158         * include/ipexport.h: Fix global header define not to contain
12159         trailing underscore. Change layout according to standard.
12160         * include/iphlpapi.h: Ditto.
12161         * include/ipifcons.h: Ditto.
12162         * include/iprtrmib.h: Ditto.
12163         * include/iptypes.h: Ditto.
12164         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12165         of inclusion of ntsecapi.h and subauth.h.
12166         * lib/secur32.def: New stub for secur32.dll.
12167
12168 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12169
12170         * include/ras.h: New file.
12171         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12172         RasEnumDevicesW.
12173
12174 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12175
12176         * include/ntdef.h: Add define for NTAPI.
12177
12178 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12179
12180         * include/ipexport.h: Add missing `extern "C"' directives.
12181         * include/iphlpapi.h: Ditto.
12182         * include/iprtrmib.h: Ditto.
12183         * include/iptypes.h: Ditto.
12184
12185 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12186
12187         * include/ipifcons.h: New header file.
12188         * include/iprtrmib.h: Move operational states to ipifcons.h.
12189         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12190         declaration.
12191
12192 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12193
12194         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12195
12196 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12197
12198         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12199         * include/iptypes.h: New header file.
12200         * include/ipexport.h: Ditto.
12201         * include/iphlpapi.h: Ditto.
12202         * include/iprtrmib.h: Ditto.
12203
12204 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12205
12206         * include/ntdef.h: New file.
12207
12208 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12209
12210         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12211         to TOKEN_INFORMATION_CLASS type.
12212         Add QUOTA_LIMITS type.
12213
12214 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12215
12216         * include/userenv.h: New header file.
12217         * lib/userenv.def: New stub for userenv.dll.
12218
12219 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12220
12221         * include/winuser.h: Correct PCWPSTRUCT typo.
12222         (discovered by Axel Riese)
12223
12224 2000-07-27  DJ Delorie  <dj@redhat.com>
12225
12226         * include/windows.h: optimize non-inclusion of repeat headers
12227
12228 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12229
12230         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12231         LPTOKEN_SOURCE.
12232
12233 2000-07-11  DJ Delorie  <dj@cygnus.com>
12234
12235         * include/shlobj.h: add CSIDL_COMMON_*
12236
12237 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12238
12239         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12240         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12241         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12242         FILE_FLAG_OPEN_NO_RECALL.
12243         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12244         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12245         * winnt.h: Add typedef for GUID.
12246         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12247         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12248         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12249         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12250         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12251         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12252         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12253         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12254         * lib/psapi.def: New file.
12255
12256 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12257
12258         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12259         previously defined.
12260         * windef.h : Ditto.
12261
12262 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12263
12264         * include/winnt.h: Add some missing defines related to locale
12265         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12266
12267 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12268
12269         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12270
12271 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12272
12273         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12274
12275 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12276
12277         * include/wininet.h: Add another "INTERNET_OPTIONS".
12278
12279 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12280
12281         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12282
12283 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12284
12285         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12286         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12287         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12288         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12289
12290 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12291
12292         * include/winbase.h: Change first argument of ENUMRES* types to
12293         coincide with Microsoft usage.
12294
12295 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12296
12297         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12298
12299 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12300
12301         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12302         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12303         * include/winnt.h (SEC_*): Add macros.
12304         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12305         * include/ole.h: Workaround for C++ parser bug.
12306         * include/rpcdcep.h: Likewise.
12307         * include/winsock.h: Likewise.
12308
12309 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12310
12311         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12312
12313 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12314
12315         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12316         * include/wtypes.h (PBLOB, LPBLOB): Define.
12317         * include/winsock2.h: Much more complete version.
12318         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12319
12320         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12321         * include/winsock.h (FD_CLR): Add missing ')'.
12322         (timercmp): Fix macro to handle all 6 comparison operators.
12323         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12324         (AF_MAX): Update.
12325         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12326
12327         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12328         namespace pollution.
12329         * include/rpcndr.h: Likewise.
12330         * include/winnt.h: Likewise.
12331         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12332         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12333         * lib/ole32.def: Add missing exports.
12334         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12335         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12336         (NT_TIB): Define.
12337         * include/tlhelp32.h: New file.
12338
12339 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12340
12341         * include/rapi.h: New file.
12342         * lib/rapi.def: New file.
12343
12344 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12345
12346         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12347
12348 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12349
12350         * Snapshot 2000-02-03.
12351
12352 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12353
12354         * include/winnt.h: Add ARM support.
12355
12356 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12357
12358         From Greg Primes <gregory.l.priem@intel.com>:
12359         * include/oaidl.h (DESCKIND): Define macro.
12360         (ITypeComp): Define interface.
12361         (ITypeComp): Likewise.
12362         * rpcndr.h (DECLSPEC_UUID): Define macro.
12363         (MIDL_INTERFACE): Likewise.
12364
12365         * include/psapi.h: New file.
12366         * include/imagehlp.h: New file.
12367         * lib/imagehlp.def: New file.
12368
12369         * include/oaidl.h (tagVARIANT): Update fields.
12370
12371         From Craig Lanning <CraigL@DyCon.com>:
12372         * include/commctrl.h: Add some TCS_* macros.
12373         * include/winnls.h (IsValidLocale): Add prototype.
12374
12375 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12376
12377         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12378         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12379         * include/objbase.h: Likewise.
12380         * include/objidl.h: Likewise.
12381         * include/ocidl.h: New file.
12382         * include/oleauto.h: Likewise.
12383         * include/wtypes.h: Likewise.
12384         * lib/oleaut32.def: Likewise.
12385
12386         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12387         Thanks to "Jon Leichter" <jon@symas.com>.
12388         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12389         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12390         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12391         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12392         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12393         Dorsselaer" <frans@bia-bv.demon.nl>.
12394         * include/httpext.h: New file. Thanks to Jan Nijtmans
12395         <j.nijtmans@chello.nl>.
12396         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12397         redefinition of LPCWAVEFORMATEX in DirectX headers.
12398         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12399         <krzych00@priv7.onet.pl>.
12400         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12401         * include/windef.h (HRESULT): Guard definition to avoid
12402         redefinition in DirectX headers.
12403         * include/winnt.h: Add target macros from windows.h.
12404         * include/windows.h: Update synch comment for target macros.
12405         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12406         (_ANONYMOUS_UNION): Likewise.
12407         * include/wingdi.h (AbortPrinter): Move from here ...
12408         * include/winspool.h (AbortPrinter): to here and fix linkage.
12409         (MONITOR_INFO_2{A,W}): Define.
12410         * include/winsock.h (htons): Fix argument.
12411         (htonl): Likewise.
12412         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12413         (GROUP): Define.
12414         (GUID): Define conditionally.
12415         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12416         (WSASocket*): Declare.
12417         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12418
12419         * lib/dsetup.def: Remove leading underscore.
12420         * lib/dsound.def: Likewise.
12421         * lib/ws2_32.def: Likewise.
12422
12423 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12424
12425         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12426         handles.
12427
12428         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12429         * lib/dinput.c: Include windows.h for GCC.
12430         * lib/dxguid.c: Likewise.
12431         (INITGUID): Define macro.
12432
12433         * include/objidl.h (ISequentialStream): Define interface.
12434         (IStream): Derive from ISequentialStream.
12435
12436         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12437         Clone}): Mark as PURE.
12438         (IDataObject::EnumDAdvise): Likewise.
12439         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12440         (IViewObject::Unfreeze): Likewise.
12441         (IViewObject2::Unfreeze): Likewise.
12442
12443         * include/objidl.h: Add various IID_ declarations.
12444         * include/olectl.h: Likewise.
12445         * include/oleidl.h: Likewise.
12446
12447 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12448
12449         * Snapshot 1999-12-21.
12450
12451         * include/winbase.h (CancelIO): Rename to CancelIo.
12452         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12453         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12454
12455         * Merge with winsup-19991218.
12456         * include/winnt.h: Add defines for W2K ACL control flags.
12457
12458         * Merge with Anders Norlander's 19991130 snapshot.
12459
12460         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12461         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12462
12463         Patch from Harold Weissfield
12464         * include/shellapi.h: Added some ABN_* defines.
12465
12466         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12467         * lib/comctl32.def (_TrackMouseEvent): Import.
12468         * include/winuser.h: Misc. fixes from Sang Cho
12469         <sangcho@alpha94.chongju.ac.kr>.
12470         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12471         value of _WIN32_WINNT.
12472         * include/winuser.h: Reorganize SM_* defines in numerical order.
12473
12474 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12475
12476         * include/windef.h: Make RECTL a distinct type from RECT.
12477         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12478         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12479         (COMPAREITEMSTRUCT): Fix fields.
12480         (SERIALKEYSA): Likewise.
12481         (SERIALKEYSW): Likewise..
12482         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12483         (WIN32_FIND_DATAA): Likewise.
12484         (WIN32_FIND_DATAW): Likewise.
12485         * include/commdlg.h (SNDMSG): Define.
12486         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12487         (SO_CONNECT_TIME): Likewise.
12488         (AcceptEx): Declare.
12489         (GetAcceptExSockaddrs): Likewise.
12490         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12491         * include/winspool.h: Add RC_INVOKED guard.
12492         * lib/wsock32.def (AcceptEx@32): Export.
12493         (GetAcceptExSockaddrs@32): Likewise.
12494
12495 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12496
12497         * Snapshot 1999-11-18.
12498
12499         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12500         Octopod C++ IDE (and MSVC compatibility).
12501         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12502         * include/shellapi.h (ShellAbout*): Fix typo.
12503         * wingdi.h (FW_ULTRABOLD): Likewise.
12504         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12505         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12506         Add packing directives for various structures. All structure
12507         sizes now conform to MSVC.
12508
12509 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12510
12511         Released 1999-11-07.
12512
12513 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12514
12515         * include/winsock2.h: New file. Mostly a stub for now.
12516         * include/winbase.h (DllMain): Delete prototype.
12517         * include/commctrl.h (Header_SetItem): Fix macro.
12518         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12519         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12520         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12521
12522         Merge in changes from wxWindows.
12523         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12524         * include/oaidl.h (DISPID_*): Add macros.
12525         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12526         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12527         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12528         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12529
12530         Merge in changes from Octopod C++ IDE group.
12531         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12532         (Header_InsertItem): Fix macro.
12533         * include/oaidl.h (IID_IDispatch): Declare.
12534         (IID_ISupportErrorInfo): Likewise.
12535         (IDispatch): Rename Invoked to Invoke.
12536         * include/objidl.h (IPersist): Fix GetClassID.
12537         * include/oleauto.h (VectorFromBstr): Declare.
12538         (BstrFromVector): Likewise.
12539         * include/olectl.h (OLEMISC_*): Update.
12540         * include/olectlid.h (IID_IDispatch): Declare.
12541         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12542         (IOleInPlaceFrame): Fix.
12543         (ISupportErrorInfo): Define.
12544         (IErrorInfo): Define.
12545         * include/winuser.h (SIF_TRACKPOS): Define.
12546
12547 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12548
12549         Fix Merge errors:
12550         * include/winnt.h (PSID): Uncomment definition.
12551         (PISID): Rename from PSID.
12552         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12553         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12554
12555         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12556         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12557         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12558         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12559         include/shellapi.h, include/winbase.h, include/wingdi.h,
12560         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12561
12562 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12563
12564         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12565         Marius Kjeldahl <kjeldahl@hotmail.com>.
12566
12567 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12568
12569         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12570         (ERROR_SEVERITY_*): Likewise.
12571
12572 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12573
12574         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12575         (DllMain): Fix prototype.
12576
12577 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12578
12579         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12580         (cderr.h): Don't include.
12581         * include/winuser.h: Fix macro definitions.
12582
12583 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12584
12585         Merge with winsup 1999-07-29:
12586         * include/wincon.h (MOUSE_WHEELED): Define.
12587         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12588         (SECURITY_DESCRIPTOR): Add struct type.
12589         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12590         is equal to PVOID in the Platform SDK! So don't depend on accessing
12591         members through ->.
12592
12593 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12594
12595         * lib/Makefile.in (install-headers): Don't @ commands.
12596         (install-libraries): Ditto.
12597
12598 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12599
12600         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12601
12602 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12603
12604         Patch from Mumit Khan:
12605         * include/windows.h: Fix typo in winsock.h include guard and add
12606         _UWIN to the list.
12607         * include/winnt.h (__int64): Undefine first.
12608         (struct _SID): Declare.
12609
12610 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12611
12612         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12613
12614 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12615
12616         Patch from Mumit Khan:
12617         * Makefile.in: Do the right thing when cross-compiling.
12618         * include/windef.h: Don't define _export and __export if already
12619         defined.
12620
12621 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12622
12623         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12624         (DECLARE_INTERFACE_): Ditto.
12625
12626 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12627
12628         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12629
12630         Reported by Brad Porter
12631         * include/wingdi.h (FW_ULTRALIGHT): Add.
12632         (FW_DEMIBOLD): Add.
12633         (FW_ULTRABOLD): Add.
12634         (FW_BLACK): Add.
12635         (JOHAB_CHARSET): Add.
12636         (VIETNAMESE_CHARSET): Add.
12637
12638
12639 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12640
12641         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12642         * lib/Makefile.in (Makefile): Regenerate.
12643         * include/pshpack[1248].h: New files, if a program would use any of
12644         them.
12645         * include/poppack.h: Ditto.
12646         * include/windef.h (_WIN32_WINNT): Define
12647         * include/windows.h: Remove DUMMYUNIONNAME[45].
12648         * include/windows.h: Correctly define _M_IX86 to reflect the target
12649         processor.
12650         * include/windows.h: Add preliminary support for other architectures.
12651         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12652         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12653         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12654         issue with LARGE_INTEGER.
12655         (ANSI_NULL): Define.
12656         (PSZ): Define.
12657         (ACL_REVISION[1234]): Define.
12658         (MIN/MAX_ACL_REVISION): Define.
12659         (PTCHAR): Define.
12660         (LANG_USER_DEFAULT): Define.
12661         (LANG_SYSTEM_DEFAULT): Define.
12662         (LOCALE_NEUTRAL): Define.
12663         (SORTVERSIONFROMLCID): Define.
12664         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12665         (UNREFERENCED_LOCAL_VARIABLE): Define.
12666         (DBG_UNREFERENCED_PARAMETER): Define.
12667         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12668         * lib/mswsock.def: New file. Imports for mswsock.dll.
12669         * include/custcntl.h: New file. Necessary to compile some SDK
12670         samples.
12671         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12672         (WM_MOUSEWHEEL): Define.
12673         (WHEEL_DELTA): Define.
12674         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12675         (WM_NEXTMENU): Define.
12676         (CharNextA): Fix prototype.
12677         (CharNextW): Ditto.
12678
12679 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12680
12681         * include/winsock.h: Enclose in extern "C" if C++, huh?
12682         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12683
12684 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12685
12686         * include/windef.h (NULL): Define only ifndef
12687         (TRUE): Ditto, was previously only defined ifndef FALSE
12688         (PASCAL): Define as _pascal
12689         (__pascal): Define
12690         (WINAPIV): Define
12691         (min,max): Define only ifndef NOMINMAX
12692
12693 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12694
12695         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12696         You must define _WIN32_IE if you want support for it.
12697         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12698
12699 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12700
12701         * include/wincon.h: Add some ButtonState flags and EventFlags.
12702
12703 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12704
12705         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12706         interface define causes mayhem.
12707         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12708         defined.
12709         * include/windows.h: Undefine BOOL if __OBJC__ defined
12710
12711 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12712
12713         * include/winnls.h: Define additional code pages.
12714
12715 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12716
12717         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12718         order, corrected.
12719         (RtlZeroMemory): Use RtlFillMemory
12720
12721 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12722
12723         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12724         to get the correct size when used in some structs.
12725         (ULARGE_INTEGER): Ditto.
12726         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12727         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12728
12729 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12730
12731         * include/wininet.h: Enclose in extern "C" if c++
12732         (INTERNET_BUFFERSA/W): Define struct
12733         * include/wininet.h: Add some HSR_* defines
12734
12735 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12736
12737         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12738         * include/winnt.h (UNALIGNED): Define
12739         * include/windef.h (DECLSPEC_NORETURN): Define
12740
12741         * include/wininet.h (INTERNET_MAX_NAME): Remove
12742         (INTERNET_MAX_SCHEME_LENGTH): Define
12743         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12744         * include/wininet.def: Completely redone, it was losing badly.
12745
12746 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12747
12748         * lib/dplayx.def: Remove '_' prefixes
12749         * lib/shell32.def: Remove imports for IID_ContextMenu
12750
12751 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12752
12753         * Makefile.in (dist): Support dist target
12754         * lib/Makefile.in (dist): Likewise
12755         * lib/Makefile.in (uninstall-headers): Fix command
12756         * Makefile.in (bindist): Target to build a prebuilt dist
12757
12758         * lib/ws2_32.def: Winsock2 implib
12759
12760         * include/largeint.h: New header
12761         * include/largeint.c: Large integer support library
12762         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12763         (EXTRA_OBJS): Add largeint.o
12764
12765         * include/Makefile: Remove
12766         * lib/Makefile: Remove
12767         * Makefile: Remove
12768         * configure.in: New autoconf script
12769         * configure: generated configure script
12770         * Makefile.in: autoconf makefile template
12771         * lib/Makefile.in: Ditto
12772         * include/test.c: mv to lib/test.c
12773         * include/res.rc: mv to lib/res.rc
12774         * include/TODO: mv to .
12775         * include/Notes: mv to ./NOTES
12776
12777 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12778
12779         * include/zmouse.h (WHEEL_DELTA): Define
12780
12781 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12782
12783         * include/ddeml.h (HSZPAIR): Declare.
12784         * include/zmouse.h: New file.
12785
12786 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12787
12788         * lib/d3dim.def: New implib
12789         * lib/d3drm.def: Ditto
12790         * lib/d3dxof.def: Ditto
12791         * lib/ddraw.def: Ditto
12792         * lib/dinput.def: Ditto
12793         * lib/dplayx.def: Ditto
12794         * lib/dsetup.def: Ditto
12795         * lib/dsound.def: Ditto
12796         * lib/dinput.c: Guid library for DirectInput
12797         * lib/dxguid.c: Guid library for DirectX
12798
12799 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12800
12801         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12802         by Ron Aaron).
12803         * include/windowsx.h (GET_Y_LPARAM): Also missing
12804         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12805         by Mumit Khan).
12806
12807 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12808
12809         * include/scrnsave.h: New header file for screen saver library
12810         * lib/scrnsave.c: New file: screen saver library
12811
12812 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12813
12814         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12815         works well in when UNICODE is defined
12816
12817 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12818
12819         * include/winuser.h(STYLESTRUCT): New struct
12820         * include/wingdi.h:(GOBJENUMPROC): This function type should
12821         return void.
12822
12823 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12824
12825         * include/basetyps.h (LPGUID): New typedef
12826         * lib/glut.def: Import library defintions for glut.dll
12827         * lib/glu32.def: Ditto for glut32.dll
12828         * include/winnt.h: Fixed handling of wchar_t typedef
12829         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12830         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12831
12832 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12833
12834         * include/winbase.h(AbnormalTermination): Define as FALSE
12835         * include/commctrl.h: Support for new progress bar messages/styles
12836
12837 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
12838
12839         * include/commdlg.h(PageSetupDlg): New define
12840         * include/richedit.h: Missing SCF_* defines
12841         * include/winnt.h: Lots o' defines
12842         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
12843
12844 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
12845
12846         * include/commdlg.h: Removed pack pragma
12847         * lib/comctl32.def(InitCommonControlsEx@4): Added import
12848
12849 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
12850
12851         * Makefile: Set version to 0.1.5
12852         * lib/Makefile (clean): Fix typo
12853
12854         * include/commctrl.h: Removed pack pragma
12855         * include/cpl.h: Likewise
12856         * include/dbt.h: Likewise
12857         * include/dde.h: Likewise
12858         * include/nddeapi.h: Likewise
12859         * include/shellapi.h: Likewise
12860         * include/wincrypt.h: Likewise
12861         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
12862
12863         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
12864         (servent): Likewise
12865         (protoent): Likewise
12866
12867         * include/windows.h: Prevent inclusion of winsock.h if we are
12868         using or compiling cygwin. Define Win32_Winsock to force inclusion.
12869
12870 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
12871
12872         * include/winbase.h (CREATE_FORCEDOS): New define
12873
12874 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
12875
12876         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
12877         (COORD): Likewise
12878         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
12879         * include/windows.h: Added DUMMYUNIONNAME4 and 5
12880         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
12881         (PLUID_AND_ATTRIBUTES_ARRAY): New type
12882
12883         * include/ddeml.h: Removed unnecessary `#pragma pack'
12884         * include/imm.h: Likewise
12885         * include/nddeapi.h: Likewise
12886         * include/nspapi.h: Likewise
12887         * include/regstr.h: Likewise
12888         * include/wincon.h: Likewise
12889         * include/windef.h: Likewise
12890         * include/winioctl.h: Likewise
12891         * include/winnls.h: Likewise
12892         * include/winsvc.h: Likewise
12893         * include/winuser.h: Likewise
12894         * include/winver.h: Likewise
12895         * include/wtypes.h: Likewise
12896
12897 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
12898
12899         * Makefile (VERSION): Set to 0.1.4
12900         * include/basetyps.h: Check for NOCOMOBJECT
12901         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
12902         on comobject attribute.
12903         * lib/kernel32.def: Added a few functions
12904         * include/windef.h (DWORD): Changed back to unsigned long
12905
12906         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
12907         winresrc.h in turn includes the necessary headers. This makes things
12908         much simpler, no need to protect blocks of code in headers that
12909         should not be seen by the resource compiler.
12910
12911 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
12912
12913         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
12914         * include/wincon.h: Added console event type flags
12915         * include/winnt.h (FILE_SHARE_DELETE): Added
12916           (SECURITY_DESCRIPTOR): typedef as DWORD
12917
12918         * include/winuser.h (WM_PENWINFIRST): Fixed typo
12919         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
12920         define u_* types only if _SYS_TYPES_H is not defined.
12921
12922 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
12923
12924         * COPYING.LIB: Deleted
12925         * README: Updated to reflect license changes
12926         * include/shlobj.h: Remove extra comma on some enums
12927         * include/windef.h: Changed DWORD typedef from unsigned long to
12928         unsigned int in order to avoid warnings on bit fields that
12929         use DWORD.
12930         * include/Makefile (test): Compile with all warnings
12931         * include/unknwn.h: Include objfwd.h
12932         * include/winsock.h: Added missing copyright notices.
12933
12934 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
12935
12936         * lib/winmm.def: Corrected LIBRARY statement
12937         * include/mmsystem.h: Define mmioSeek codes if not already defined
12938         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
12939         (CreateStatusWindowW): Likewise
12940
12941         * include/winresrc.h: Include only files necessary instead of windows.h
12942         * include/dde.h: Allow inclusion in resource scripts.
12943         * include/winnt.h: Likewise
12944         * include/commctrl.h: Likewise
12945         * include/prsht.h: Likewise
12946         * README: Updated
12947
12948 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
12949
12950         * include/sqltypes.h (SQLHANDLE): Added this type
12951         (SQLHDESC): Likewise
12952         * include/sql.h (SQLFreeHandle): Added this prototype
12953         (SQLAllocHandle): Likewise
12954
12955 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
12956
12957         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
12958         conflicts with cygwin headers.
12959
12960 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
12961
12962         * Makefile: Changed VERSION to 0.1.3
12963         * Makefile (dist-lib): New target to make import library only
12964         distribution
12965         * Makefile (dist-hdr): New target to make headers only distribution
12966         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
12967         building one single distribution file.
12968         * dist.mak: Deleted
12969
12970         * include/lm.h: New file
12971         * include/lmcons.h: New file
12972         * include/lmalert.h: New file
12973         * include/lmaudit.h: New file
12974         * include/lmconfig.h: New file
12975         * include/lmapibuf.h: New file
12976         * include/lmaccess.h: New file
12977         * include/lmchdev.h: New file
12978         * include/lmremutl.h: New file
12979         * include/lmrepl.h: New file
12980         * include/lmerrlog.h: New file
12981         * include/lmat.h: New file
12982         * include/lmuse.h: New file
12983         * include/lmuseflg.h: New file
12984         * include/lmserver.h: New file
12985         * include/lmerr.h: New file
12986         * include/lmsname.h: New file
12987         * include/lmstats.h: New file
12988         * include/lmsvc.h: New file
12989         * include/lmwksta.h: New file
12990         * include/lmbrowsr.h: New file
12991
12992 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
12993
12994         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
12995         * include/unknwn.h: Added extern declaration for IID_IClassFactory
12996
12997         * include/initguid.h: New file
12998
12999         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13000         int not supported
13001
13002         * include/winnt.h: Added USN
13003         * include/winnt.h: Changed handling of 64 bit int support
13004
13005         * include/windows.h: Added support for BC,LCC and MSVC
13006
13007         * include/windows.h: Changed handling machine architecture defines
13008
13009         * include/olectl.h: New file
13010
13011 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13012
13013         * include/oleidl.h: Added IViewObject and IViewObject2
13014
13015         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13016         IStorage::MoveElement
13017
13018         * include/oledlg.h: New file
13019
13020         * include/winresrc.h: New file
13021
13022         * include/wingdi.h: Added LPDOCINFO
13023
13024         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13025         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13026         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13027         TabCtrl_SetImageList and TabCtrl_GetItemCount
13028         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13029
13030         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13031
13032         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13033         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13034
13035         * include/commdlg.h: Added LPDEVNAMES
13036
13037         * include/windows.h: Include excpt.h
13038
13039         * include/excpt.h: New file. This file just contains some
13040         stubs for SEH that do nothing.
13041
13042         * include/commctrl.h: Added general WM_NOTIFY codes
13043
13044         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13045         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13046         not be in the headers.
13047         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13048         * include/winuser.h: Added old WM_SIZE parameter names so
13049         wxWindows compiles.
13050         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13051         * include/winuser.h: Added LPDLGITEMTEMPLATE
13052         * include/winuser.h: HTCAPTION was missing value
13053         * include/winuser.h: Added WM_ACTIVE flags
13054
13055         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13056         _fxx defines for memmove, memset and memcmp
13057
13058         * include/windef.h: Changed _export and __export to empty defines
13059
13060         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13061         String parameters were not const and ExtractAssociatedIcon takes
13062         a WORD pointer not DWORD pointer as last parameter.
13063
13064         * Makefile: Changed VERSION to 0.1.2
13065
13066         * include/ole2ver.h: New file
13067
13068         * Makefile: Removed all dependencies on GLUT
13069
13070         * include/GL/glut.h: Removed file because of decision to remove
13071         files that are not part of the library.
13072         * lib/glut.def: Likewise
13073         * lib/glut32.def: Likewise
13074
13075         * include/windows.h: Include winperf.h
13076
13077         * include/winperf.h: New file
13078
13079         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13080
13081         * include/winnls.h: Added calendar types
13082         * include/winnls.h: Added country codes
13083
13084 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13085
13086         * include/windef.h: Added PROC and NEARPROC
13087
13088         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13089         * include/wingdi.h: Added OpenGL types and prototypes
13090         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13091         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13092         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13093         * include/wingdi.h: Added truetype character outline types
13094         * include/wingdi.h: Added DEVMODE initialization flags
13095         * include/wingdi.h: Added panose codes
13096         * include/wingdi.h: Added missing character sets
13097         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13098         NONANTIALIASED_QUALITY
13099         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13100         * include/wingdi.h: Added pointer types for EXTLOGPEN
13101         * include/wingdi.h: Added PATTERN type
13102         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13103         * include/wingdi.h: Added new text metric flags
13104         * include/wingdi.h: Added pitch and family flags
13105         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13106         * include/wingdi.h: Added METAHEADER
13107         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13108         * include/wingdi.h: Added TA_MASK
13109         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13110         * include/wingdi.h: Added error codes
13111
13112         * include/winuser.h: Added missing winhelp structures
13113         * include/winuser.h: Added dialog flags/styles/messages
13114         * include/winuser.h: Added EM_SETMARGIN codes
13115         * include/winuser.h: Made it possiblie to use IDI_XX values
13116         in resource files.
13117         * include/winuser.h: Added missing LoadImage load flags
13118         * include/winuser.h: Added missing message box flags
13119         * include/winuser.h: Added ScrollWindow codes
13120         * include/winuser.h: Added DT_WORD_ELLIPSIS
13121         * include/winuser.h: Added drag and drop support
13122         * include/winuser.h: Added WM_MENUCHAR return codes
13123         * include/winuser.h: Added DLGWINDOWEXTRA
13124         * include/winuser.h: Added missing SetWindowPos flags.
13125         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13126         * include/winuser.h: Added IDHOT_xx defines
13127         * include/winuser.h: Added MOD_WIN
13128         * include/winuser.h: Added missing defines and structs for owner draw
13129         controls.
13130         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13131         WPF_SETMINPOSITION
13132         * include/winuser.h: Added DrawAnimatedRects flags
13133         * include/winuser.h: Added WM_PRINT codes
13134         * include/winuser.h: Added CS_IME class style
13135         * include/winuser.h: Added WM_SIZE codes
13136         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13137         * include/winuser.h: Added WM_NCHITTEST return codes
13138         * include/winuser.h: Added WM_SIZING parameters
13139         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13140         * include/winuser.h: Added menu loop codes.
13141         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13142         NF_REQUERY
13143         * include/winuser.h: Added WM_POWER flags
13144         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13145         * include/winuser.h: Added missing message filter codes
13146         * include/winuser.h: Added WM_KEYXX message flags
13147         * include/winuser.h: Added WM_SHOWMESSAGE flags
13148         * include/winuser.h: Added old ShowWindow commands
13149         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13150         structures.
13151
13152         * include/mciavi.h: New file for the MCI AVI driver that for some
13153         reason is not in mmsystem.h.
13154
13155         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13156         * include/winbase.h: Added SECURITY_xx for CreateFile
13157         * include/winbase.h: Added RTS and DTS control values
13158         * include/winbase.h: Fixed SYSTEM_INFO structure
13159         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13160         * include/winbase.h: Added FILE_TYPE_REMOTE
13161         * include/winbase.h: Added modem status flags
13162         * include/winbase.h: Added HINSTANCE_ERROR
13163         * include/winbase.h: Added DefineDosDevice defines
13164         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13165         * include/winbase.h: Added STARTF_XX flags
13166         * include/winbase.h: Fixed typo on _lcreat prototype.
13167         * include/winbase.h: Moved DBG_XX to winnt.h
13168         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13169         winnt.h
13170
13171         * include/unknwn.h: Added extern declaration of IID_IUnknown
13172
13173         * include/windowsx.h: Added hmemcpy.
13174
13175         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13176         * include/winnt.h: Added PACCESS_TOKEN
13177         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13178         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13179         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13180         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13181         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13182         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13183
13184         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13185         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13186         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13187
13188         * include/winsvc.h: Removed conflicting defines which were supposed
13189         to be in winnt.h
13190
13191         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13192         and SERVICE_ERROR_TYPE.
13193
13194         * include/winnt.h: Added SERVICE_XX defines.
13195         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13196         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13197
13198         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13199         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13200         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13201         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13202
13203 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13204
13205         * include/winbase.h: Corrected prototype for CreateProcessA
13206
13207         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13208         driver extensions.
13209
13210         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13211         be LPSHELLFOLDER* not LPSHELLFOLDER.
13212
13213         * include/windows.h: Include commdlg.h
13214
13215         * include/winuser.h: Added MDICREATESTRUCT
13216
13217         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13218         CB_ERRSPACE, and CB_OKAY
13219
13220         * include/wingdi.h: Added LPBITMAPINFOHEADER
13221
13222         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13223         are meaningless.
13224         * include/rpcdce2.h: Likewise.
13225
13226         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13227
13228         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13229         * include/olectlid.h: Likewise
13230         * include/shlguid.h: Likewise
13231
13232         * include/coguid.h: Delete file since it was for 16 bit windows only.
13233
13234         * lib/*.def: Appended .dll to library name where needed.
13235
13236         * include/windef.h: Define _stdcall and __stdcall only if not
13237         previously defined instead of undefining first.
13238
13239         * include/dlgs.h: Put RC_INVOKED around structure defs
13240
13241         * include/intshcut.h: New file
13242         * include/isguids.h: New file
13243
13244         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13245
13246 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13247
13248         * include/winnt.h: Added check if _T is defined before defining it
13249
13250         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13251
13252         * include/dlgs.h: New file
13253
13254         * include/winbase.h: Removed DllEntryPoint define
13255
13256         * include/winbase.h: Added SetupComm prototype
13257
13258         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13259         supported anyway.
13260
13261         * include/basetyps.h: Removed use of COMOBJECT define, instead
13262         DECLARE_INTERFACE directly uses comobject attribute when GCC
13263         is used.
13264
13265         * include/wtypes.h: STGC enum was missing typedef
13266
13267         * include/objidl.h: ADVC enum was missing typedef
13268
13269         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13270         they are nested within the VOID definition.
13271
13272         * include/winbase.h: Added stream ids and attributes
13273
13274         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13275         to an ANYSIZE_ARRAY array.
13276
13277 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13278
13279         * include/windef.h: defined _declspec as __declspec since
13280         some programs (like VWCL) use _declspec instead of __declspec
13281
13282         * include/winnt.h: added COMPRESS_FORMAT defines
13283
13284         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13285
13286         * include/winnt.h: added HEAP_XXXX defines
13287
13288         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13289
13290         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13291         specification.
13292
13293         * include/winnt.h: added NTAPI define
13294
13295 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13296
13297         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13298         instead of CHAR or WCHAR.
13299
13300         * include/winnt.h: added _T define
13301
13302         * include/winnt.h: added test for _TCHAR_DEFINED
13303
13304         * include/winnt.h: included string.h for memory macros
13305
13306         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13307
13308         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13309
13310         * include/prsht.h: added PropSheet_XXX macros
13311
13312
13313 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13314
13315         * include/winspool.h: Changed DeletePrinterProcessor and
13316         DeletePrinterProvidor to DeletePrintXX.
13317
13318         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13319         LOGCOLORSPACEW.
13320
13321         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13322         variants
13323
13324         * include/wingdi.h: Likewise for GetLogColorSpace
13325
13326         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13327
13328         * include/richedit.h: Added missing defines and structures
13329
13330         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13331
13332         * include/winuser.h: Added HWND_DESKTOP
13333
13334 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13335
13336         * Makefile: Include ChangeLog when building source
13337         distribution (srcdist)
13338
13339         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13340         are always defined as STDAPI and STDAPI_
13341
13342         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13343         are always defined as STDAPI and STDAPI_
13344
13345         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13346
13347         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13348
13349         * ChangeLog started