OSDN Git Service

Update registry management API, per issue [#2262].
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
2
3         Update registry management API, per issue [#2262].
4
5         * include/winreg.h: Merge changes from 4.1-dev branch.
6         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
7         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
8         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
9         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
10         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
11         (RRF_ZEROONFAILURE): New manifest constants; define them.
12         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
13         (RegOverridePredefKey): Add previously omitted function prototypes.
14         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
15         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
16         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
17         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
18         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
19         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
20         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
21         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
22         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
23         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
24         (RegDeleteKeyValueA, RegDeleteKeyValueW)
25         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
26         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
27         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
28         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
29         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
30         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
31         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
32         (RegSetKeyValue): Define, mapping each to its respective function...
33         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
34         [defined UNICODE] (__AW): ...for the UTF-16LE case.
35
36         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
37         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
38         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
39         (RegSaveKeyExW@16): Remove them; relocate them to...
40         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
41         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
42         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
43         (RegSaveKeyExW@16): ...their correct location, here.
44         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
45         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
46         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
47         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
48         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
49         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
50         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
51
52 2017-12-16  Keith Marshall  <keith@users.osdn.me>
53
54         Provide default definition for _WIN32_IE feature test macro.
55
56         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
57         (_WIN32_IE_IE50): ...this default value.
58
59         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
60         a conflicting proposal for the default value.
61
62 2017-12-06  Keith Marshall  <keith@users.osdn.me>
63
64         Prepare and publish MinGW.org WSL-5.0.2 release.
65
66         * All files (wsl-5.0.2-release): Tag assigned.
67
68 2017-11-28  Keith Marshall  <keith@users.osdn.me>
69
70         Make <wsnetbs.h> header effectively self-contained.
71
72         * include/wsnetbs.h: Assert copyright; tidy layout; include
73         "_winsock.h", so making this header effectively self-contained, and
74         thus relieving the user of a responsibility for ensuring that some
75         other appropriate WinSock header has been included first.
76
77 2017-11-28  Keith Marshall  <keith@users.osdn.me>
78
79         Factor <winsock.h> duplicate content out of <winsock2.h>
80
81         * include/winsock2.h: Remove all declarations and definitions which
82         are identically specified in <winsock.h>, but keep them in scope by...
83         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
84         declarations and definitions therefrom, which introduce conflicts.
85         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
86         definitions and declarations.
87
88         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
89         WinSock v1.1 and WinSock v2, the latter of which will override when
90         correctly included by <winsock2.h>
91
92 2017-11-24  Keith Marshall  <keith@users.osdn.me>
93
94         Make <winsock.h> and <winsock2.h> duplicate code congruent.
95
96         * include/winsock.h (SOMAXCONN): Move definition into...
97         [!__INSIDE_MSYS__]: ...this guarded scope.
98
99         * include/winsock2.h: Rearrange as necessary.
100         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
101         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
102         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
103         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
104         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
105         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
106         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
107         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
108         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
109         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
110         [!defined __INSIDE_MSYS__]: ...as this, throughout.
111         (gethostname): Update function prototype, adding...
112         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
113
114         * include/ws2spi.h: Tidy layout; assert copyright.
115         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
116         (LPFD_SET): Delete all type references; use...
117         (fd_set *): ...this instead.
118
119 2017-11-14  Keith Marshall  <keith@users.osdn.me>
120
121         Establish default selection for WinSock API declaration.
122
123         * include/windows.h include/nspapi.h: Include...
124         * include/_winsock.h: ...this new system private header; it selects...
125         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
126         provided by conditional inclusion of <winsock2.h>, otherwise...
127         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
128         as provided by inclusion of <winsock.h>
129
130         * tests/headers.at <_winsock.h>: Add reference.
131
132 2017-11-14  Keith Marshall  <keith@users.osdn.me>
133
134         Update gethostname() declaration; drop Cygwin specificity.
135
136         * include/winsock.h (gethostname): Declare unconditionally; add...
137         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
138         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
139         [!defined __INSIDE_MSYS__]: ...as this, throughout.
140
141 2017-11-09  Keith Marshall  <keith@users.osdn.me>
142
143         Normalize fd_set event macros for <winsock2.h> compatibility.
144
145         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
146         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
147         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
148         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
149         count to a bit flag with value of 1, in each case respectively.
150         [_WINSOCK2_H]: Extend shift count enumeration, to include...
151         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
152         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
153         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
154         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
155         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
156         of 1 greater than the offset of the last defined flag; hence...
157         (FD_ALL_EVENTS): ...derive this mask for all event flags.
158
159 2017-11-09  Keith Marshall  <keith@users.osdn.me>
160
161         Filter potential WinSock v2 conflicts out of <winsock.h>
162
163         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
164         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
165         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
166         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
167         not define any of these; they are not compatible with WinSock v2.
168         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
169         appropiately in <winsock2.h>
170
171 2017-11-09  Keith Marshall  <keith@users.osdn.me>
172
173         Filter out <winsock.h> typedef anomalies.
174
175         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
176         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
177         them as type definitions, but warn of potential conflict with...
178         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
179         function; declare its prototype.
180
181 2017-11-08  Keith Marshall  <keith@users.osdn.me>
182
183         Overhaul WinSock fd_set content management macros.
184
185         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
186         original implementations of each of these macros, redirecting to...
187         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
188         inline functions, respectively; these are more robust, and correct a
189         defect in the original FD_SET macro implementation, whereby duplicate
190         descriptors could be added to an fd_set array, but would not then be
191         removed by the corresponding FD_CLR macro.
192
193         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
194         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
195         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
196         function, which is implemented in each of these libraries.
197
198 2017-11-07  Keith Marshall  <keith@users.osdn.me>
199
200         Identify features which have been deprecated in WinSock v2.
201
202         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
203         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
204         (__MINGW_ATTRIB_DEPRECATED): ...to this.
205
206         * include/winsock.h include/winsock2.h: Qualify...
207         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
208         (WSACancelBlockingCall): ...each of these function prototypes, with...
209         (__WINSOCK2_DEPRECATED): ...this attribute.
210
211 2017-11-07  Keith Marshall  <keith@users.osdn.me>
212
213         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
214
215         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
216         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
217         with preferred convention for system feature test macros.
218
219 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
220
221         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
222
223         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
224         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
225         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
226         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
227         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
228         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
229         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
230         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
231         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
232         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
233         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
234
235         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
236         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
237
238 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
239
240         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
241
242         * include/wtypes.h: Tidy layout; assert copyright.
243         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
244         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
245         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
246         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
247         (__BLOB_T_DEFINED): ...this; do not define...
248         (_WTYPES_H): ...this external guard.
249
250         * include/nspapi.h: Tidy layout; assert copyright.
251         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
252         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
253         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
254         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
255         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
256         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
257         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
258         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
259         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
260         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
261         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
262         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
263         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
264         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
265         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
266         (__AW_ALIAS__): ...this, for definition of each of...
267         (SERVICE_INFO, LPSERVICE_INFO): ...these.
268
269         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
270         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
271         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
272         include nspapi.h selectively, to acquire them.
273
274 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
275
276         Factor <winerror.h> duplicate content out of winsock headers.
277
278         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
279         conditional block, and all of its content; selectively include...
280         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
281         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
282         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
283         define them, to segregate WSA error messages applicable to WinSock v2
284         only, from those applicable to both WinSock v1.1 and WinSock v2.
285         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
286         codes, except WSABASEERR, relative to WSABASEERR itself.
287
288 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
289
290         Factor <sys/time.h> duplicate content out of winsock headers.
291
292         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
293         conditional block, and all its content; include <sys/time.h> instead.
294         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
295         processing this header, such that only selected content from other
296         internally referenced headers is exposed.
297
298 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
299
300         Source BSD non-standard type definitions from mingwrt header.
301
302         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
303         conditional block, and its entire type definition content; include...
304         * include/sys/bsdtypes.h: ...this common file instead; it defines...
305         (u_char, u_int, u_long, u_short): ...these non-standard data types.
306
307 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
308
309         Correct misuse of __INSIDE_MSYS__ feature test.
310
311         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
312         omits "defined" operator; it should be expressed consistently as...
313         [! defined __INSIDE_MSYS__]: ...this; correct it.
314
315 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
316
317         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
318
319         * include/winsock.h: Tidy layout; assert copyright.
320         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
321
322         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
323         sections, which are common with <winsock.h>, are laid out congruently.
324         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
325         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
326         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
327         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
328         [UNICODE]: ...alternative typedefs, and function name aliases...
329         [!UNICODE]: ...versus this case.
330
331 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
332
333         Resolve secondary issue arising from MinGW-Bug [#2350]
334
335         * include/winuser.h (GetTitleBarInfo)
336         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
337         it conflicted with current MSDN documentation, so now falls within...
338         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
339
340 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
341
342         Resolve MinGW-Bug [#2350]
343
344         * include/winuser.h (GetTitleBarInfo): Move prototype after...
345         (PTITLEBARINFO): ...this type definition; it is used as a function
346         argument type, so must be defined beforehand.
347
348 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
349
350         Extend testsuite to cover winsock fd_set macro operations.
351
352         * tests/winsock.at: New file; it implements appropriate tests, and
353         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
354         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
355
356         * tests/testsuite.at.in (winsock.at): Integrate it.
357         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
358         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
359         default list of libraries, or resets the list to this initial default.
360         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
361         library specifications, to be used until subsequently reset.
362
363 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
364
365         Prepare and tag for release of MinGW.org WSL-5.0.1
366
367         * All files (wsl-5.0.1-release): Tag assigned.
368
369 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
370
371         Automate testsuite dependency generation.
372
373         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
374         enumerate all such wildcard matches as prerequisites, instead of...
375         (headers.at): ...this sole explicit dependency.
376
377 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
378
379         Make <winnt.h> header effectively self-contained.
380
381         * include/winnt.h (_WINNT_H): Defer definition unless included via...
382         (windef.h): ...this; include it, to enforce inclusion order, then...
383         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
384
385 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
386
387         Consolidate <winuser.h> version specific conditionals.
388
389         * include/winuser.h: Reorganize file content; group manifest constant
390         definitions into one nested collection of conditional blocks, with one
391         block per Windows version evolution; do likewise for type definitions
392         and function prototypes which are always exposed, and separately...
393         [! defined NOGDI]: ...for those which may be suppressed, when GDI
394         support is not required.
395
396 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
397
398         Make <winuser.h> header effectively self-contained.
399
400         * include/winuser.h (stdarg.h): Include it, in addition to...
401         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
402         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
403
404 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
405
406         Consolidate <wingdi.h> version specific conditionals.
407
408         * include/wingdi.h: Reorganize file content; group manifest constant
409         definitions into a single nested collection of conditional blocks, for
410         those definitions which are common to both Win9x and WinNT, with one
411         block per Windows version evolution, sorting alphabetically within
412         each block; do likewise for additional manifest constant definitions
413         which are specific to WinNT, and also for data type definitions and
414         function prototypes.
415
416 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
417
418         Tidy, and make <wingdi.h> header effectively self-contained.
419
420         * include/wingdi.h: Tidy layout; assert copyright.
421         (windef.h): Include it; this achieves self-containment.
422         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
423         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
424         (__AW_ALIAS__): ...this, when defining each of...
425         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
426         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
427         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
428         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
429         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
430         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
431         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
432         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
433         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
434         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
435         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
436         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
437         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
438         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
439         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
440         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
441         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
442         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
443         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
444         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
445         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
446         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
447         (wglUseFontOutlines, GetGlyphIndices): ...these.
448
449 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
450
451         Declare CONDITION_VARIABLE API, per feature request [#2314]
452
453         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
454         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
455         (InitializeConditionVariable, SleepConditionVariableCS)
456         (SleepConditionVariableSRW, WakeAllConditionVariable)
457         (WakeConditionVariable): ...declare prototypes.
458
459 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
460
461         Declare SRWLOCK API, to support feature request [#2314]
462
463         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
464         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
465         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
466         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
467         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
468         (TryAcquireSRWLockShared): Declare additional prototypes.
469
470 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
471
472         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
473
474         * include/winerror.h: Tidy layout; assert copyright.
475
476         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
477         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
478         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
479         both locations; it permitted inconsistency between the two.
480
481 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
482
483         Consolidate <winbase.h> version specific conditionals.
484
485         * include/winbase.h: Reorganize file content; group manifest constant
486         definitions into one nested collection of conditional blocks, with one
487         block per Windows version evolution, sorting alphabetically within each
488         block; do likewise for data type definitions and function prototypes.
489
490 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
491
492         Tidy, and make <winbase.h> header effectively self-contained.
493
494         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
495         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
496         (__AW_EXTENDED__): ...this; subsequently reimplement...
497         (__AW_ALIAS__): ...this, with original name, now encapsulating...
498         (__AW_SUFFIXED__): ...this.
499
500         * include/dbt.h (__AW_ALIAS__): Replace all references with...
501         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
502         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
503         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
504
505         * include/winbase.h: Tidy layout; assert copyright.
506         (stdarg.h, windef.h): Include them, to achieve self-containment.
507         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
508         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
509         [__AW_ALIAS__]: ...this, to correctly specify each of...
510         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
511         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
512         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
513         [__AW_SUFFIXED__]: ...this, to correctly map each of...
514         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
515         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
516         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
517         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
518         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
519         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
520         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
521         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
522         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
523         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
524         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
525         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
526         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
527         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
528         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
529         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
530         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
531         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
532         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
533         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
534         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
535         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
536         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
537         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
538         (GetPrivateProfileInt, GetPrivateProfileSection)
539         (GetPrivateProfileSectionNames, GetPrivateProfileString)
540         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
541         (GetProfileString, GetShortPathName, GetStartupInfo)
542         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
543         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
544         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
545         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
546         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
547         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
548         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
549         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
550         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
551         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
552         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
553         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
554         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
555         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
556         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
557         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
558         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
559         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
560         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
561         (WritePrivateProfileString, WritePrivateProfileStruct)
562         (WriteProfileSection, WriteProfileString): ...these, and add...
563         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
564         (GetFirmwareEnvironmentVariable): ...these previously missing generic
565         function name aliases.
566
567 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
568
569         Refactor mingwrt and w32api common makefile content.
570
571         * Makefile.in (w32api-srcdist-config-files): Rename it...
572         (w32api-srcdist-common-files): ...as this phoney build rule.
573         (shared_include_file): New macro; define it, and include named file.
574         (configure, config.status, Makefile, config.status.missing, _mingw.h)
575         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
576         out; relocate them to new file in common parent directory...
577         * ../Makefile.comm: ...here.
578
579 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
580
581         Correct a copyright notice update omission.
582
583         * configure.ac: Extend copyright date range to include 2017.  Also
584         clean up superfluous trailing whitespace.
585
586 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
587
588         Fix generated header file dependencies.
589
590         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
591         [VERSION.m4]: ...this; package version changes are no longer made...
592         [configure.ac]: ...here; delete associated prerequisite reference.
593         (distclean-local): Delete them.
594
595 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
596
597         Prepare and tag for release of w32api-5.0 package set.
598
599         * All files (wsl-5.0-release): Tag assigned.
600
601 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
602
603         Implement basic test suite infrastructure.
604
605         * tests: New subdirectory; it hosts...
606         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
607         * tests/headers.at: ...these new files; they implement the basic test
608         suite infrastructure, initially comprising header integrity checks.
609
610         * configure.ac (AC_PROG_CXX): Check it.
611         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
612         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
613         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
614         tests/Makefile.
615
616         * Makefile.in (check test tests): New rules; all are synonymous.
617         (check-recursive): New rule; invoked by each of the preceding three.
618         (w32api-srcdist-testsuite-files): New rule; implement and use it...
619         (w32api-srcdist-files): ...here.
620
621 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
622
623         Add missing constant definition, per issue [#2249].
624
625         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
626
627 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
628
629         Avoid unnecessary duplication of configuration files.
630
631         * Makefile.in (vpath install-sh): Define it; it matches...
632         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
633         rule for creating duplicate file reference links in $top_srcdir.
634         (configure): Add '-I ..' option, when running autoconf.
635         (w32api-srcdist-files): Rename it as...
636         (w32api-srcdist-package-files): ...this; remove dependencies on...
637         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
638         (w32api-srcdist-config-files): ...this new distributable files
639         enumeration goal; add it as one new prerequisite of...
640         (w32api-srcdist-files): ...this repurposed goal; also depends on...
641         (w32api-srcdist-package-files): ...this; populate it using...
642         (SRCDIST_ADD): ...this macro; redefine it accordingly.
643
644 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
645
646         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
647
648         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
649         it was previously transcribed incorrectly, as being equivalent to...
650         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
651         (FILE_DEVICE_DISK): ...this.
652
653 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
654
655         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
656
657         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
658         alternative generic symbol mapping definitions, and typedefs, with...
659         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
660         their respective ANSI and UNICODE specific references.
661
662 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
663
664         Deprecate obsolete <winable.h> and <pbt.h> headers.
665
666         * Makefile.in (%.h.in): Generalize vpath definition.
667         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
668         (w32api_generated_headers, replace_headers, macro_name): New macros.
669         (install-w32api-headers): Add dependency on w32api_dist_headers.
670         (%.h): New static pattern rule; it generates generic dependants of...
671         * include/obsolete.h.in: ...this new template for obsolete headers.
672
673         * include/winable.h include/pbt.h: Delete them; they are obsolete;
674         replace them by install-time generated generic stubs.
675
676 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
677
678         Update <winuser.h> and <dbt.h>; fix issue [#2317].
679
680         * include/winuser.h: Tidy layout; add copyright notice.
681         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
682         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
683         selective inclusion of content from other headers; delete when done.
684         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
685         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
686         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
687         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
688         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
689         them selectively from <dbt.h>, where they are properly defined.
690         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
691         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
692         formerly UINT, which doesn't match 64-bit size required for Win64.
693         (SetTimer): Likewise; also declare similar return type.
694         (WINEVENTPROC): Add missing CALLBACK attribute.
695         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
696
697         * include/w32api.h (__AW_ALIAS__): New macro; define it.
698         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
699
700         * include/dbt.h: Tidy layout; add copyright notice.
701         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
702         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
703         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
704         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
705         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
706         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
707         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
708         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
709         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
710         structure typedef names, and their respectively corresponding...
711         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
712         type names.
713
714 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
715
716         Fix a minor ISO-C++11 conformity issue.
717
718         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
719         by ISO-C++11, between concatenated string literal elements.
720         (GetFiberData, NtCurrentTeb): Likewise.
721
722 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
723
724         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
725
726         * include/ddk/winddk.h: Update per issue [#2307] resolution.
727         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
728
729 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
730
731         Prepare and tag all files for release of w32api-3.18.1
732
733         * configure.ac (AC_INIT): Increment patch level to 3.18.1
734
735 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
736
737         Resolve improper macro expansion issue [#2307].
738
739         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
740         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
741         dependent macro WITHIN the expansion of each of these; hence...
742
743         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
744         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
745         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
746         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
747         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
748         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
749         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
750         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
751         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
752         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
753         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
754         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
755         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
756         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
757         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
758         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
759         ...adjust these dependent macro definitions accordingly.
760
761         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
762         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
763         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
764         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
765         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
766         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
767         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
768         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
769         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
770         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
771
772 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
773
774         Update install-sh to match mingw.org/build-aux package.
775
776         * install-sh: Delete it; use version in parent directory instead,
777         recreating local copy, (as symlink, if supported), on demand.
778
779 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
780
781         Eliminate redundant configuration files.
782
783         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
784         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
785
786         * configure.ac (AC_PROG_LN_S): Add configuration check.
787
788 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
789
790         Discard redundant config.guess and config.sub files.
791
792         * config.guess config.sub: Delete them; they are no longer required.
793         * Makefile.in (SRCDIST_ADD): Remove related references.
794
795 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
796
797         Merge recent legacy branch updates to 5.0-active branch.
798
799         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
800         * include/sdkddkver.h include/setupapi.h include/windows.h
801         * include/winnt.h include/winuser.h include/winver.h
802         * include/wtsapi32.h lib/wtsapi32.def: Updated.
803
804 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
805
806         Prepare and tag all files for release of w32api-3.18.
807
808 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
809
810         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
811
812         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
813         references from $(MAKE) command lines; make passes them implicitly.
814
815 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
816
817         Backport MemoryBarrier() implementation from 4.0-dev branch.
818
819         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
820         Earnie's original inline implementation, but declared 'static' to fix
821         issue [#1661]; it is further modified, to avoid the broken pre-Vista
822         fallback identified by issue [#2131], and to remove references to...
823         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
824         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
825         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
826         back to inline assembly code when necessary.
827
828         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
829         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
830         code, for hosts which do not support the SSE2 'mfence' instruction.
831
832 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
833
834         Merge further W32API updates from Cygwin CVS.
835         Incorporated selected changes from 2012-08-01 to 2012-08-04.
836
837         * include/setupapi.h include/winuser.h include/winver.h
838         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
839
840 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
841
842         Update mapping of GCC to MSVC host identification macros.
843
844         * include/windows.h: Assert copyright; tidy layout.
845         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
846         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
847         [!_WINSVC_H]: Do not explicitly test these here; they are properly
848         managed implicitly, by GCC, when including the associated headers.
849
850         * include/winnt.h: Assert copyright; tidy layout.
851         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
852         (__aligned__, __always_inline__, __selectany__): Prefer these...
853         (aligned, always_inline, selectany): ...to these attribute forms.
854         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
855         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
856         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
857         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
858         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
859         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
860         (_M_IX86): ...also removing this, but relocate it to...
861         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
862         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
863         appropriate.
864
865         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
866         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
867
868 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
869
870         Merge W32API updates, from Cygwin CVS, into legacy branch.
871         Incorporate changes since release of w32api-3.17, until 2012-07-06.
872
873         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
874         2012-04-28 commit to Cygwin CVS.
875
876         * include/gdiplus/gdiplustypes.h include/imagehlp.h
877         * include/routprot.h include/shlwapi.h include/userenv.h
878         * include/winbase.h include/wincon.h include/windef.h
879         * include/winerror.h include/wingdi.h include/winnt.h
880         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
881         match Cygwin CVS state, as of 2012-07-06.
882
883         * include/wincrypt.h: Updated to remove duplicate manifest constant
884         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
885         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
886         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
887         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
888         copies of these further duplicated definitions, identified during
889         the merging operation.
890
891 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
892
893         Synchronize package version management with MinGW Runtime.
894
895         * VERSION.m4: New file; link it to keep in sync with identically named
896         file in top level composite package source directory; it defines...
897         (__VERSION__): ...this new composite package version macro.
898
899         * aclocal.m4: Link it, to keep in sync with identically named files in
900         top level composite source and sibling mingwrt sub-package directories.
901         (__VERSION__): New macro; include VERSION.m4 to define it.
902         (__BUG_REPORT_URL__): New macro; define it.
903
904         * configure.ac (AC_INIT): Assign package version and bug report URL...
905         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
906         automatic inclusion of aclocal.m4
907
908         * Makefile.in (configure): Add dependency on VERSION.m4
909
910 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
911
912         Eliminate redundant <parts/winioctl.h> header.
913
914         * include/parts/winioctl.h: Delete it; distribute its content...
915         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
916         ...among these, separating it into discrete sections based on...
917         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
918         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
919         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
920         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
921
922         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
923         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
924
925 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
926
927         Enforce consistent specification of package version.
928
929         * include/w32api.h: Rename as...
930         * include/w32api.h.in: ...this build-time template file.
931         (__W32API_VERSION): Redefine it, in terms of...
932         (%PACKAGE_VERSION_LONG%): ...this substitution template.
933         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
934         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
935         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
936         (%PACKAGE_VERSION_PATCH%): ...these.
937
938         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
939         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
940         mingwrt/include/_mingw.h.in file.
941
942         * Makefile.in (all-w32api-libs): Add dependency on...
943         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
944         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
945         they apply appropriate substitutions to the renamed template files.
946         (install-w32api-headers): Explicitly add w32api.h
947
948 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
949
950         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
951
952         * include/parts/winioctl.h: New file; it provides infrastructure for
953         sharing of common code between DDK headers and primary <winioctl.h>
954         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
955         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
956         macros; they facilitate more consise expression of factored out IOCTL
957         and FSCTL macros; define them.
958
959         * include/ddk/ntddk.h: Assert copyright; tidy layout.
960         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
961         (_DDK_NTDDK_H): ...this; it provides better indication of location.
962         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
963
964         * include/ddk/winddk.h: Assert copyright; tidy layout.
965         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
966         (_DDK_WINDDK_H): ...this; it provides better indication of location.
967         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
968         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
969         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
970         (METHOD_NEITHER): Redefine as enumeration; factor it out.
971         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
972         (FILE_WRITE_ACCESS): Likewise.
973         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
974         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
975         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
976         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
977         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
978         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
979         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
980         (PPARTITION_INFORMATION_MBR): Likewise.
981         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
982         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
983         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
984         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
985         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
986         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
987         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
988         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
989         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
990         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
991         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
992         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
993         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
994         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
995         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
996         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
997         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
998         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
999         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1000         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1001         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1002         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1003         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1004         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1005         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1006         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1007         was defined only when including this enumeration from winioctl.h
1008         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1009         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1010         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1011         include parts/winioctl.h
1012
1013         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1014         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1015         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1016         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1017         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1018         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1019         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1020         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1021         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1022         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1023         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1024         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1025         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1026         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1027         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1028
1029         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1030         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1031         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1032         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1033         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1034         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1035         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1036         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1037         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1038         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1039         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1040         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1041         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1042         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1043         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1044         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1045         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1046         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1047         these macros are now defined in parts/winioctl.h; include it.
1048         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1049         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1050         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1051         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1052         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1053         (VALID_NTFT): Redefine as enumeration; factor it out.
1054         (IsRecognizedPartition, IsContainerPartition): Factor out.
1055         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1056         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1057         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1058         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1059         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1060         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1061         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1062         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1063         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1064         (struct _PARTITION_INFORMATION): Change field data types for...
1065         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1066         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1067         with Windows DDK convention, then factor out struct, together with...
1068         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1069         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1070         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1071         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1072         (struct _GET_LENGTH_INFORMATION)
1073         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1074         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1075         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1076         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1077         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1078         (PFORMAT_EX_PARAMETERS): Factor out.
1079         (struct _REASSIGN_BLOCKS): Change field data types for...
1080         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1081         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1082         convention, then factor out the struct definition, together with...
1083         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1084         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1085         (PSET_PARTITION_INFORMATION): Factor out.
1086         (struct _VERIFY_INFORMATION): Change field data type for...
1087         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1088         factor out the entire struct definition, together with...
1089         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1090         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1091         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1092         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1093         (PDISK_GROW_PARTITION): Factor out.
1094
1095         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1096         definitions from Windows DDK headers, by including parts/winioctl.h;
1097         delete duplicate definitions already identified as having been factored
1098         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1099         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1100         UCHAR, resulting in no significant changes, except that...
1101         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1102         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1103         (StorageManagerName): ...these previously missing fields, originally
1104         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1105         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1106
1107 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1108
1109         Windows application module version information API updates.
1110
1111         * include/winver.h: Assert copyright; tidy layout.
1112         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1113         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1114         having both ANSI and UTF-16LE specific alternative implementations.
1115         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1116         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1117         note that both are generic, with ANSI and UTF-16LE implementations,
1118         but the ANSI implementations are missing from MSVCRT.DLL when...
1119         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1120
1121         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1122         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1123
1124 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1125
1126         Revert a failed experimental macro construct.
1127
1128         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1129         code, and doesn't work in the C preprocessor conditional context where
1130         its associated constant definitions are most likely to be required.
1131         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1132         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1133         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1134         now in terms of their preferred equivalents from <sdkddkver.h>
1135
1136 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1137
1138         Code clean-up; fix MinGW-Bug [#2263].
1139
1140         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1141         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1142         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1143
1144         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1145         style comments, using ISO-C conforming style; remove all redundant
1146         parameter names from function prototype declarations, throughout.
1147         (pragma GCC system_header): Remove pointless conditional guard.
1148         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1149         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1150         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1151         alternatives, respectively; they offer improved self-documentation.
1152         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1153         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1154         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1155         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1156         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1157         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1158         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1159         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1160         from their __AW_STRING_A__ equivalent string constant definitions.
1161         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1162         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1163         a hexadecimal expression of the mask value over the former decimal.
1164         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1165         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1166         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1167         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1168         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1169         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1170         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1171         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1172         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1173         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1174         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1175         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1176         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1177         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1178         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1179         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1180         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1181         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1182         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1183         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1184         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1185         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1186         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1187         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1188         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1189         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1190         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1191         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1192         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1193         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1194         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1195         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1196         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1197         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1198         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1199         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1200         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1201         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1202         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1203         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1204         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1205         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1206         express them in hexadecimal, in preference to original decimal form.
1207         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1208         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1209         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1210         a string literal, but was missing delimiting quotes; insert them.
1211         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1212         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1213         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1214         aliases for each of the UNICODE/non-UNICODE cases respectively.
1215         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1216         was declared as type LPTSTR, but should be type LPSTR.
1217         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1218         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1219         type LPSTR, but should be type LPWSTR.
1220         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1221         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1222         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1223
1224 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1225
1226         Correct defect in build system compilation rule.
1227
1228         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1229         source file; it expands to also include prerequisite header files,
1230         which should not appear on the compilation command line.  Rewrite
1231         rule in static pattern format, and use $< instead.
1232
1233 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1234
1235         Build system corrections for GCC build time support.
1236
1237         * configure.ac (AC_PROG_CC): Don't use this; we need...
1238         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1239         building with only a stage 1 partially built GCC installation.
1240
1241         * Makefile.in (install-headers): New make objective; map it to...
1242         (install-w32api-headers): ...this, for which it is a logical alias.
1243
1244 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1245
1246         Overhaul and streamline build system configuration.
1247
1248         * configure.in: Delete obsolete file; replace with...
1249         * configure.ac: New file; rewritten per current autoconf conventions.
1250
1251         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1252         it now processes the entire build without using separate sub-makes.
1253
1254         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1255         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1256
1257 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1258
1259         Remove unused aclocal.m4 configuration file.
1260
1261         * aclocal.m4: Delete it; it provides no content used by this package.
1262
1263 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1264
1265         Adapt platform feature checks to NTDDI_VERSION conventions.
1266
1267         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1268         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1269         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1270         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1271         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1272
1273         * include/w32api.h: Assert copyright; include sdkddkver.h.
1274         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1275         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1276         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1277         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1278         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1279         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1280         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1281         macro definitions by long integer constants, and mark as deprecated.
1282         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1283         mingwrt/include/_mingw.h, whence we similarly relocate...
1284         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1285
1286         * include/windef.h: Assert copyright; include w32api.h, whence we
1287         infer default assignments, per included sdkddkver.h, for each of...
1288         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1289         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1290
1291 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1292
1293         Remove generated configure script from revision control.
1294
1295         * configure: Delete from SCM; maintainer must regenerate it, when
1296         required, as SCM will now ignore it.
1297
1298 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1299
1300         Cosmetic adjustment to match MSDN documentation.
1301
1302         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1303         of parameter #1 to be LPCVOID, in preference to formerly specified,
1304         and functionally equivalent, 'const LPVOID'.
1305
1306 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1307
1308         Correct typos, as identified by issue [#1534].
1309
1310         * include/setupapi.h (SetupCancelTemporary): Should be...
1311         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1312         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1313         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1314         (SetupQueryA, SetupQueryW): ...these respectively to...
1315         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1316         (SetupDiGetWizardage): Misspelled; correct it to...
1317         (SetupDiGetWizardPage): ...this.
1318
1319 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1320
1321         Declare WTSVirtualChannel API functions per issue [#1342].
1322
1323         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1324         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1325         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1326         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1327         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1328
1329         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1330
1331 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1332
1333         Correct MENUITEMINFO structure definition per issue [#1659].
1334
1335         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1336         field was defined as type DWORD; correct it to type ULONG_PTR.
1337
1338 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1339
1340         Extend visibility of winsock definitions when building Cygwin.
1341
1342         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1343         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1344         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1345         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1346         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1347         [__INSIDE_MSYS__]: ...keep them hidden.
1348
1349         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1350         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1351         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1352         [__INSIDE_MSYS__]: ...also keep them hidden.
1353
1354 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1355
1356         Correct version guard for WinXP minimum requirement.
1357
1358         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1359         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1360         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1361         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1362
1363 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1364
1365         Add missing <shobjidl.h> and associated UUID implementation.
1366
1367         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1368         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1369
1370 2012-03-19  Ben Greear  <greear@users.sf.net>
1371
1372         Adjust header file definition order, to fix issue [#1570].
1373
1374         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1375         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1376
1377 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1378
1379         Add missing return value, flagged by 'make test'.
1380
1381         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1382         Return NO_ERROR in virtual definition.
1383
1384 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1385
1386         Remove duplicate definitions, identified by 'make test'.
1387
1388         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1389         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1390         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1391         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1392         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1393         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1394
1395         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1396         correctly defined (per MSDN) in <wincrypt.h>
1397
1398 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1399
1400         Correct misuse of #ifdef, identified by 'make test'.
1401
1402         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1403         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1404
1405 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1406
1407         Replace more incorrectly named manifest constants.
1408
1409         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1410         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1411         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1412         definitions respectively; retain for backward compatibility only.
1413
1414 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1415
1416         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1417
1418         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1419
1420 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1421
1422         Add missing MAPVK manifest constant definitions.
1423
1424         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1425         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1426
1427 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1428
1429         Correct some misspelled manifest constant names.
1430
1431         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1432         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1433         alias to original misspelling, to maintain backward compatibility.
1434         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1435         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1436         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1437         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1438
1439 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1440
1441         Add a missing Win2K sockets IOCTL feature.
1442
1443         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1444
1445 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1446
1447         Fix an incorrectly typed structure member.
1448
1449         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1450         should be LPSTR; correct it.
1451
1452 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1453
1454         Add another missing manifest constant definition.
1455
1456         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1457
1458 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1459
1460         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1461
1462         * include/windef.h (PACKED): Delete macro definition; its name is not
1463         reserved, and may thus conflict with a user defined name; replace it...
1464         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1465         use __attribute__((packed)) directly instead.
1466
1467 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1468
1469         Fix bad typedef, per MinGW-Bug [#1529].
1470
1471         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1472         conform with MSDN reference, as identified by Safety0ff.
1473
1474 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1475
1476         Add a missing manifest constant definition.
1477
1478         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1479
1480 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1481
1482         Win2K and Vista userenv updates.
1483
1484         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1485         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1486         (ExpandEnvironmentStringsForUser): Define function aliases.
1487         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1488         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1489         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1490         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1491         (GetProfileType): Declare function prototypes.
1492         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1493         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1494         New manifest constants; define them.
1495
1496 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1497
1498         * Makefile.in: Increment CYGRELEASE to 2.
1499
1500 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1501
1502         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1503
1504 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1505
1506         * include/w32api.h: Increment version to 3.17.
1507         * Makefile.in: Ditto.
1508
1509 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1510
1511         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1512         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1513         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1514         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1515
1516 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1517
1518         * include/w32api.h: Increment version to 3.16.
1519         * Makefile.in: Ditto.
1520
1521 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1522
1523         * include/commctrl.h (NMTCKEYDOWN): Define.
1524
1525 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1526
1527         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1528         Define.
1529
1530 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1531
1532         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1533         PSAPI_WORKING_SET_INFORMATION): Define.
1534
1535 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1536
1537         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1538
1539 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1540
1541         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1542
1543 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1544
1545         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1546         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1547         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1548
1549 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1550
1551         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1552         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1553         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1554
1555 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1556
1557         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1558         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1559
1560 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1561
1562         * include/winbase.h (__MINGW_EXTENSION): Define.
1563         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1564         struct to correct issue with -std=c99.
1565
1566 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1567
1568         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1569         (TIMER_BASIC_INFORMATION): Define.
1570         (NtQueryTimer): Define.
1571         (ZwQueryTimer): Define.
1572
1573 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1574
1575         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1576
1577 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1578
1579         * include/winbase.h (GetComputerNameEx): Define.
1580
1581 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1582
1583         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1584
1585 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1586
1587         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1588         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1589         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1590         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1591         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1592         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1593         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1594         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1595         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1596
1597 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1598
1599         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1600         Add defines for backward compatibility.
1601
1602 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1603
1604         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1605         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1606         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1607         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1608         EnumResourceTypesW): Ditto.
1609         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1610
1611 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1612
1613         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1614
1615 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1616
1617         * include/bdatypes.h: Add missing semicolons.
1618
1619 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1620
1621         * include/w32api.h: Increment version to 3.15.
1622         * Makefile.in: Ditto.
1623
1624 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1625
1626         * Makefile.in: Update naming convention and compression format (lzma),
1627         leaving existing naming convention and compression format as is for Cygwin.
1628
1629 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1630
1631         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1632         STATE_SYSTEM_PROTECTED): Define.
1633
1634         Thank you to Marcus von Appen for reporting the issue.
1635
1636 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1637
1638         * include/winuser.h (CF_DIBV5): Define.
1639         (CF_MAX): Adjust accordingly.
1640
1641         Thank you to Lenard Lindstrom for reporting the issue.
1642
1643 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1644
1645         * include/sspi.h (QuerySecurityContextToken): Define.
1646         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1647
1648         Thank you to Magnus Hagander for reporting the issue.
1649
1650 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1651
1652         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1653
1654 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1655
1656         * include/shlwapi (ASSOCDATA): Update definition.
1657
1658         Thank you to Frederic Deschamps for reporting the issue.
1659
1660 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1661
1662         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1663         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1664         COPY_FILE_NO_BUFFERING): Define.
1665
1666         Thank you to Roland Schwingel for reporting the issue.
1667
1668 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1669
1670         * include/winuser.h (HHOOK): Move definition from here...
1671         * include/windef.h: ...to here, as per MSDN.
1672
1673         Thank you to Samuel Thibault for reporting the issue.
1674
1675 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1676
1677         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1678         MSDN, change return type to LPCH.
1679         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1680
1681         Thank you to Emmanuel Stapf for reporting the issue.
1682
1683 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1684
1685         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1686         * include/windowsx.h (SNDMSG): Ditto.
1687
1688 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1689
1690         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1691
1692         Thank you to Ozkan Sezer for reporting the issue.
1693
1694 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1695
1696         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1697
1698         Thank you to Chris Oldwood for reporting the issue.
1699
1700 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1701
1702         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1703
1704         Thank you to Rick Walsh for reporting the issue.
1705
1706 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1707
1708         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1709
1710 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1711
1712         * include/winbase.h (OVERLAPPED): Correct definition.
1713
1714 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1715
1716         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1717         definition.
1718
1719         Thank you to Pasi Ruokola for reporting the issue.
1720
1721 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1722
1723         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1724
1725         Thank you to cheznonnon for reporting the issue.
1726
1727 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1728
1729         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1730
1731 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1732
1733         * winnt.h: Fix several SUBLANG ID errors (ref:
1734         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1735         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1736         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1737         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1738         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1739         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1740         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1741         (SUBLANG_LAO_LAO): ... this.
1742         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1743         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1744         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1745         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1746         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1747         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1748         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1749         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1750         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1751         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1752         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1753
1754 2010-08-24  LRN  <lrn1986@gmail.com>
1755
1756         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1757         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1758         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1759         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1760         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1761         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1762         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1763         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1764         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1765         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1766         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1767         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1768         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1769         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1770         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1771         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1772         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1773         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1774         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1775         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1776         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1777         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1778         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1779         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1780         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1781         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1782         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1783         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1784         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1785         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1786         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1787         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1788         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1789         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1790         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1791         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1792         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1793         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1794         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1795         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1796         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1797         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1798         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1799         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1800         WAVE_FORMAT_DTS2): Define.
1801         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1802         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1803         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1804         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1805         Define.
1806
1807 2010-08-23  LRN  <lrn1986@gmail.com>
1808
1809         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1810         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
1811         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
1812         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
1813         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
1814         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
1815         GetFinalPathNameByHandleW): Define.
1816
1817 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1818
1819         * lib/CheckConflicts.sh: New file.
1820
1821 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1822
1823         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
1824         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
1825         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
1826         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
1827         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
1828         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
1829         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
1830         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
1831         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
1832         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
1833         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
1834         conflicting definition.
1835         * lib/th32.def: Remove.
1836         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
1837         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
1838         definition.
1839
1840 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1841
1842         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
1843
1844 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1845
1846         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
1847
1848 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
1849
1850         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
1851         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
1852         * include/ddk/winddk.h: Ditto.
1853
1854 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
1855
1856         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
1857         CreateSymbolicLinkA, CreateSymbolicLink): Define
1858
1859 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1860
1861         * lib/kernel32.def(FatalExit): Correct definiton.
1862
1863 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1864
1865         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
1866         from 2010-07-17 since it breaks several applications.
1867
1868 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1869
1870         * lib/kernel32.def: Regenerate using gendef.
1871
1872 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
1873
1874         * include/commctrl.h (LVIF_GROUPID): Fix definition.
1875
1876 2010-07-20  Michael James  <james.me@gmail.com>
1877
1878         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
1879
1880 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1881
1882         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
1883         definition.
1884         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
1885         NdrMarshSCtxtHdl): Ditto.
1886         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
1887         definition in favour of typedef definition.
1888
1889         Thank you to Yuta Tomino for reporting the issues.
1890
1891 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
1892
1893         * include/gdiplus.h: New file.
1894         * include/gdiplus/gdiplus.h: New file.
1895         * include/gdiplus/gdiplusbase.h: New file.
1896         * include/gdiplus/gdiplusbrush.h: New file.
1897         * include/gdiplus/gdipluscolor.h: New file.
1898         * include/gdiplus/gdipluscolormatrix.h: New file.
1899         * include/gdiplus/gdipluseffects.h: New file.
1900         * include/gdiplus/gdiplusenums.h: New file.
1901         * include/gdiplus/gdiplusflat.h: New file.
1902         * include/gdiplus/gdiplusgpstubs.h: New file.
1903         * include/gdiplus/gdiplusgraphics.h: New file.
1904         * include/gdiplus/gdiplusheaders.h: New file.
1905         * include/gdiplus/gdiplusimageattributes.h: New file.
1906         * include/gdiplus/gdiplusimagecodec.h: New file.
1907         * include/gdiplus/gdiplusimaging.h: New file.
1908         * include/gdiplus/gdiplusimpl.h: New file.
1909         * include/gdiplus/gdiplusinit.h: New file.
1910         * include/gdiplus/gdipluslinecaps.h: New file.
1911         * include/gdiplus/gdiplusmatrix.h: New file.
1912         * include/gdiplus/gdiplusmem.h: New file.
1913         * include/gdiplus/gdiplusmetafile.h: New file.
1914         * include/gdiplus/gdiplusmetaheader.h: New file.
1915         * include/gdiplus/gdipluspath.h: New file.
1916         * include/gdiplus/gdipluspen.h: New file.
1917         * include/gdiplus/gdipluspixelformats.h: New file.
1918         * include/gdiplus/gdiplusstringformat.h: New file.
1919         * include/gdiplus/gdiplustypes.h: New file.
1920         * lib/gdiplus.c: New file containing GDI+ variable definitions
1921         and GUIDs.
1922         * lib/gdiplus.def: New file.
1923         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
1924         add gdiplus.c to SOURCES.
1925         * lib/test.c: Include gdiplus.h.
1926
1927 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
1928
1929         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
1930         GetPerformanceInfo): Define.
1931         * lib/psapi.def (GetPerformanceInfo): Define.
1932         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
1933         CryptEnumProviders): Define.
1934
1935 2010-02-17  LRN  <lrn1986@gmail.com>
1936
1937         * include/shlguid.h (IID_IFolderView): Define.
1938         * include/shlobj.h (IFolderView interface): Define.
1939         * lib/shell32.c (IID_IFolderView): Export.
1940
1941 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1942
1943         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
1944         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
1945
1946 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1947
1948         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
1949
1950 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1951
1952         * include/shlobj.h (SHParseDisplayName): Fix definition.
1953
1954 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1955
1956         * include/w32api.h: Increment version to 3.14.
1957         * Makefile.in: Ditto.
1958
1959 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1960
1961         * include/shlobj.h (SHParseDisplayName): Define.
1962
1963         Thanks to James Roberts-Thomson for the report.
1964
1965 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1966
1967         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
1968
1969         Thanks to Alexander Vassilev for the report.
1970
1971 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1972
1973         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
1974
1975         Thanks to Thomas Denk for the report.
1976
1977 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1978
1979         * include/winbase.h (UnmapViewOfFile): Correct definition.
1980
1981         Thanks to Dimitry Sibiryakov for the report.
1982
1983 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
1984
1985         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
1986
1987 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
1988
1989         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
1990         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
1991
1992 2009-20-10  Michael James  <james.me@gmail.com>
1993
1994         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
1995         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
1996         >= 0x0501.
1997         (WM_UNICHAR,UNICODE_NOCHAR): Define.
1998         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
1999         RemoveWindowSubclass@12): Add exports.
2000         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2001
2002 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2003
2004         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2005         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2006         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2007         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2008         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2009         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2010         RegisterTouchWindow, UnregisterTouchWindow): Define.
2011         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2012         RegisterTouchWindow, UnregisterTouchWindow): Define.
2013
2014 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2015
2016         * include/winver.h (VerQueryValue[AW]): Correct definition.
2017
2018 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2019
2020         * include/shlobj.h (SHARD): Add enum.
2021         (SHARD_PATH): Define based on UNICODE.
2022
2023         Thanks to Jacek Caban for the report.
2024
2025 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2026
2027         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2028
2029         Thanks to Bruno Martinez for the report.
2030
2031 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2032
2033         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2034         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2035         SHGetIconOverlayIndex): Define.
2036
2037         Thanks to Tim Kosse for the report.
2038
2039 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2040
2041         * include/wincon.h (AttachConsole): Correct guard.
2042
2043         Thanks to Alexander Shaduri for the report.
2044
2045 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2046
2047         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2048         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2049
2050 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2051
2052         * include/winerror.h: Fix typos in macro names.
2053
2054 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2055
2056         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2057         definition.
2058
2059 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2060
2061         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2062
2063 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2064
2065         Honor DESTDIR for winsup/mingw and winsup/w32api.
2066         Detect and report error if installation paths are win32
2067         format, but DESTDIR is non-empty.
2068
2069         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2070         when invoking make in subdirs.
2071         * lib/Makefile.in (DESTDIR): Honor per convention.
2072         (need-DESTDIR-compatibility): New macro; define it and a
2073         corresponding rule.
2074         (fail-DESTDIR-compatibility): New dependency goal.
2075         (install-libraries, install-headers, uninstall-libraries,
2076         uninstall-headers): Require need-DESTDIR-compatibility.
2077         * lib/ddk/Makefile.in: Ditto.
2078         * lib/directx/Makefile.in: Ditto.
2079
2080 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2081
2082         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2083         _WIN32_WINNT >= 0x0500.
2084         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2085         WRITE_RESTRICTED): Define.
2086         (IsTokenRestricted): Declare for >= Win 2000.
2087
2088 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2089
2090         * include/wtsapi32.h (WTSQuerySessionInformationA,
2091         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2092         Moved to (_WIN32_WINNT >= 0x0500) guard.
2093         (thanks to Pierre Ossman)
2094
2095 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2096
2097         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2098         IS_SURROGATE_PAIR): Define.
2099
2100 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2101
2102         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2103         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2104         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2105         * include/ddk/ntifs.h: Ditto.
2106         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2107
2108 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2109
2110         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2111         from here...
2112         * lib/gdo32.dll: ...to here.
2113
2114 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2115
2116         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2117         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2118         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2119         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2120         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2121         entry points.
2122
2123 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2124
2125         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2126         WTSEnumerateSessionsA): Add function prototypes.
2127         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2128         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2129         defines dependent on UNICODE setting.
2130
2131 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2132
2133         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2134         and vice versa.
2135         * include/ddk/ntifs.h: Ditto.
2136         * include/ddk/winddk.h: Ditto.
2137         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2138         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2139         in header, but missing in lib.  Omit NT4-only entry points.
2140
2141 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2142
2143         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2144         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2145         * lib/shell32.def (SHGetImageList): Define.
2146
2147 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2148
2149         * winnt.h: Add Vista token security extensions.
2150         (SID_HASH_SIZE): Define.
2151         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2152         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2153         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2154         (SID_HASH_ENTRY): Define.
2155         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2156         (struct _TOKEN_LINKED_TOKEN): Define.
2157         (struct _TOKEN_MANDATORY_LABEL): Define.
2158         (struct _TOKEN_MANDATORY_POLICY): Define.
2159         (struct _TOKEN_ELEVATION): Define.
2160         (struct _TOKEN_ACCESS_INFORMATION): Define.
2161         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2162         information enumeration values.
2163
2164 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2165
2166         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2167         from ddk/ntifs.h.
2168
2169 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2170
2171         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2172
2173 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2174
2175         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2176
2177 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2178
2179         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2180         NtSetEaFile.
2181
2182 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2183
2184         * include/winbase.h (SCS_64BIT_BINARY): Define.
2185
2186 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2187
2188         * include/w32api.h: Increment version to 3.13.
2189         * Makefile.in: Ditto.
2190
2191 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2192
2193         * lib/glut.def: remove.
2194         * lib/glut32.def: ditto.
2195
2196 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2197
2198         * include/winbase.h (PROCESS_DEP_ENABLE,
2199         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2200         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2201         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2202
2203 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2204
2205         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2206
2207 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2208
2209         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2210
2211 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2212
2213         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2214
2215 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2216
2217         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2218         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2219         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2220         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2221         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2222         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2223         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2224         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2225         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2226         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2227         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2228         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2229         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2230         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2231         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2232         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2233         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2234         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2235         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2236         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2237         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2238         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2239         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2240         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2241         (capSendMessage): Don't undef.
2242
2243 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2244
2245         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2246         undefined.
2247
2248 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2249
2250         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2251         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2252         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2253         SUBLANG_ROMANIAN_MOLDOVA): Define.
2254
2255 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2256
2257         * include/shlwapi.h (ASSOCSTR): Update enum.
2258
2259 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2260
2261         * include/w32api.h: Increment version to 3.12.
2262         * Makefile.in: Ditto.
2263
2264 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2265
2266         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2267
2268 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2269
2270         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2271
2272 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2273
2274         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2275         Thanks to Richard Hughes for report.
2276
2277 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2278
2279         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2280         naming standard for Cygwin.
2281
2282 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2283
2284         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2285
2286 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2287
2288         * include/ddk/scsi.h: Define READ_TOC formats.
2289         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2290
2291 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2292
2293         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2294         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2295         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2296         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2297         NdisMCancelTimer): Define.
2298         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2299         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2300         eliminate warnings.
2301         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2302         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2303         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2304         Export.
2305
2306 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2307
2308         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2309         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2310
2311 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2312
2313         * include/ddk/winddk.h (KeRaiseIrql): Define.
2314         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2315
2316 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2317
2318         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2319         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2320         (InterlockedIncrement, InterlockedDecrement): fix warning.
2321         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2322         (KeNumberProcessors): Export.
2323
2324 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2325
2326         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2327         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2328         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2329         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2330         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2331
2332 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2333
2334         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2335
2336         Thanks to Tim Kosse <botg at users dot sf dot net>.
2337
2338 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2339
2340         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2341         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2342         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2343         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2344         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2345         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2346         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2347
2348 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2349
2350         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2351         WTSQuerySessionInformation, WTSFreeMemory): Define.
2352
2353 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2354
2355         * lib/gdi32.def (SetLayout): Export.
2356
2357 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2358
2359         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2360         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2361         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2362         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2363         CertSetCertificateContextProperty, CertCompareCertificateName,
2364         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2365         CryptGetDefaultProviderW and many corresponding macroes): Define.
2366         * lib/crypt32.def (Export the above 11 functions): Export.
2367         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2368         macroes): Define.
2369
2370
2371 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2372
2373         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2374         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2375
2376 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2377
2378         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2379
2380 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2381
2382         * include/lmaccess.h (struct _USER_INFO_4): Define.
2383         (struct _USER_INFO_23): Define.
2384         (struct _GROUP_INFO_3): Define.
2385
2386 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2387
2388         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2389         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2390         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2391         MIB_TCP6TABLE_OWNER_PID): Define.
2392         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2393
2394 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2395
2396         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2397         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2398         of 0x0502.
2399         Bug reported by Thomas Denk.
2400
2401 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2402
2403         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2404         InterlockedCompareExchange, InterlockedExchange,
2405         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2406         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2407         Bug reported by Erik Blake.
2408
2409 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2410
2411         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2412         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2413         Bug reported by Brian Hawley.
2414
2415 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2416
2417         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2418         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2419         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2420         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2421         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2422         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2423         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2424         (DsGetDcNameW, DsGetDcNameA): Declare.
2425         (DsGetDcName): Define.
2426         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2427
2428 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2429
2430         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2431
2432         Thanks to Tim Kosse <botg at users dot sf dot net>.
2433
2434 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2435
2436         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2437
2438         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2439
2440 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2441
2442         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2443         (FILE_SUPPORTS_TRANSACTIONS): Define.
2444
2445 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2446
2447         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2448         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2449
2450 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2451
2452         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2453         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2454         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2455         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2456         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2457         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2458         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2459         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2460         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2461         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2462         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2463         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2464         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2465         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2466         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2467         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2468         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2469         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2470         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2471         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2472         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2473         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2474         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2475         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2476         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2477         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2478         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2479         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2480         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2481         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2482         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2483         capDriverConnect, capDriverDisconnect, capDriverGetName,
2484         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2485         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2486         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2487         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2488         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2489         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2490         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2491         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2492         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2493         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2494         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2495         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2496         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2497         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2498         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2499
2500 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2501
2502         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2503         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2504         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2505         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2506         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2507         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2508         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2509         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2510         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2511         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2512         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2513         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2514         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2515         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2516         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2517         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2518         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2519         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2520         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2521         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2522         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2523         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2524         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2525         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2526         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2527         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2528         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2529         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2530         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2531         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2532         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2533         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2534         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2535         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2536         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2537         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2538         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2539         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2540         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2541         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2542         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2543         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2544         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2545         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2546         *SpUserModeInitializeFn): Define.
2547         * include/sspi.h (SECURITY_STRING): Define.
2548
2549 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2550
2551         * include/specstrings.h: Add more dummy defines.
2552
2553 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2554
2555         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2556         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2557         (SECURITY_MANDATORY_LOW_RID): Define.
2558         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2559         (SECURITY_MANDATORY_HIGH_RID): Define.
2560         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2561         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2562         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2563         (SE_GROUP_INTEGRITY): Define.
2564         (SE_GROUP_INTEGRITY_ENABLED): Define.
2565
2566 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2567
2568         * include/sddl.h (ConvertStringSidToSidA): Declare.
2569         (ConvertStringSidToSidW): Declare.
2570         (ConvertStringSidToSid): Define.
2571
2572 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2573
2574         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2575         and MPR_INTERFACE_3 structure since they are available only in Windows
2576         Server 2008
2577
2578         Thanks to crackedmind  <crackedmind at sf dot net>.
2579
2580 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2581
2582         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2583         definitions.
2584         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2585
2586 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2587
2588         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2589
2590 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2591
2592         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2593         * include/windef.h (IN, OUT, OPTIONAL): Define.
2594
2595 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2596
2597         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2598         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2599         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2600         __out_bcount_opt): Move to specstrings.h.
2601
2602 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2603
2604         * lib/bthprops.def: new file, bluetooth imports.
2605
2606 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2607
2608         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2609         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2610         __out_bcount_opt): Defined additional pseudo-modifiers.
2611
2612 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2613         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2614         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2615         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2616         dwRedialPause.
2617
2618 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2619
2620         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2621         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2622         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2623         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2624         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2625         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2626         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2627         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2628         * include/winuser.h (RegisterPowerSettingNotification,
2629         UnregisterPowerSettingNotification): Add prototypes.
2630         * lib/user32.def: Added imports for the above prototypes.
2631         * lib/Makefile.in: Added build support for power-uuid.c.
2632         * lib/power-uuid.c: New file containing power GUID definitions.
2633
2634 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2635
2636         * include/ras.h (RAS_MaxDnsSuffix): define.
2637
2638 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2639
2640         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2641         Add prototypes.
2642         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2643         Add exports.
2644
2645 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2646
2647         * include/w32api.h: Increment version to 3.11.
2648         * Makefile.in: Ditto.
2649
2650 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2651
2652         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2653         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2654
2655 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2656
2657         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2658
2659 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2660
2661         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2662         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2663
2664 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2665
2666         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2667
2668 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2669
2670         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2671         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2672         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2673         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2674         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2675         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2676         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2677         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2678         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2679         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2680         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2681         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2682         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2683         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2684         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2685         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2686         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2687         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2688         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2689         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2690         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2691         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2692         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2693         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2694         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2695         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2696         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2697         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2698         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2699         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2700         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2701         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2702         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2703         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2704         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2705         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2706         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2707         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2708         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2709         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2710         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2711         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2712         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2713         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2714         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2715         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2716         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2717         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2718         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2719         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2720         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2721         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2722         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2723         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2724         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2725         CryptEncodeObjectEx): define.
2726
2727 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2728
2729         * include/winbase.h (CheckTokenMembership): define.
2730
2731 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2732
2733         * include/rpcndr.h: Missing NdrClientCall2 entry.
2734         * lib/rpcrt4.def: Ditto.
2735
2736 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2737         * lib/scnsave.c: Multi-monitor support.
2738
2739 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2740
2741         * include/w32api.h: Increment version to 3.10.
2742         * Makefile.in: Ditto.
2743
2744 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2745
2746         * include/winbase.h (ReOpenFile): Add prototype.
2747         * lib/kernel32.def (ReOpenFile@16): Add export.
2748
2749 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2750
2751         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2752
2753 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2754
2755         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2756         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2757
2758 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2759
2760         * include/wtypes.h (LPDECIMAL): Define.
2761         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2762
2763 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2764
2765         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2766
2767 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2768
2769         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2770         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2771
2772 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2773
2774         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2775         Define.
2776
2777 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2778
2779         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2780         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2781         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2782         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2783         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2784         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2785         Sync with include/pbt.h.
2786
2787 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2788
2789         [mingw-Bugs-1751518]
2790         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2791         get_URL.
2792
2793         [mingw-Bugs-1751565]
2794         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2795
2796         [mingw-Bugs-1751595]
2797         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2798         methods.
2799
2800         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2801
2802 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2803
2804         [mingw-Bugs-1750898]
2805         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2806         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2807
2808 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2809
2810         [mingw-Bugs-1749305]
2811         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
2812
2813 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
2814
2815         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
2816
2817 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
2818
2819         * include/oaidl.h: Include windows.h and ole2.h,
2820         unless COM_NO_WINDOWS_H.
2821
2822         [mingw-Bugs-1742130]
2823         * include/oaidl.h (struct tagVARIANT): Add union members
2824         LONGLONG  * pllVal and ULONGLONG * pullVal.
2825
2826 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
2827
2828         * include/ws2tcpip.h (s6_addr32): Correct definition.
2829         Thanks to Alfred E. Heggestad <aeh at db dot org>
2830
2831 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2832
2833         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
2834
2835         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
2836         supplying the information.
2837
2838 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2839
2840         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
2841
2842 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2843
2844         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
2845         Vista.
2846
2847 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
2848
2849          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
2850         CRYPTPROTECT_LOCAL_MACHINE): Define.
2851
2852 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
2853
2854         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
2855         Define.
2856
2857 2007-03-30  Brian Dessent  <brian@dessent.net>
2858
2859         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
2860
2861 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2862
2863         * include/w32api.h: Increment version to 3.9.
2864         * Makefile.in: Ditto.
2865
2866 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
2867
2868         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
2869
2870 2007-03-23  Matthew Gregan  <kinetik@flim.org>
2871
2872         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
2873
2874 2007-03-06  Brandon Sneed  <brandon@oqo.com>
2875
2876         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
2877         Added SetupConfigureWmiFromInfSectionW
2878         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
2879
2880         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
2881
2882         * include/winuser.h: Added PBT_APMQUERYSUSPEND
2883         Added PBT_APMQUERYSTANDBY
2884         Added PBT_APMQUERYSUSPENDFAILED
2885         Added PBT_APMQUERYSTANDBYFAILED
2886         Added PBT_APMSUSPEND
2887         Added PBT_APMSTANDBY
2888         Added PBT_APMRESUMECRITICAL
2889         Added PBT_APMRESUMESUSPEND
2890         Added PBT_APMRESUMESTANDBY
2891         Added PBT_APMBATTERYLOW
2892         Added PBT_APMPOWERSTATUSCHANGE
2893         Added PBT_APMOEMEVENT
2894         Added PBT_APMRESUMEAUTOMATIC
2895
2896         * include/wtsapi32.h: New file
2897
2898         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
2899
2900 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2901
2902         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
2903         argument to constant.
2904
2905 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
2906
2907         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
2908         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
2909         Add prototypes.
2910         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
2911
2912 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
2913
2914         * lib/user32.def (InternalGetWindowText): Add stub.
2915
2916 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
2917
2918         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
2919         LANG_BOSNIAN_NEUTRAL): Define.
2920
2921 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
2922
2923         * include/winuser.h: Add guards around TITLEBARINFO and
2924         GetTitleBarInfo().
2925
2926 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
2927
2928         * include/winbase.h (struct _OVERLAPPED): Change type of
2929         Internal, InternalHigh members to ULONG_PTR.
2930         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
2931         (CreateIoCompletionPort): Likewise.
2932         (PostQueuedCompletionStatus): Likewise.
2933         (QueueUserAPC): Likewise.
2934
2935 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
2936
2937         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
2938         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
2939         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
2940         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
2941         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
2942         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
2943         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
2944         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
2945         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
2946         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
2947
2948 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
2949
2950         * Makefile.in: Add aclocal.m4 to source release.
2951
2952 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2953
2954         * include/w32api.h: Increment version to 3.8.
2955         * Makefile.in: Ditto.
2956
2957 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
2958
2959         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
2960         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
2961
2962         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
2963
2964 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
2965
2966         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
2967
2968         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
2969         inline static.
2970         (GetFiberData): Likewise.
2971         * lib/kernel32.c: Remove.
2972         * lib/Makefile.in: Remove reference to kernel32.[co].
2973
2974 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2975
2976         * include/winnt.h (SE_RELABEL_NAME): Define.
2977         (SE_INCREASE_WORKING_SET_NAME): Define.
2978         (SE_TIME_ZONE_NAME): Define.
2979         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
2980
2981 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2982
2983         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
2984         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
2985         SymbolicLinkReparseBuffer substructure.
2986
2987 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
2988
2989         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
2990
2991 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2992
2993         * lib/Makefile.in: Fix order for 'all' rule.
2994
2995 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
2996
2997         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
2998
2999 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3000
3001         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3002         mappings.
3003         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3004         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3005
3006 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3007
3008         * include/rpc.h: Add whitespace.
3009         * include/winnt.h (C_ASSERT): Define.
3010
3011 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3012
3013         [mingw-Bugs-1568067]
3014         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3015         * include/wingdi.h: (DM_POSITION): Define.
3016
3017 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3018
3019         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3020         * lib/user32.def: Likewise.
3021
3022 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3023
3024         * lib/Makefile.in: fix typo.
3025         * lib/ddk/Makefile.in: fix typo.
3026         * lib/directx/Makefile.in: fix typo.
3027
3028         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3029         for pointing it out.
3030
3031 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3032
3033         * Makefile.in: Remove files from lib directory with distclean target
3034
3035 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3036
3037         * include/winuser.h (CS_DROPSHADOW): Define.
3038
3039 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3040
3041         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3042         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3043         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3044         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3045
3046         Increase each constant by 1.
3047
3048 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3049
3050         [mingw-Bugs-1553275]
3051         * include/wingdi.h (SetLayout): Add prototype.
3052         (GetLayout): Likewise.
3053
3054 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3055
3056         [mingw-Bugs-1550139]
3057         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3058         Tanks to:  Samit Basu <samitbasu at sf dot net>
3059         (GetRecordInfoFromGuids): Add prototype.
3060
3061 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3062
3063         * include/winbase.h: Add comment about 'missing' SEM flag.
3064
3065 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3066
3067         * configure.in: Substitute with_cross_host in depending files.
3068         * configure: Regenerate.
3069         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3070         Set installation directories accordingly.
3071         * lib/ddk/Makefile.in: Ditto.
3072         * lib/directx/Makefile.in: Ditto.
3073
3074 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3075
3076         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3077         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3078         Bug reported by: <macleone at users dot sf dot net>
3079
3080 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3081
3082         Update some more IMAGE relocation type indicators
3083         to PECOFF v8 (May, 2006) specs.
3084
3085         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3086         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3087         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3088         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3089         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3090         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3091         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3092         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3093         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3094         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3095         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3096         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3097         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3098         IMAGE_REL_SHM_NOMODE): Add defines.
3099
3100         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3101         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3102         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3103         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3104         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3105         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3106         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3107         IMAGE_REL_M32R_TOKEN): Add defines.
3108
3109         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3110
3111 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3112
3113         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3114         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3115         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3116         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3117         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3118         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3119         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3120         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3121         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3122         Add defines.
3123
3124         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3125         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3126         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3127         Add defines.
3128
3129         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3130
3131         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3132         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3133         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3134         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3135         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3136         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3137
3138         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3139
3140         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3141         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3142         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3143         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3144         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3145         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3146         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3147         Add defines.
3148
3149         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3150         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3151         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3152         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3153         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3154         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3155         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3156         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3157         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3158         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3159         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3160         IMAGE_REL_IA64_ADDEND): Add defines.
3161
3162         (IMAGE_SCN_GPREL): Add define.
3163
3164 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3165
3166         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3167         * include/basetyps.h:  Likewise.
3168         (_COM_interface): New define.
3169         (interface): Define to _COM_interface, conditional on !__OBJC__.
3170         Replace 'interface' with '_COM_interface', throughout.
3171         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3172         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3173         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3174         * include/mshtml.h: Likewise.
3175         * include/oaidl.h: Likewise.
3176         * include/objfwd.h: Likewise.
3177         * include/objidl.h: Likewise.
3178         * include/ocidl.h: Likwise.
3179         * include/olectl.h: Likewise.
3180         * include/oleidl.h: Likewise.
3181         * include/shlobj.h: Likewise.
3182         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3183         * include/vfw.h: Likewise.
3184         * include/windows.h. Likewise. Add comment.
3185         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3186         throughout.
3187
3188         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3189         Add test for conflict with '@interface'
3190
3191 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3192
3193         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3194         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3195         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3196         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3197         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3198         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3199         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3200         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3201         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3202         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3203         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3204         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3205         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3206         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3207         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3208         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3209         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3210         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3211         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3212         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3213         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3214         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3215         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3216         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3217         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3218         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3219         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3220         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3221         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3222         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3223         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3224         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3225         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3226         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3227         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3228         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3229         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3230         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3231         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3232         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3233         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3234         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3235         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3236         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3237         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3238         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3239         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3240         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3241         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3242         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3243         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3244         CertDeleteCertificateFromStore): Define.
3245         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3246         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3247         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3248         CertAddCertificateContextToStore, CertCompareCertificate,
3249         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3250         Define.
3251
3252 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3253
3254         * lib/uuid.c: Remove.
3255
3256 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3257
3258         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3259         declarations. They were extracted from the registry with a script.
3260         * lib/devguid.c: Add new file with the implementation of the
3261         missing GUIDs.
3262         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3263
3264 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3265
3266         * include/winuser.h (WM_INPUT): Add missing Raw Input
3267         notification define.
3268         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3269         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3270
3271 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3272
3273         [mingw-Bugs-1525021]
3274         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3275         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3276         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3277         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3278         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3279         (IP_ADAPTER_ADDRESSES): Likewise.
3280
3281 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3282
3283         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3284         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3285         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3286         extras-uuid.c.
3287         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3288         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3289         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3290         * lib/hlguids-uuid.c: State source of CLSIDs.
3291
3292 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3293
3294         * lib/Makefile.in: Added extras-uuid as an object and source.
3295         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3296         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3297         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3298         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3299         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3300         * lib/extras-uuid.c: New file.
3301         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3302         net).
3303
3304 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3305
3306         [mingw-Bugs-1424461]
3307         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3308         throughout.
3309         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3310         _NO_W32_PSEUDO_MODIFIERS.
3311         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3312         throughout.
3313         *include/rpcnsip.h: Likewise.
3314         *include/windef.h: Don't define IN, OUT or OPTIONAL
3315         if _NO_W32_PSEUDO_MODIFIERS.
3316         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3317         throughout.
3318         *include/ddk/cfgmgr32.h: Likewise.
3319         *include/ddk/ddkmapi.h: Likewise.
3320         *include/ddk/hidclass.h: Likewise.
3321         *include/ddk/hidpi.h: Likewise.
3322         *include/ddk/kbdmou.h: Likewise.
3323         *include/ddk/mcd.h: Likewise.
3324         *include/ddk/miniport.h: Likewise.
3325         *include/ddk/minitape.h: Likewise.
3326         *include/ddk/ndis.h: Likewise.
3327         *include/ddk/ndistapi.h: Likewise.
3328         *include/ddk/ndiswan.h: Likewise.
3329         *include/ddk/ntapi.h: Likewise.
3330         *include/ddk/ntdd8042.h: Likewise.
3331         *include/ddk/ntddpcm.h: Likewise.
3332         *include/ddk/ntifs.h: Likewise.
3333         *include/ddk/ntpoapi.h: Likewise.
3334         *include/ddk/parallel.h: Likewise.
3335         *include/ddk/pfhook.h: Likewise.
3336         *include/ddk/scsiwmi.h: Likewise.
3337         *include/ddk/smbus.h: Likewise.
3338         *include/ddk/srb.h: Likewise.
3339         *include/ddk/storport.h: Likewise.
3340         *include/ddk/tdikrnl.h: Likewise.
3341         *include/ddk/upssvc.h: Likewise.
3342         *include/ddk/usbcamdi.h: Likewise.
3343         *include/ddk/usbscan.h: Likewise.
3344         *include/ddk/video.h: Likewise.
3345         *include/ddk/videoagp.h: Likewise.
3346         *include/ddk/win2k.h: Likewise.
3347         *include/ddk/winddi.h: Likewise.
3348         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3349         if _NO_W32_PSEUDO_MODIFIERS.
3350         Comment out IN, OUT and OPTIONAL, throughout.
3351         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3352         throughout.
3353         *include/ddk/ws2san.h: Likewise.
3354
3355 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3356
3357         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3358
3359 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3360
3361         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3362         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3363         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3364         * lib/hlguids-uuid.c: New file.
3365         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3366         net).
3367
3368 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3369
3370         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3371         objects.
3372         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3373         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3374         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3375         IID_IHlinkTarget): Remove.  Moved to new files.
3376         * lib/urlmon-uuid.c: New file.
3377         * lib/hlink-uuid.c: New file.
3378
3379 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3380
3381         * lib/Makefile.in: Added ativscp-uuid as source and object.
3382         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3383         IID_IActiveScriptParse, IID_IActiveScriptSite,
3384         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3385         * lib/ativscp-uuid.c: New file.
3386
3387 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3388
3389         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3390         Remove.  Moved to objidl-uuid.c
3391         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3392         IID_IServerSecurity): Defined.
3393
3394 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3395
3396         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3397         objects.
3398         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3399         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3400         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3401         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3402         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3403         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3404         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3405         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3406         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3407         files.
3408         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3409         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3410         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3411         * lib/cguid-uuid.c: New file.
3412         * lib/olectlid-uuid.c: New file.
3413
3414 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3415
3416         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3417         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3418         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3419         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3420         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3421         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3422         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3423         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3424         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3425         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3426         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3427         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3428         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3429         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3430         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3431         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3432         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3433         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3434         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3435         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3436         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3437         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3438         * lib/comcat-uuid.c: New file.
3439         * lib/docobj-uuid.c: New File.
3440         * lib/exdisp-uuid.c: New file.
3441         * lib/mlang-uuid.c: New file.
3442         * lib/oaidl-uuid.c: New file.
3443         * lib/objidl-uuid.c: New file.
3444         * lib/objsafe-uuid.c: New file.
3445
3446 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3447
3448         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3449         objects.
3450         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3451         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3452         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3453         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3454         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3455         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3456         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3457         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3458         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3459         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3460         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3461         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3462         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3463         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3464         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3465         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3466         * lib/oleidl-uuid.c: New file.
3467         * lib/oleacc-uuid.c: New file.
3468         * lib/ocidl-uuid.c: New file.
3469
3470 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3471
3472         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3473         objects.
3474         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3475         Remove.  Moved to unknwn-uuid and servprov-uuid.
3476         * lib/unknwn-uuid.c: New file.
3477         * lib/servprov-uuid.c: New file.
3478
3479 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3480
3481         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3482         enum.
3483
3484 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3485
3486         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3487
3488 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3489
3490         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3491         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3492         wingdi.h defines.
3493
3494 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3495
3496         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3497         duplicate defines.
3498
3499         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3500         removal.
3501         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3502
3503 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3504
3505         * configure.in: Update to newer autoconf.
3506         (thanks to Steve Ellcey)
3507         * configure: Regenerate.
3508         * aclocal.m4: New file.
3509
3510 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3511
3512         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3513
3514 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3515
3516         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3517         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3518         as macros.
3519         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3520
3521 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3522
3523         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3524         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3525         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3526         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3527         (MprAdminMIBSetTrapInfo): Declare functions.
3528         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3529         (MIB_SERVER_HANDLE): New typedef.
3530         (MprConfigTransportSetInfo): Declare function.
3531         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3532         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3533
3534 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3535
3536         * lib/rtutils.def: New file. Generated on Windows XP.
3537         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3538         * include/rtutils.h: New file.
3539         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3540         Commented out, they're missing from rtutils.def.
3541
3542 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3543
3544         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3545         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3546         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3547         (MprInfoRemoveAll): Declare functions.
3548
3549 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3550
3551         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3552         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3553         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3554         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3555         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3556         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3557         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3558         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3559         (MprConfigServerConnect,MprConfigServerDisconnect)
3560         (MprConfigServerGetInfo,MprConfigServerInstall)
3561         (MprConfigServerRestore,MprConfigTransportCreate)
3562         (MprConfigTransportDelete,MprConfigTransportEnum)
3563         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3564         (MprConfigTransportSetInfo): Declare functions.
3565
3566 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3567
3568         * include/mprapi.h (MprAdminBufferFree)
3569         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3570         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3571         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3572         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3573         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3574         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3575         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3576         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3577         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3578         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3579         (MprAdminInterfaceTransportSetInfo)
3580         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3581         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3582         (MprAdminServerConnect,MprAdminServerDisconnect)
3583         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3584         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3585         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3586
3587 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3588
3589         * include/ipxtfflt.h: New file.
3590
3591 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3592
3593         * include/mprapi.h: Fix header guard. Cleanup.
3594         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3595         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3596         (MprAdminConnectionHangupNotification)
3597         (MprAdminConnectionHangupNotification2)
3598         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3599         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3600         (MprAdminReleaseIpAddress): Declare functions.
3601         * lib/mprapi.def: Regenerate on Windows XP.
3602
3603 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3604
3605         * include/ipifcons.h: Cleanup.
3606         * include/ipxconst.h: Fix header guard.
3607         * include/ipxrtdef.h: include <ipxconst.h>.
3608
3609 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3610
3611         * include/ipxrtdef.h: Cleanup.
3612         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3613         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3614         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3615         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3616         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3617         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3618         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3619         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3620         * include/routprot.h: Cleanup.
3621         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3622         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3623         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3624         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3625         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3626         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3627         * include/fltdefs.h: New file.
3628         * include/ipinfoid.h: New file.
3629
3630 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3631
3632         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3633         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3634         (IAMCertifiedOutputProtection): Add interfaces.
3635         * include/adsprop.h: New file.
3636         * include/cmnquery.h: New file.
3637         * include/dsadmin.h: New file.
3638         * include/dsclient.h: New file.
3639         * include/dsgetdc.h: New file.
3640         * include/dsquery.h: New file.
3641         * include/dsrole.h: New file.
3642         * include/ntdsapi.h: New file.
3643         * include/ntdsbcli.h: New file.
3644         * include/objsel.h: New file.
3645
3646 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3647
3648         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3649         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3650         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3651         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3652         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3653         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3654         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3655         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3656
3657 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3658
3659         * include/qedit.h: New file.
3660         * include/errors.h: Cleanup.
3661
3662 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3663
3664         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3665         avoid dependency on <string.h>.
3666         There's no Win32 equivalent for memcmp:
3667         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3668
3669 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3670
3671         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3672         instead of memset to avoid dependency on <string.h>.
3673         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3674         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3675         (AM_WST_STYLE): Add enums.
3676         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3677         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3678         structures.
3679         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3680         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3681         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3682         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3683         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3684         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3685         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3686         (VFW_E_DVD_NO_RESUME_INFORMATION)
3687         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3688         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3689         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3690         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3691         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3692         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3693         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3694         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3695         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3696         * include/strmif.h: ... to here. New file.
3697         * include/aviriff.h: New file.
3698         * include/bdatypes.h: New file.
3699         * include/control.h: New file.
3700         * include/dvdmedia.h: New file.
3701         * include/il21dec.h: New file.
3702         * include/ks.h: New file.
3703         * include/ksmedia.h: New file.
3704         * include/mmreg.h: New file.
3705         * include/mpegtype.h: New file.
3706         * include/vidcap.h: New file.
3707         * include/vmr9.h: New file.
3708         * include/vptype.h: New file.
3709         * include/xprtdefs.h: New file.
3710
3711 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3712
3713         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3714         Documented as defined on Windows 2000 or later.
3715         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3716         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3717         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3718         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3719         but values unknown, Windows Vista or later.
3720         (CAL_UMALQURA): Cleanup.
3721         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3722         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3723         (CAL_SSHORTESTDAYNAME7): Cleanup.
3724         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3725         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3726
3727 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3728
3729         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3730         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3731         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3732         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3733         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3734         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3735         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3736         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3737         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3738         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3739         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3740         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3741         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3742         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3743         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3744         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3745         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3746         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3747         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3748         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3749         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3750         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3751         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3752         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3753         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3754         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3755         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3756         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3757         (DMDFO_CENTER): Define.
3758         (GetDCBrushColor,GetDCPenColor): Declare.
3759         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3760
3761 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3762
3763         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3764         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3765         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3766         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3767         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3768         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3769         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3770         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3771         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3772         (LANG_DARI,LANG_MALAGASY)
3773         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3774         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3775         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3776         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3777         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3778         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3779         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3780         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3781         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3782         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3783         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3784         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3785         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3786         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3787         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3788         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3789         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3790         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3791         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3792         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3793         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3794         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3795         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3796         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3797         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3798         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3799         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3800         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3801         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3802         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3803         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3804         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3805         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3806         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3807         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3808         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3809         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3810         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
3811         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
3812         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
3813         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
3814         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
3815         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
3816         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
3817         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
3818         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
3819         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3820         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
3821         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
3822         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
3823         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
3824         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
3825         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
3826         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
3827         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
3828         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
3829         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
3830         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
3831         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
3832         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
3833         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
3834         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
3835         (SUBLANG_MARATHI_INDIA): Defined twice by error.
3836
3837 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3838
3839         * lib/directx/Makefile.in: Remove reference to libquartz.a since
3840         it was moved.
3841
3842 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
3843
3844         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
3845         SPI_SETSCREENSAVERUNNING.
3846         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
3847
3848 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3849
3850         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
3851         It had been removed because it's no documented, but Cygwin needs it.
3852
3853 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3854
3855         * include/amvideo.h (IFullScreenVideo): Define.
3856         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
3857         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
3858
3859 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3860
3861         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
3862         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
3863         as available on Windows 98 and better.
3864         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3865         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3866         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
3867
3868 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3869
3870         * include/amvideo.h: New file.
3871         * include/dshow.h: Include <amvideo.h>.
3872
3873 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3874
3875         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
3876         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
3877         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
3878         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
3879         (HWND_BROADCAST): Cleanup.
3880         (HWND_MESSAGE): Windows 2000 only.
3881         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
3882         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
3883         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
3884         (SIF_ALL): Cleanup.
3885         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
3886         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
3887         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
3888         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
3889         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
3890         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
3891         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
3892         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
3893         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
3894         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
3895         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
3896         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3897         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3898         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3899         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3900         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3901         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3902         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
3903         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
3904         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
3905         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
3906         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
3907         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
3908         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
3909         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
3910         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
3911         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
3912         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
3913         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
3914         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
3915         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
3916         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
3917         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
3918         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
3919         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
3920         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
3921         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
3922         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
3923         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
3924         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
3925         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
3926         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
3927         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
3928         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
3929         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
3930         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
3931         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
3932         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
3933         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
3934         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
3935         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
3936         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
3937         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
3938         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
3939         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
3940         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
3941         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
3942         (SPI_SCREENSAVERRUNNING): Removed.
3943         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
3944         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
3945         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
3946         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
3947
3948 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3949
3950         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
3951         (MprAdminGetPDCServer): Add prototype.
3952         (MprAdminSendUserMessage): Add prototype.
3953         (MprAdminUserGetInfo): Add prototype.
3954         (MprAdminUserSetInfo): Add prototype.
3955         * lib/mprapi.def: Add stubs for above functions.
3956
3957 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3958
3959         * lib/directx/quartz.def: Move from here...
3960         * lib/quartz.def: ... to here.
3961
3962 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3963
3964         * include/amaudio.h: New file.
3965         * include/dshow.h: Include <amaudio.h>.
3966
3967 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3968
3969         * include/errors.h: New file.
3970         * include/dshow.h: Include <errors.h>.
3971
3972 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3973
3974         * include/dshow.h: New file.
3975         * include/evcode.h: New file.
3976         * include/audevcod.h: New file.
3977         * include/dvdevcod.h: New file.
3978
3979 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3980
3981         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
3982         (MprAdminConnectionClearStats): Add prototype.
3983         (MprAdminConnectionEnum): Add  prototype.
3984         (MprAdminConnectionGetInfo): Add prototype.
3985         (MprAdminConnectionRemoveQuarantine): Add prototype.
3986         (MprAdminPortClearStats): Add prototype.
3987         (MprAdminPortDisconnect): Add prototype.
3988         (MprAdminPortEnum): Add prototype.
3989         (MprAdminPortGetInfo): Add prototype.
3990         (MprAdminPortReset): Add prototype.
3991         * lib/mprapi.def: New file.
3992
3993 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3994
3995         *  include/mprapi.h: #include <lmcons.h>
3996         (MAX_DEVICETYPE_NAME): Add define.
3997         (MAX_PHONE_NUMBER_LEN): Add define.
3998         (ATADDRESSLEN): Add define.
3999         (IPADDRESSLEN): Add define.
4000         (IPXADDRESSLEN): Add define.
4001         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4002         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4003         (RAS_FLAGS_PPP_CONNECTION): Add define.
4004         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4005         (RAS_FLAGS_RAS_CONNECTION): Add define.
4006         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4007         (RASCCPCA_STAC): Add define.
4008         (RASCCPCA_MPPC): Add define.
4009         (PPP_CCP_COMPRESSION): Add define.
4010         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4011         (PPP_CCP_ENCRYPTION40BIT): Add define.
4012         (PPP_CCP_ENCRYPTION128BIT): Add define.
4013         (PPP_CCP_ENCRYPTION56BIT): Add define.
4014         (PPP_CCP_HISTORYLESS): Add define.
4015         (RASPRIV_NoCallback): Add define.
4016         (RASPRIV_AdminSetCallback): Add define.
4017         (RASPRIV_CallerSetCallback): Add define.
4018         (RASPRIV_DialinPrivilege): Add define.
4019         (RASPRIV_CallbackType): Add define.
4020         (RASPRIV2_DialinPolicy): Add define.
4021         (PPP_LCP_PAP): Add define.
4022         (PPP_LCP_SPAP): Add define.
4023         (PPP_LCP_CHAP): Add define.
4024         (PPP_LCP_EAP): Add define.
4025         (PPP_LCP_CHAP_MD5): Add define.
4026         (PPP_LCP_CHAP_MS): Add define.
4027         (PPP_LCP_CHAP_MSV2): Add define.
4028         (PPP_LCP_MULTILINK_FRAMING): Add define.
4029         (enum _RAS_HARDWARE_CONDITION): Add.
4030         (enum _RAS_PORT_CONDITION): Add.
4031         (struct _PPP_ATCP_INFO): Add.
4032         (struct _PPP_ATCP_INFO): Add.
4033         (struct _PPP_IPCP_INFO): Add.
4034         (struct _PPP_IPCP_INFO2): Add.
4035         (struct _PPP_IPXCP_INFO): Add.
4036         (struct _PPP_LCP_INFO): Add.
4037         (struct _PPP_NBFCP_INFO): Add.
4038         (struct _PPP_INFO): Add.
4039         (struct _PPP_INFO_2): Add.
4040         (struct _RAS_CONNECTION_0): Add.
4041         (struct RAS_CONNECTION_1): Add.
4042         (struct _RAS_CONNECTION_2): Add.
4043         (struct RAS_PORT_0): Add.
4044         (struct _RAS_PORT_1): Add.
4045         (struct _RAS_USER_0): Add.
4046         (struct _RAS_USER_1): Add.
4047
4048 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4049
4050         * include/mprapi.h: New file.
4051         * include/routprot.h: New file.
4052         * include/ipxrtdef.h: New file.
4053         * include/ipxconst.h: New file.
4054         * include/stm.h: New file.
4055
4056 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4057
4058         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4059         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4060
4061 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4062
4063         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4064         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4065         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4066         versions.
4067         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4068
4069 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4070
4071         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4072         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4073
4074 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4075
4076         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4077
4078 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4079
4080         * include/basetyps.h (REFFMTID): Define properly.
4081
4082 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4083
4084         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4085         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4086
4087 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4088
4089         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4090         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4091         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4092         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4093         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4094         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4095         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4096         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4097         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4098         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4099         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4100         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4101         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4102         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4103         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4104         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4105         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4106         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4107         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4108         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4109         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4110         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4111         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4112         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4113         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4114         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4115         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4116         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4117         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4118         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4119         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4120         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4121         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4122         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4123         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4124         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4125         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4126         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4127         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4128         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4129         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4130         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4131         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4132         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4133         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4134         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4135         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4136         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4137         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4138         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4139         (IF_OPER_STATUS_OPERATIONAL): Define.
4140         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4141         Add function declaration.
4142         * include/mgm.h: New file.
4143         * lib/rtm.def: New file.
4144         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4145
4146 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4147
4148         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4149         This function cannot be made thread-safe, the API would have to be
4150         changed for that, just like strerror() -> strerror_r() and similar
4151         ISO C or POSIX functions...
4152
4153 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4154
4155         * include/edevdefs.h: New file.
4156
4157 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4158
4159         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4160         Use as guard for the WAVEFORMATEX structure instead of
4161         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4162         _WAVEFORMATEX_ for compatibility.
4163         Thanks to:    Andrew Jones <guln at sf dot net>
4164
4165 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4166
4167         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4168         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4169         Thanks to:    David Golub <david_golub at sf dot net>
4170
4171 2006-04-18  Eric House  <ehouse@eehouse.org>
4172
4173         PocketPC support.
4174         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4175         functions for using aygshell on PocketPC:
4176         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4177         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4178
4179         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4180         command bar API on PocketPC:
4181         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4182         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4183         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4184         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4185         CommandBar_InsertButton, CommandBar_Destroy.
4186
4187         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4188         fields not present on PocketPC.
4189         (GetCurrentThreadId): Conditionally declare as extern function
4190         without dllimport attribute on PocketPC.
4191         (ResetEvent): Likwise.
4192         (SetEvent): Likewise.
4193
4194         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4195         Conditionally declare as extern function without dllimport
4196          attribute on PocketPC.
4197         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4198         declare as extern function without dllimport attribute on PocketPC.
4199
4200 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4201
4202         * lib/test.c: Include icm.h.
4203
4204 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4205
4206         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4207         (CreateColorSpace): Add UNICODE mappings.
4208         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4209         * include/icm.h: New file.
4210         * lib/mscms.def: New file.
4211         * lib/icmui.def: New file.
4212
4213 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4214
4215         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4216         (IMAGE_FILE_MACHINE_AMD64): New define.
4217         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4218         New defines.
4219         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4220         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4221         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4222         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4223         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4224         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4225         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4226         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4227         New defines.
4228         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4229         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4230         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4231         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4232         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4233         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4234         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4235         definitions and typedefs.
4236         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4237         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4238         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4239         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4240         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4241         New structure definition and typedefs.
4242         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4243         Likewise.
4244         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4245
4246 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4247
4248         * lib/test.c: Fix typo in #inlcude.
4249         * include/aclui.h: INTERFACE should not remain
4250         defined at the end of the header.
4251         * include/servprov.h: Ditto.
4252
4253 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4254
4255         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4256
4257 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4258
4259         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4260
4261 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4262
4263         * include/wsahelp.h (system_header): Add pragma.
4264         * include/ws2spi.h (system_header): Add pragma.
4265         * include/rasdlg.h (system_header): Add pragma.
4266         * include/rasdlg.h (_RASDLG_H): Define.
4267         Define instead of _RASDLG_H_, this is the w32api standard.
4268         * include/mlang.h (_MLANG_H): Define.
4269         Define instead of _MLANG_H_, this is the w32api standard.
4270         * include/setupapi.h (_SETUPAPI_H): Define.
4271         Define instead of _SETUPAPI_H_, this is the w32api standard.
4272
4273 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4274
4275         * include/rpcndr.h (boolean): Add typedef.
4276         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4277         * include/rpcndr.h (_RPCNDR_H): Define.
4278         Define in addition to __RPCNDR_H__, this is the w32api standard.
4279
4280 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4281
4282         * include/w32api.h: Increment version to 3.7.
4283         * Makefile.in: Ditto.
4284
4285 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4286
4287         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4288         GET_MODULE_HANDLE_EX_FLAG_PIN,
4289         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4290         Thanks to:    Brandon Sneed <brandon at redf dot net>
4291
4292 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4293
4294         * include/secext.h: Enclose function declarations in extern "C"
4295         if __cplusplus.
4296
4297 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4298
4299         * include/comcat.h: INTERFACE should not remain defined
4300         at the end of the header.
4301         * include/docobj.h: Ditto.
4302         * include/exdisp.h: Ditto.
4303         * include/intshcut.h: Ditto.
4304         * include/mlang.h: Ditto.
4305         * include/mshtml.h: Ditto.
4306         * include/oaidl.h: Ditto.
4307         * include/objidl.h: Ditto.
4308         * include/objsafe.h: Ditto.
4309         * include/ocidl.h: Ditto.
4310         * include/oleacc.h: Ditto.
4311         * include/oledlg.h: Ditto.
4312         * include/oleidl.h: Ditto.
4313         * include/richole.h: Ditto.
4314         * include/shldisp.h: Ditto.
4315         * include/shlobj.h: Ditto.
4316         * include/unknwn.h: Ditto.
4317         * include/vfw.h: Ditto.
4318         Thanks to:    Brandon Sneed <brandon at redf dot net>
4319
4320 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4321
4322         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4323         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4324         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4325
4326 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4327
4328         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4329         here also.
4330
4331 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4332
4333         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4334         We should probably remove PROV_MS_MAIL but I'm keeping it for
4335         now for compatibility reasons.
4336         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4337
4338 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4339
4340         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4341         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4342         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4343
4344 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4345
4346         * include/wingdi.h [WINVER >= 0x0410]
4347         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4348         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4349
4350 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4351
4352         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4353         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4354         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4355         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4356         (L_MAX_URL_LENGTH): Define.
4357         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4358         Thanks to:    Brandon Sneed <brandon at redf dot net>
4359
4360 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4361
4362         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4363
4364 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4365
4366         * include/w32api.h (_W32API_H): Define.
4367         Define in addition to _W32API_H_, this is the w32api standard.
4368
4369 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4370
4371         * include/w32api.h (WindowsVista): Define.
4372
4373 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4374
4375         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4376         on SOCKET_ADDRESS only if winsock2.h has already been included.
4377
4378 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4379
4380         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4381
4382 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4383
4384         * include/iphlpapi.h (GAA_FLAG_*): Define.
4385         (GetAdaptersAddresses): Add function declaration.
4386         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4387         Thanks to:    ross <rossboulet at users dot sf dot net>
4388
4389 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4390
4391         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4392         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4393         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4394         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4395         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4396         SCOPE_LEVEL): Add enums.
4397         (IP_ADAPTER_*): Define.
4398
4399 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4400
4401         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4402         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4403
4404 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4405
4406         * include/objidl.h (PIDSI_*): Define.
4407         (PRSPEC_*): Define.
4408         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4409
4410 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4411
4412         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4413         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4414         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4415         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4416         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4417
4418 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4419
4420         * include/mq.h: New file.
4421         * lib/mqrt.def (MQ*): Define a few missing functions.
4422
4423 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4424
4425         * lib/mqrt.def: New file.
4426         Needs the mq.h file to work properly, working on it.
4427         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4428
4429 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4430
4431         * include/winerror.h (STG_E_*):  Define.
4432         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4433         * include/winerror.h (STG_S_*): Define.
4434         (CO_S_MACHINENAMENOTFOUND): Define.
4435         (RPC_E_*): Define.
4436         (NTE_*): Define.
4437
4438 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4439
4440         * include/commctrl.h (ListView_*):  Define and correct.
4441         (LVM_*): Define.
4442
4443 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4444
4445         * include/winuser.h (WM_IME_*): Define (DWORD type).
4446         (EM_*IMESTATUS): Define.
4447         (WM_*): Define.
4448         (XBUTTON*): Define.
4449         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4450
4451 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4452
4453         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4454         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4455
4456 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4457
4458         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4459         version conditional.
4460
4461 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4462
4463         * include/winspool.h (JOB_INFO_3): Add structure.
4464         (PROVIDOR_INFO_*{AW}): Add structure.
4465         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4466         (PRINTER_ENUM_VALUES{AW}): Add structure.
4467         (PRINTPROCESSOR_CAPS): Add structure.
4468
4469 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4470
4471         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4472         (PRINTER_INFO_7A): Correct definition.
4473
4474 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4475
4476         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4477         (DRIVER_INFO_*{AW}): Add structure.
4478         (PRINTER_INFO_*{AW}): Add structure.
4479         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4480
4481 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4482
4483         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4484         (DRIVER_*MODE): Define (DWORD type).
4485         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4486
4487 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4488
4489         * include/wincon.h (GetConsoleProcessList): Declare.
4490
4491 2006-03-27  Hansres Engel  <engel@node.ch>
4492
4493         * include/mlang.h: New file.
4494
4495 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4496
4497         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4498
4499 2006-03-26  Hansres Engel  <engel@node.ch>
4500
4501          Add Uniscribe API for typography and for complex scripts.
4502         * include/usp10.h: New file.
4503         * lib/usp10.def: New file.
4504
4505         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4506
4507         * include/imm.h (IMECHARPOSITION): Add structure.
4508         (RECONVERTSTRING): Likwise.
4509
4510         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4511
4512         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4513         (IMLangFontLink2): Likewise.
4514         (IMultiLanguage): Likewise.
4515
4516 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4517
4518         * include/wincon.h  (ENABLE_*): Add more defines.
4519
4520 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4521
4522         * include/winnt.h (INHERITED_ACE): Define.
4523         (VALID_INHERIT_FLAGS): Correct definition.
4524
4525 2006-03-18  Peter Åstrand  <astrand@cendio.se>
4526
4527          * lib/wtsapi32.def: New file.
4528
4529 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4530
4531         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4532         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4533
4534 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4535
4536         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4537         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4538         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4539         (DSPRINT_*): Define (DWORD type).
4540         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4541
4542 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4543
4544         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4545         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4546
4547 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4548
4549         * include/shellapi.h [_WIN32_IE >= 0x0600]
4550         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4551         Windows XP SP1 and Windows XP respectively.
4552
4553 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4554
4555         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4556         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4557         * include/shellapi.h [_WIN32_IE >= 0x0500]
4558         (NIS_*): Introduced in Version 5.0.
4559
4560 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4561
4562         * include/wingdi.h (CS_*): Correct WINVER guard on
4563         Image Color Matching colour definitions.
4564
4565 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4566
4567         * include/shlobj.h (SFGAO_ISSLOW): Define.
4568         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4569         attribute constants.
4570
4571 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4572
4573         * include/wingdi.h [WINVER >= 0x0500]
4574         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4575         Thanks to: David A. Capello <dacap at users dot sf dot net>
4576
4577 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4578
4579         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4580         (INTERNET_STATE_*): Define flags.
4581         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4582
4583 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4584
4585         * include/sddl.h: New file.
4586
4587 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4588
4589         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4590         last change.
4591         Remove file level #pragma pack(push,4)/#pragma pop.
4592
4593 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4594
4595         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4596         value to force correct alignment.
4597
4598 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4599
4600         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4601         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4602         (PNM_CACHEHINT): Add backward compatibilty define.
4603         (LPNM_CACHEHINT): Likewise.
4604
4605 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4606
4607         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4608
4609 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4610
4611         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4612         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4613         * lib/shell32.def (PathResolve): Define.
4614
4615 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4616
4617         * include/shlobj.h (PathResolve): Fix typo.
4618
4619 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4620
4621         * include/shlobj.h (PathResolve): Define.
4622         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4623         PRF_DONTFINDLNK): Ditto.
4624         * lib/shell32.def (PathResolve): Define.
4625
4626 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4627
4628         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4629
4630 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4631
4632         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4633         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4634         (NotifyRouteChange@8): Define.
4635
4636 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4637
4638         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4639         prototypes.
4640
4641 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4642
4643         * include/winnt.h (FORCEINLINE): Define.
4644
4645 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4646
4647         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4648
4649 2006-01-26  Filip Navara  <xnavara@volny.cz>
4650
4651         * include/winnt.h (DECLSPEC_ALIGN): Define.
4652
4653 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4654
4655         * include/commctrl.h: Correct spelling of 'compatibility' in
4656         comments.
4657         * include/setupapi.h: Likewise.
4658         * include/ws2tcpip.h: Likewise.
4659
4660 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4661
4662         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4663
4664 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4665
4666         WATCOM compatibility changes.
4667         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4668         rather than __attribute__.
4669         (DECL_EXPORT): Likewise.
4670         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4671         (DDKFASTAPI): Likewise.
4672         (DDKCDECLAPI): Likwise.
4673         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4674
4675 2006-01-23  Brandon Sneed  <brandon@redf.net>
4676
4677         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4678         to exports.
4679
4680 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4681
4682         * include/w32api.h: Increment version to 3.6.
4683         * Makefile.in: Ditto.
4684
4685 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4686
4687         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4688         advapi32.dll functions.
4689
4690 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4691
4692         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4693         names for padding size constants.
4694
4695 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4696
4697         * include/aclapi.h (WINADVAPI): Add to prototypes.
4698         * include/winreg.h (WINADVAPI): Likewise.
4699         * include/winsvc.h (WINADVAPI): Likewise.
4700
4701 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4702
4703         * include/winbase.h (WINADVAPI): Define.
4704
4705 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4706
4707         * include/winuser.h (CreateWindowStation): Correctly identify first
4708         argument as constant.
4709         (CreateWindowStation@): Ditto.
4710
4711 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4712
4713         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4714         (TMT_*, BT_*): Add constants.
4715
4716 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4717
4718         * include/winsock2.h: Don't define struct sockaddr_storage when
4719         building Cygwin.
4720
4721 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4722
4723         * lib/ws2_32.c: New file, defining IPv6 constants.
4724         * lib/Makefile.in (SOURCES): Add ws2_32.c
4725         (EXTRA_OBJS): Add ws2_32.o.
4726
4727 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4728
4729         * lib/user32.def (PrivateExtractIconsA@32,
4730         PrivateExtractIconsW@32): Define.
4731         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4732
4733 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4734
4735         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4736
4737 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4738
4739         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4740
4741 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4742             Danny Smith <dannysmith@users.sourceforge.net>
4743
4744         * lib/msxml-uuid.c: New file to generate UUIDs for
4745         MSXML interfaces.
4746         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4747
4748 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4749
4750         * include/winbase.h (GetDevicePowerState): Add prototype.
4751         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4752
4753 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4754
4755         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4756         Define as macro if !_WIN64.
4757         (SetClassLongPtr{AW}): Likewise.
4758         (GCLP_*): Add GetClassLongPtr defines.
4759         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4760         (SetClassLongPtr{AW}): Likewise.
4761
4762 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4763
4764         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4765         (SetClassLongPtr{AW}): Likewise.
4766         (GCLP_*): Add GetClassLongPtr defines.
4767         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4768         (SetClassLongPtr{AW}): Likewise.
4769
4770 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4771
4772         * include/commdlg.h (OPENFILENAMEW): Add members for
4773         _WIN32_WINNT >= 0x0500.
4774         Thanks to Ricardo Dalcorsso Fodra.
4775         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4776
4777 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4778
4779         * include/wingdi.h (GetICMProfileA): Correct prototype.
4780         (GetICMProfileW): Likewise.
4781         Thanks to: Paul J Lucas
4782
4783 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4784
4785         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4786
4787 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4788
4789         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4790         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4791         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4792         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4793
4794 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4795
4796         * include/objbase.h: Fix typo.
4797         * include/w32api.h: Increment version to 3.5.
4798         * Makefile.in: Ditto.
4799
4800 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4801
4802         * include/w32api.h: Increment version to 3.4.
4803         * Makefile.in: Ditto.
4804
4805 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4806
4807         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4808         Use _WIN32_WINNT >= 0x0501 guard.
4809
4810 2005-10-11  Christopher Faylor  <cgf@timesys.com>
4811
4812         * include/winbase.h (GetProcessId): Declare.
4813
4814 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4815
4816         * lib/ddk/newdev.def: Added.
4817         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
4818
4819 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4820
4821         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
4822         component.
4823         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
4824
4825 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4826
4827         * lib/shell32.def (SHILCreateFromPath): Add stub.
4828         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
4829
4830 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4831
4832         * include/winbase.h (RegisterWaitForSingleObject,
4833         RegisterWaitForSingleObjectEx): Define.
4834         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
4835         (RegisterWaitForSingleObject@16): Changed to
4836         RegisterWaitForSingleObject@24.
4837         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
4838
4839 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
4840
4841         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
4842         Thanks to: Gisle Vanem  <giva at bgnett dot no>
4843
4844 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4845
4846         * include/reason.h [_WIN32_WINNT >= 0x0501]
4847         (SHTDN_REASON_*): New file.
4848         * include/objbase.h: Avoid double header guard.
4849
4850 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
4851
4852         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
4853         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
4854         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
4855
4856 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4857
4858         * include/shlobj.h (IContextMenu3): Define.
4859         * include/shlguid.h (IID_IContextMenu3): Declare.
4860         * lib/shell32.c (IID_IContextMenu3): Define.
4861
4862 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4863
4864         * include/shlobj.h (SHFormatDrive): Declaration of function
4865         and associated constants.
4866
4867 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4868
4869         * include/ddk/hidsdi.h:  New file.
4870         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
4871         functions declared in hidsdi.h.
4872         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
4873
4874 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4875
4876         * lib/imm32.def (ImmDisableIME): Add stub.
4877         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
4878
4879 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4880
4881         * include/w32api.h: Increment version to 3.3.
4882         * Makefile.in: Ditto.
4883
4884 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
4885
4886         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
4887         Correct their values.
4888         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
4889
4890 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4891
4892         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
4893
4894 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4895
4896         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
4897         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
4898
4899 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4900
4901         * include/richedit.h (SETTEXTEX): Define structure and
4902         associated constants.
4903         (GT_SELECTION): Define GETTEXTEX flag constant.
4904
4905 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4906
4907         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
4908
4909 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4910
4911         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
4912         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
4913         prototypes.
4914
4915 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4916
4917         * include/commctrl.h (RBBS_USECHEVRON): Define.
4918         (RBBS_*): Use hex notation, group together.
4919
4920 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4921
4922         * lib/kernel32.def (GetUserGeoID): Correct suffix.
4923         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
4924
4925 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4926
4927         * include/commctrl.h (TreeView_SetItemState): Initilise
4928         _tvi.hItem.
4929         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
4930
4931 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
4932
4933         * include/commctrl.h (NMLVFINDITEM): Add structure.
4934
4935 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4936
4937         * include/wininet.h (WININET_API_FLAG_*): Add defines.
4938
4939 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
4940
4941         * include/winnt.h (VER_SET_CONDITION): Define.
4942
4943 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4944
4945         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
4946         (ATTACH_PARENT_PROCESS): Define.
4947         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
4948         documentation.
4949
4950 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4951
4952         * include/winbase.h (QueueUserWorkItem): Add prototype.
4953
4954 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4955
4956         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
4957         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
4958         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
4959         CM_CMYK_COLOR): Define.
4960
4961 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
4962
4963         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
4964         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
4965         Thanks to: Christian  <chhd at users dot sf dot net>
4966
4967 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4968
4969         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
4970         field.
4971         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
4972
4973 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4974
4975         * include/winbase.h (GlobalDiscard): Define as macro.
4976         Thanks to: David Golub  <david_golub  at users dot sf dot net>
4977
4978 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
4979
4980         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
4981         (WNetGetResourceParentW): Ditto.
4982         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
4983         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
4984
4985 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
4986
4987         * include/wininet.h (FtpGetFileSize): Add prototype.
4988         (FtpCommand[AW]): Correct prototypes.
4989         Reported by: <siger at users dot sf dot net>
4990
4991 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
4992
4993         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
4994         (capGetDriverDescription[AW]): Likewise.
4995
4996 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
4997
4998         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
4999         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5000         (SE_IMPERSONATE_NAME TEXT): Ditto.
5001         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5002         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5003
5004 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5005
5006         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5007         change.
5008
5009 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5010
5011         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5012         Thanks to:
5013         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5014
5015 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5016
5017         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5018         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5019         (gai_strerror[AW]): Put into #if 0 block.
5020
5021 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5022
5023         * include/basetyps.h (__int16): Correct define.
5024
5025 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5026             Danny Smith  <dannysmith@users.sourceforge.net>
5027
5028         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5029         define for Open Watcom portability.
5030         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5031         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5032         of local c_rgodfDI* objects. Replace .rdata section attribute
5033         with 'const' keyword in definition of global c_dfDI* objects.
5034
5035 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5036
5037         * include/winioctl.h (IOCTL_VOLUME_BASE,
5038         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5039         Copy defines from include/ddk/ntdddvol.h.
5040         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5041
5042 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5043
5044         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5045
5046 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5047
5048         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5049         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5050
5051 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5052
5053         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5054
5055 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5056
5057         * lib/user32.def (MonitorFromPoint): Correct suffix.
5058
5059 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5060
5061         * include/wininet.h (InternetCheckConnectionA,
5062         InternetCheckConnectionW) Add prototypes.
5063         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5064         INTERNET_CONNECTION_CONFIGURED): Add defines.
5065
5066 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5067
5068         * include/commctrl.h (ComboBox_SetMinVisible,
5069         ComboBox_GetMinVisible): Added Macros.
5070         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5071         Added definitions.
5072
5073 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5074
5075         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5076         assembly code conditional on _X86_.
5077
5078 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5079
5080         * include/w32api.h: Increment version to 3.2.
5081         * Makefile.in: Ditto.
5082         * include/afxres.h: Remove the \r from the line ending.
5083         * include/errorrep.h: Ditto.
5084         * include/shldisp.h: Ditto.
5085         * include/tschema.h: Ditto.
5086         * lib/dhcpcsvc.def: Ditto.
5087         * lib/uxtheme.def: Ditto.
5088         * lib/wldap32.def: Ditto.
5089
5090 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5091
5092         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5093         Correct typo.
5094         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5095
5096 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5097
5098         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5099         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5100         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5101         SPI_GETFOREGROUNDLOCKTIMEOUT,
5102         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5103         *include/imm.h (WM_IME_REQUEST): Added definition.
5104         *include/shlobj.h (SLGP_RAWPATH,
5105         SLGP_UNCPRIORITY): Added definition.
5106
5107 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5108
5109         *include/winuser.h (HSHELL_FLASH): Added definition.
5110
5111 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5112
5113         * include/shldisp.h (IAutoComplete): Added interface definiton.
5114         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5115         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5116         * include/shlobj.h (IObjMgr): Added interface definiton.
5117         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5118         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5119         CLSID_ACListISF, IID_IACList): Added GUIDs.
5120         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5121         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5122         CLSID_ACListISF, IID_IACList): Added GUIDs.
5123
5124 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5125
5126         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5127         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5128         (CDRF_*): Use hex notation for constants.
5129
5130 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5131
5132         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5133         Reported by Eric Sharkey <sharkey at netrics dot com>
5134
5135 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5136
5137         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5138         TokenGroupsAndPrivileges, TokenSessionReference,
5139         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5140         Reformat.
5141         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5142         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5143
5144 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5145
5146         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5147         ImageList_Duplicate): Add stubs.
5148
5149 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5150
5151         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5152         Thanks to "Pete" <pross@xvid.org>
5153
5154 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5155
5156         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5157         AC_DST_NO_ALPHA, ...): Add defines.
5158         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5159         ULW_OPAQUE): Add defines.
5160
5161 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5162
5163         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5164         guard.
5165         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5166         suffix.
5167         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5168
5169 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5170
5171         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5172         (CreateProcessWithLogonW): Declare.
5173         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5174         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5175
5176 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5177
5178         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5179         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5180
5181 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5182
5183         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5184         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5185
5186 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5187
5188         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5189
5190 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5191
5192         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5193         Add defines.
5194         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5195
5196 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5197
5198         * include/shellapi.h (NIF_GUID): Add another define.
5199
5200 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5201
5202         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5203         Changed it twice due to inconsistent MSDN documentation.
5204         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5205
5206 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5207
5208         * include/shlobj.h (SHGFP_TYPE): Add enum.
5209
5210 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5211
5212         * include/winuser.h (WM_THEMECHANGED): Add define.
5213
5214 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5215
5216         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5217         ExFreeToPagedLookasideList): Guard inline versions with
5218         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5219         external functions for earlier _WIN32_WINNT.
5220
5221 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5222
5223         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5224
5225 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5226
5227         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5228         if  undefined and __W32API_USE_DLLIMPORT__.
5229         Add WINBASEAPI token to prototypes, throughout.
5230
5231 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5232
5233         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5234         (GetFiberData): Likewise.
5235         (NtCurrentTeb): Likewise.
5236
5237 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5238
5239         * include/shellapi.h (NIF_INFO): Add define.
5240         (NIIF_*) Add defines..
5241         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5242         (NIF_*): Convert constants to hex.
5243
5244 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5245
5246         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5247         GetGlyphIndicesW): Declare.
5248         (GGI_MARK_NONEXISTING_GLYPHS): Define
5249         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5250         GetGlyphIndicesW): Add stubs.
5251
5252 2004-10-24  Dan Aloni  <da-x@colinux.org>
5253
5254         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5255         ZwQueryFullAttributesFile): Declare.
5256         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5257         Declare.
5258         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5259         ZwQueryVolumeInformationFile): Add stubs.
5260
5261 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5262
5263         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5264         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5265
5266 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5267             Danny Smith  <dannysmith@users.sourceforge.net>
5268
5269         * include/winbase.h (InitializeSListHead, Interlocked*):
5270         Guard with !__USE_NTOSKRNL__.
5271
5272         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5273         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5274         Guard with  __USE_NTOSKRNL__.
5275         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5276         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5277         && _WIN32_WINNT >= 0x0501
5278         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5279         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5280         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5281         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5282
5283         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5284         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5285         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5286         ExWindowStationObjectType, IoAdapterObjectType,
5287         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5288         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5289         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5290         Uncomment stubs.
5291
5292 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5293
5294         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5295         definition
5296         (IoReleaseRemoveLock): Add definition.
5297
5298 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5299
5300         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5301         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5302         Add prototypes.
5303         * include/winddk.h (ExInterlockedAddUlong,
5304         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5305         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5306         ExInterlockedPushEntryList): Change calling convention to
5307         DDKAPI.
5308         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5309         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5310         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5311         Add prototypes for DDKFASTAPI versions.
5312         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5313         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5314         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5315         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5316         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5317         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5318         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5319         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5320         Add fastcall stubs.
5321         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5322         Exi386InterlockedIncrementLong); Add stdcall stubs.
5323
5324 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5325
5326         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5327          if __W32API_USE_DLLIMPORT__ is defined.
5328         * include/winuser.h (WINUSERAPI): Likewise.
5329
5330 2004-09-29  Filip Navara  <xnavara@volny.cz>
5331
5332         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5333         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5334         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5335         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5336         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5337         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5338         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5339         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5340         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5341         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5342         winnt4.h, ws2san.h): Fixed packing.
5343         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5344         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5345         HID_INTERFACE_NOTIFY_PNP): Likewise.
5346         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5347         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5348         <ayerkes@speakeasy.net>.
5349         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5350         declaration.
5351         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5352         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5353         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5354         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5355         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5356         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5357         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5358         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5359         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5360         (SYNCH_LEVEL): Added definition.
5361         (KPCR, KPCR_TIB): Fixed declaration.
5362         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5363         included and _WIN32_WINNT >= 0x0501.
5364         (RtlEqualLuid): Fixed macro definition.
5365         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5366         KeRaiseIrql on i386 architectures.
5367
5368 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5369
5370         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5371         declaration.
5372         (IHTMLSelectionObject): Correct get_type declaration.
5373         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5374         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5375         IHTMLBodyElement2): Add interfaces.
5376         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5377         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5378         typedefs.
5379         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5380         Add IIDs.
5381
5382 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5383
5384         * include/w32api.h: Increment version to 3.1.
5385         * Makefile.in: Ditto.
5386
5387 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5388
5389         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5390         MonitorFromWindow): Add prototypes.
5391         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5392         MonitorFromWindowMonitorFromWindow): Add stubs.
5393         * include/shellapi.h (DuplicateIcon): Add prototype.
5394
5395 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5396
5397         * include/winuser.h (WINUSERAPI): New define.
5398         Use it to mark user32.dll imports, throughout.
5399
5400 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5401
5402         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5403         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5404         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5405         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5406         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5407         HidD_GetPreparsedData, HidD_GetProductString,
5408         HidD_GetSerialNumberString, HidD_SetConfiguration,
5409         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5410         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5411
5412 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5413
5414         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5415         Add XP defines.
5416         (PCOORD): Add typedef.
5417         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5418
5419 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5420
5421         * include/winldap.h: Don't check value of UNICODE.
5422         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5423
5424 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5425
5426         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5427
5428 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5429
5430         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5431         guard.
5432
5433 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5434
5435         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5436
5437 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5438
5439         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5440
5441 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5442
5443         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5444
5445 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5446
5447         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5448
5449 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5450
5451         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5452         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5453         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5454         Add defines.
5455         (CALG_SHA1): Add define.
5456         (HP_HMAC_INFO): Add define.
5457         (HMAC_INFO): Add struct.
5458         (BLOBHEADER): Add typedef.
5459
5460 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5461
5462         * include/commctrl.h (TreeView_SetItemState): Define macro.
5463
5464 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5465
5466         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5467         macros together.
5468
5469 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5470
5471         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5472         (FILEGROUPDESCRIPTOR): LIkewise.
5473
5474 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5475
5476         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5477
5478 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5479
5480         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5481         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5482         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5483         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5484         (IMAGE_ORDINAL): Map to ...
5485         (IMAGE_ORDINAL{32,64}: New defines.
5486         (IMAGE_THUNK_DATA):  Map to ...
5487         (IMAGE_THUNK_DATA{32,64}: New structures.
5488         (IMAGE_THUNK_DATA): Map to ...
5489         (IMAGE_THUNK_DATA{32,64}: New structures.
5490         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5491         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5492         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5493         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5494
5495 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5496
5497         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5498         _WIN32_WINNT >= 0x0500.
5499
5500 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5501
5502         * include/winbase.h (GetWriteWatch): Correct prototype.
5503         (WRITE_WATCH_FLAG_RESET): Define.
5504         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5505
5506 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5507
5508         * include/commctrl.h (Animate_OpenEx): Define.
5509         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5510         (ListView_GetNumberOfWorkAreas): Correct macro.
5511         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5512         ListView_SetItemCountEx, ListView_GetISearchString,
5513         TreeView_GetLastVisible, Header_CreateDragImage,
5514         Header_SetImageList, Header_GetImageList): Define.
5515         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5516         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5517         TBSTATE_ELLIPSES): Define.
5518         (MonthCal_SetRange): Correct macro.
5519         (ImageList_Duplicate): Declare.
5520
5521 2004-05-29  Filip Navara  <xnavara@volny.cz>
5522
5523         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5524
5525 2004-05-25  Al Slater  <al.slater@scluk.com>
5526
5527         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5528         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5529
5530 2004-05-15  Filip Navara  <xnavara@volny.cz>
5531
5532         * include/ddk/kbdmou.h: New file.
5533         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5534         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5535         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5536         _vsnwprintf, sprintf, swprintf): Export.
5537
5538 2004-05-15  Filip Navara  <xnavara@volny.cz>
5539
5540         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5541         headers.
5542
5543 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5544
5545         * include/wingdi.h: Correct non-unicode typedefs of
5546         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5547
5548 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5549
5550         * include/winsock.h (IN_CLASSA): Fix macro.
5551         * include/winsock2.h (IN_CLASSA): Fix macro.
5552
5553 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5554
5555         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5556         * include/aclui.h: Remove '\r', throughout.
5557         * include/msacm.h: Likewise.
5558         * lib/aclui.def: Likewise.
5559
5560 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5561
5562         * lib/comctl32.def (SetWindowSubclass): Add stub.
5563         Thanks to Eugene <egladysh@users.sourceforge.net>.
5564
5565 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5566
5567         * include/winbase.h (EXECUTION_STATE): Add typedef.
5568         (SetThreadExecutionState): Declare.
5569         * include/wingdi.h (_WINGDI_): Define.
5570         * include/objbase.h (_OBJBASE_H_): Define.
5571
5572 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5573
5574         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5575         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5576         (SM_CMETRICS): Adjust value.
5577         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5578         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5579         Add defines.
5580         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5581
5582 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5583
5584         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5585         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5586         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5587         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5588         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5589         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5590
5591 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5592
5593         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5594         DNSREC_ADDITIONAL): Add defines.
5595
5596 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5597
5598         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5599
5600 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5601
5602         * include/aclui.h: New file.
5603         * lib/aclui.def: New file.
5604         * lib/test.c: Add aclui.h to includes.
5605
5606 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5607
5608         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5609         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5610         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5611
5612 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5613
5614         * include/wingdi.h: Protect non-unicode case of below.
5615
5616 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5617
5618         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5619         LPENUMLOGFONTEXDV with appropriate version check.
5620
5621 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5622
5623         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5624         DSPROPSETID_DirectSoundDevice): Add defines.
5625
5626 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5627
5628         * include/msacm.h: New file.
5629
5630 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5631
5632         * include/objbase.h (STGFMT): Declare enum.
5633         (STGOPTIONS): Declare structure.
5634         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5635         (STGOPTIONS_VERSION): Define.
5636         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5637
5638 2004-04-13  Filip Navara  <xnavara@volny.cz>
5639
5640         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5641         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5642         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5643         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5644         HELP_SETWINPOS): Define.
5645         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5646         (SPI_*): Add new definitions for WINVER >= 0x500.
5647         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5648         (InternalGetWindowText, SetWindowsHookW): Declare.
5649         * include/winbase.h (InitializeSListHead): Avoid conflicting
5650         definition with DDK headers.
5651
5652 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5653
5654         * include/winuser.h (GetLastError): Move from here...
5655         * include/winbase.h: ... to here.
5656
5657 2004-04-13  Filip Navara  <xnavara@volny.cz>
5658
5659         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5660
5661 2004-04-13  Filip Navara  <xnavara@volny.cz>
5662
5663         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5664         WINVER >= 0x400.
5665         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5666         (ENUMLOGFONTEXW): Fix definition.
5667         (ENUMLOGFONTEXDV[AW]): Declare.
5668
5669 2004-04-13  Filip Navara  <xnavara@volny.cz>
5670
5671         * include/wingdi.h: Declare the DirectDraw structures only if
5672         the DirectDraw kernel mode headers aren't included.
5673         (EMFINFO): Declare.
5674         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5675         STROBJ_bEnumPositionsOnly): Correct prototypes.
5676
5677 2004-04-13  Filip Navara  <xnavara@volny.cz>
5678
5679         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5680         * include/rpc.h (RPCRTAPI): Define.
5681         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5682         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5683         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5684         (I_RpcBindingSetAsync): Correct prototype.
5685         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5686         to w2kReserved.
5687         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5688         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5689         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5690         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5691         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5692         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5693         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5694         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5695         NdrUserMarshalFree): Declare.
5696         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5697         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5698
5699 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5700
5701         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5702         LPC_MESSAGE_BASE_SIZE): Define.
5703         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5704
5705 2004-04-13  Filip Navara  <xnavara@volny.cz>
5706
5707         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5708         Declare.
5709
5710 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5711
5712         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5713         MONITORINFO when compiling as C++.
5714
5715 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5716
5717         * README.w32api: List separate copyright conditions for some headers.
5718         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5719
5720 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5721
5722         * include/wingdi.h (RGB): Correct macro.
5723
5724 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5725
5726         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5727
5728 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5729
5730         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5731
5732 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5733
5734         * lib/Makefile.in: Add directx to .PHONY target.
5735         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5736         Don't include stdio.h or tchar.h.
5737         Replace _T() macro with TEXT() macro, throughout.
5738         Replace _stprintf with wsprintf, throughout.
5739
5740 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5741
5742         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5743         Add define.
5744         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5745         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5746         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5747
5748 2004-03-27  Filip Navara  <xnavara@volny.cz>
5749
5750         * include/directx: New subdir.
5751         * lib/directx: Ditto.
5752         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5753         dxerr9.h): New files.
5754         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5755         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5756         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5757         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5758         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5759         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5760         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5761         strmiids.c, test.c): Ditto.
5762         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5763         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5764
5765 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5766
5767         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5768         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5769         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5770
5771 2004-03-24  Filip Navara  <xnavara@volny.cz>
5772
5773         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5774         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5775
5776 2004-03-24  Filip Navara  <xnavara@volny.cz>
5777
5778         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5779         TaggedQueueing to TaggedQueuing.
5780         (_HW_INITIALIZATION_DATA): Likewise.
5781
5782 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5783
5784         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5785         prototype.
5786         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5787
5788 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5789
5790         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5791         (MmMapIoSpace): Likewise.
5792         Thanks to Dan Aloni  <da-x@colinux.org>
5793
5794 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5795
5796         * include/shellapi.h (NIM_* NIS_*): Define constants for
5797         notification icons with _WIN32_IE >= 0x0500.
5798         (NOTIFYICONDATA): Add new structure members for notification
5799         icons with _WIN32_IE >= 0x0500.
5800
5801 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5802
5803         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5804         Add defines.
5805         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5806         (GROUPID) Add typedef.
5807         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5808         (CreateUrlCacheGroup): Add prototype.
5809         (DeleteUrlCacheGroup): Add prototype.
5810         (FindFirstUrlCacheGroup): Add prototype.
5811         (FindNextUrlCacheGroup): Add prototype.
5812         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
5813         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
5814
5815 2004-03-10  Al Slater  <al.slater@scluk.com>
5816
5817         * include/winsock2.h: Add missing LPFN_ typdefs for
5818         function pointers.
5819         Clean up whitespace.
5820
5821 2004-03-05  Filip Navara  <xnavara@volny.cz>
5822
5823         * include/ddk/scsi.h: Replace assert with ASSERT.
5824         * include/ddk/video.h: Ditto.
5825         * include/ddk/winddk.h: Ditto. Remove the assert macro.
5826         * include/ddk/tdi.h: Correct packing.
5827
5828 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
5829
5830         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
5831         NONAMELESSUNION case.
5832
5833 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
5834
5835         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
5836         __VARIANT_NAME_ constants.
5837
5838 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5839
5840         * include/uxtheme.h: Include <commctrl.h>
5841
5842 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5843
5844         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
5845
5846 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
5847
5848         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
5849         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
5850         together.
5851         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
5852         (V_I8, V_I8REF): Correct macros.
5853         (V_DECIMAL): Correct macro definitions.
5854         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
5855         constants.
5856         (VTBIT_*): Define constants.
5857         (UDATE): Add structure definition.
5858         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
5859         functions.
5860         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
5861         (SafeArrayCreateVectorEx): Declare function.
5862         (Var*): declare VARIANT manipulation functions.
5863         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
5864         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
5865         macros.
5866
5867 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
5868
5869         * include/oaidl.h (FADF_*): Define missing constants.
5870         (IDispatch_*): Define COBJ macros.
5871         (VARIANT): Add missing union members llVal and ullVal.
5872         (wireVARIANT): Likewise.
5873         (ITypeinfo_*): Define COBJ macros.
5874         * include/oleauto.h (Var*FromDisp): Correct parameter type from
5875         LPDISPATCH* to LPDISPATCH.
5876         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
5877         VAR_CALENDAR_*): Add missing constants.
5878         (SafeArray[Get/Set]*): Add prototypes.
5879         (Var*From*):  Add missing prototypes.
5880         (NUMPRS_*): Add defines.
5881         (NUMPARSE): Define structure.
5882         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
5883         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
5884         * include/winuser.h (COLOR_*): Define missing constants.
5885         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
5886         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
5887
5888 2004-02-23  Filip Navara  <xnavara@volny.cz>
5889
5890         * include/ddk/video.h: Corrected packing.
5891
5892 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5893
5894         * include/GL/glu.h (GLU_ERROR): Define.
5895         Thanks to Philip Lamb  <phil at rave dot co dot nz>
5896
5897 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5898
5899         * include/GL/glu.h: Include <stddef.h>.
5900         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
5901
5902 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
5903
5904         * include/w32api.h: Increment version to 3.0.
5905         * Makefile.in: Ditto.
5906         * README.win32api: Modify license to Public Domain per agreement as
5907         found in the mingw-dvlpr list archive.
5908
5909 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
5910
5911         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
5912         (DIRECTORY_TRAVERSE): Ditto.
5913         (DIRECTORY_CREATE_OBJECT): Ditto.
5914         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
5915         (DIRECTORY_ALL_ACCESS): Ditto.
5916         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
5917
5918 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
5919
5920         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
5921
5922         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
5923         Thanks to Mike Nordell <tamlin at algonet dot se>.
5924
5925 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5926
5927         * lib/dnsapi.def: New file.
5928         * lib/test.c: Include windns.h.
5929
5930 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
5931
5932         * include/windns.h: New file.
5933
5934 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5935
5936         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
5937         defines.
5938         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
5939         (SQLSetDescFieldW): Correct prototype.
5940         (SQLSetDescFieldA): Add prototype.
5941         (SQLGetDescFieldW): Add prototype.
5942
5943 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
5944
5945         * include/winuser.h (DFC_POPUPMENU): Add define.
5946
5947 2004-02-07  Dan Aloni  <da-x@gmx.net>
5948
5949         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
5950         suffix.
5951
5952 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5953
5954         * include/oleacc.h (LIBID_Accessibility): Declare.
5955         * lib/uuid.c (LIBID_Accessibility): Define.
5956
5957 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5958
5959         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
5960         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
5961
5962 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5963
5964         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
5965         defines.
5966
5967 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
5968
5969         * include/winuser.h (RT_MANIFEST): Make conditional on
5970         RC_INVOKED.
5971         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
5972         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
5973         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
5974         defines.
5975
5976 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
5977
5978         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
5979
5980 2004-01-15  Filip Navara  <xnavara@volny.cz>
5981
5982         * include/ddk/mcd.h: Don't care about value of DBG define.
5983         * include/ddk/srb.h: Ditto.
5984         * include/ddk/storport.h: Ditto.
5985         * include/ddk/video.h: Ditto.
5986         * include/nspapi.h (SetServiceW, GetAddressByNameA,
5987         GetAddressByNameW): Correct protoype.
5988         * include/ntsecapi.h (PCUNICODE_STRING): Define.
5989
5990 2004-01-05  Filip Navara  <xnavara@volny.cz>
5991
5992         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
5993         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
5994         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
5995         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
5996         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
5997         FOF_NOCOPYSECURITYATTRIBS): Add defines.
5998         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
5999         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6000         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6001         SSF_*): Add defines.
6002         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6003         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6004         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6005         Correct.
6006         (IEnumIDList): Add COBJMACROS.
6007         * include/winuser.h (MIM_*): Add define.
6008
6009 2004-01-04  Filip Navara  <xnavara@volny.cz>
6010
6011         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6012         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6013         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6014         PERSIST_FOLDER_TARGET_INFO): Define structures.
6015         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6016         IPersistFolder2, IPersistFolder3): Add COM interface
6017         definitions.
6018         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6019         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6020         Add COBJMACROS.
6021         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6022         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6023         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6024
6025 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6026
6027         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6028         declarations.
6029         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6030
6031 2004-01-03  Filip Navara  <xnavara@volny.cz>
6032
6033         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6034         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6035         declare IID's.
6036         (IErrorInfo): Add COBJMACROS.
6037         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6038         (CoGetPSClsid): Add protototype,
6039         (CoRegisterPSClsid): Likewise.
6040         * include/objidl.h (IMarshal): Correct methods.
6041         (IMallocSpy): Likewise,
6042         (LPPSFACTORYBUFFER): Add typedef.
6043         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6044         IID.
6045         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6046         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6047         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6048         structures.
6049         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6050         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6051         IQuickActivate): Define interfaces. Declare IID's.
6052         (IPersistPropertyBag2): Add COBJMACROS.
6053         (LPOLEUNDOMANAGER): Add typedef.
6054         (LPPROPERTYBAG2): Likewise.
6055         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6056         (BINDSPEED): Add definition.
6057         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6058         IDropTarget): Add COBJMACROS.
6059         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6060         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6061         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6062         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6063         Add IID definitions.
6064
6065 2004-01-02  Filip Navara  <xnavara@volny.cz>
6066
6067         * include/ddk/winddk.h: Don't care about value of
6068         DBG define.
6069
6070 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6071             Filip Navara  <xnavara@volny.cz>
6072
6073         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6074         _DDK_DUMMYUNION_N_MEMBER): New macros.
6075         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6076         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6077         Use them.
6078
6079 2004-01-01  Filip Navara  <xnavara@volny.cz>
6080
6081         * include/objbase.h: Don't care about value of DBG define.
6082         * include/objidl.h: Add some COBJMACROS.
6083         * include/ocidl.h: Ditto.
6084         * include/oleidl.h: Ditto.
6085         * include/servprov.h: Ditto.
6086         * include/shlobj.h: Ditto.
6087         * include/shlobj.h (IContextMenu2): Correct parent in
6088         DECLARE_INTERFACE.
6089         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6090         Define interfaces.
6091         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6092         Add new constants for _SETUPAPI_VER >= 0x501.
6093
6094 2004-01-01  Filip Navara  <xnavara@volny.cz>
6095
6096         * include/winnt.h (NtCurrentTeb): Add inline definition.
6097
6098 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6099
6100         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6101         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6102
6103 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6104
6105         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6106         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6107         * include/ddk/cfg.h (DN_*): Add defines.
6108
6109 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6110
6111         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6112
6113 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6114
6115         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6116         (NMTVGETINFOTIP): Add structure.
6117
6118 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6119
6120         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6121         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6122         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6123
6124 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6125
6126         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6127         Add macros.
6128         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6129         constants.
6130         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6131         (SHCOLUMNDAT): Likwise.
6132         (SHCOLUMNID): Likewise.
6133         (SHCOLUMNINFO): Likewise.
6134         (SHCOLSTATE): Add enum.
6135         (IColumnProvider): Add COM interface.
6136         (IQueryInfo): Likewise.
6137         (IShellIconOverlayIdentifier): Likewise.
6138         * include/shlguid.h (IID_IColumnProvider) Declare.
6139         (IID_IQueryInfo): Likweise.
6140         (IID_IShellIconOverlayIdentifier): Likwise.
6141         * lib/shell32.c (IID_IColumnProvider) Define.
6142         (IID_IQueryInfo): Likweise.
6143         (IID_IShellIconOverlayIdentifier): Likwise.
6144
6145 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6146
6147         * include/winuser.h (RT_MANIFEST): Add define.
6148
6149 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6150
6151         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6152
6153 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6154
6155         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6156         (GetFiberData): Likewise.
6157         (GetCurrentFiber): Change volatile to __volatile__.
6158         (GetFiberData): Likewise.
6159
6160 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6161
6162         * lib/Makefile.in: Use make function to locate .mri file to allow
6163         building in directory other than source directory.
6164
6165 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6166
6167         * lib/vfw32.def: Remove, replacing with ...
6168         * lib/msvfw32.def: New file.
6169         * lib/avicap32.def: New file.
6170         * lib/avifil32.def: New file.
6171         * lib/vfw32.mri: New file.
6172         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6173         import libs with multiple dll's.
6174         (LIBS): Add MIMPLIBS.
6175         (DISTFILES): Add MRI_FILES.
6176         (libvfw32.a): Build using mri script.
6177
6178 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6179
6180         * include/winnt.h (PAGE_*): Group defines together. Change
6181         constants to hex notation.
6182
6183 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6184
6185         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6186
6187 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6188
6189         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6190         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6191         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6192         Add prototypes.
6193         * lib/shell32.def: Add stubs.
6194
6195         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6196         compiler warnings.
6197
6198 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6199
6200         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6201
6202 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6203
6204         * include/windows.h (CopyCursor): Define as macro.
6205
6206 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6207
6208         * include/winnt.h (CONTAINING_RECORD): Add macro.
6209
6210 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6211
6212         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6213         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6214         defines.
6215
6216 2003-10-13  Filip Navara  <xnavara@volny.cz>
6217
6218         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6219         defines for Dynamic Storage Arrays.
6220         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6221         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6222         and defines for Flat ScrollBars.
6223         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6224         DefSubclassProc): Add prototypes for subclassing.
6225         (DrawShadowText): Add prototype.
6226         (COMCTL32_VERSION): Define.
6227
6228 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6229
6230         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6231         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6232
6233 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6234
6235         * include/winnt.h (SM_REMOTESESSION): Add define.
6236         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6237
6238 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6239
6240         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6241         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6242         duplicate definitions.
6243         (KP_X, KP_Y): Correct typos.
6244
6245 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6246
6247         * include/afxres.h: New file.
6248
6249         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6250         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6251         ENM_SCROLLEVENTS): Add constants.
6252
6253         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6254
6255 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6256
6257         * include/errorep.h: New file.
6258
6259         * lib/faultrep.def: New file.
6260
6261 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6262
6263         * include/winbase.h (AddVectoredExceptionHandler): Define if
6264         _WIN32_WINNT >= 0x0500.
6265
6266         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6267         _WIN32_WINNT >= 0x0500.
6268
6269 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6270
6271         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6272         _WIN32_WINNT >= 0x0501.
6273
6274 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6275
6276         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6277         UnregisterWaitEx): Add functions.
6278
6279         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6280         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6281         or guard function. The MSDN says it is available on Windows XP and
6282         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6283         Huh?
6284
6285         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6286         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6287         ZombifyActCtx, QueryActCtxW): Add functions.
6288
6289         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6290         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6291         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6292         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6293
6294         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6295         SetFirmwareEnvironmentVariable[AW]): Add functions.
6296
6297         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6298         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6299         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6300         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6301         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6302
6303         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6304         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6305
6306         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6307         (ACTIVATION_CONTEXT_INFO_CLASS,
6308         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6309         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6310         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6311         Add structures.
6312
6313         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6314         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6315         SetFileShortName[AW], SetFileValidData,
6316         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6317         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6318
6319 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6320
6321         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6322         ResetWriteWatch): Add function.
6323
6324         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6325         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6326         Add functions.
6327
6328         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6329         (GetSystemWow64Directory[AW], HeapQueryInformation,
6330         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6331         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6332         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6333         RemoveVectoredExceptionHandler): Add functions.
6334
6335         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6336         Add enumeration.
6337
6338         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6339         Add function.
6340
6341         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6342         Add function. The MSDN Magazine of June 2003 reads:
6343                 RestoreLastError is an enigma. It's code is identical to
6344                 SetLastError. It's unclear to me why it was made into a
6345                 separate API.
6346
6347         * lib/user32.def (GetSystemWindowsDirectory[AW],
6348         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6349         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6350         InterlockedFlushSList, InterlockedPopEntrySList,
6351         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6352         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6353         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6354         RestoreLastError): Add functions.
6355
6356 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6357
6358         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6359         GetProcessIoCounters): Add functions.
6360
6361         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6362         Move around, needed by GetComputerNameEx.
6363
6364         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6365         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6366         Add functions.
6367
6368         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6369         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6370
6371         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6372         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6373         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6374         Windows XP SP1 and better.
6375
6376         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6377         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6378         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6379         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6380         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6381         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6382         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6383         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6384         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6385
6386         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6387         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6388         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6389         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6390         Add functions.
6391
6392 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6393
6394         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6395         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6396         DebugSetProcessKillOnExit): Add functions.
6397
6398         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6399         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6400         DnsHostnameToComputerName[AW]): Add functions.
6401
6402         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6403         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6404         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6405
6406 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6407
6408         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6409         on Windows XP and later.
6410
6411 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6412
6413         * include/commctrl.h (TreeView_Select): Returns BOOL.
6414
6415 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6416
6417         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6418
6419         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6420         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6421
6422         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6423         CreateTimerQueueTimer): Add function.
6424
6425         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6426         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6427
6428         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6429         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6430
6431         * include/winnt.h (WT_*): Add constants.
6432
6433         * lib/user32.def (CancelDeviceWakeupRequest,
6434         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6435         DeactivateActCtx): Add functions.
6436
6437 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6438
6439         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6440         Add function. Sometimes I don't understand MSDN. This function is
6441         available on Windows XP and Server 2003, but the SDK is supposed to
6442         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6443         Mmmh...
6444
6445         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6446         Guard function. Same remark as above.
6447
6448         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6449         Add functions.
6450
6451 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6452
6453         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6454         Add constants.
6455
6456         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6457         structures.
6458
6459         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6460         function. MSDN says the first argument is HACTCTX but I'm not sure
6461         where such a specialized handle is defined, so use HANDLE instead.
6462
6463         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6464         CheckNameLegalDOS8Dot3[AW]): Add functions.
6465
6466         * lib/user32.def (ActivateActCtx, AttachConsole,
6467         CheckNameLegalDOS8Dot3[AW]): Add functions.
6468
6469         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6470         Unfortunately I don't know which header to put the declarations in.
6471
6472 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6473
6474         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6475         Add constants.
6476
6477         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6478         constants for National Language Support.
6479
6480         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6481         Language Support.
6482
6483         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6484         Language Support.
6485
6486         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6487         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6488         Add functions.
6489
6490         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6491         functions. Strange... I am unable to find which library contains
6492         these functions. Can't find anything with pexports. Any clue?
6493
6494         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6495         SetUserGeoID): Add functions.
6496
6497 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6498
6499         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6500         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6501
6502         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6503         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6504         value for constants.
6505
6506 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6507
6508         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6509         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6510         the algorithms.
6511
6512 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6513
6514         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6515
6516 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6517
6518         * include/wincrypt.h (KP_*): Add constants. Needed by
6519         CryptSetKeyParam() and other functions.
6520
6521 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6522
6523         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6524         Add constants, related to Console Accessibility.
6525
6526 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6527
6528         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6529         wrong value for constant.
6530
6531 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6532
6533         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6534
6535         * include/uxtheme.h: Cleanup.
6536         * include/tmschema.h: Cleanup.
6537
6538 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6539
6540         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6541         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6542
6543 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6544
6545         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6546
6547 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6548
6549         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6550         both winuser.h and dbt.h.
6551         * include/dbt.h (BSF_*, BSM_*): Likewise.
6552
6553         * include/winuser.h (struct tagRAWINPUT): Remove
6554         _ANONYMOUS_UNION tag from named union.
6555         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6556
6557 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6558
6559         * include/dhcpcdsk.h: New file.
6560         Note that MSDN is confused about whether it should start constant
6561         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6562         experience suggests it's DHCPCAPI with `C'.
6563
6564         * lib/dhcpcsvc.def: New file.
6565
6566 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6567
6568         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6569         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6570
6571         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6572         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6573         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6574         for use in RAWINPUTDEVICE.
6575
6576         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6577         (GetRawInputDeviceInfo[AW]): Ooops... there are
6578         ANSI/Unicode versions of this function.
6579
6580         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6581         are ANSI/Unicode versions of this function.
6582
6583 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6584
6585         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6586         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6587         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6588         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6589         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6590         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6591         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6592         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6593         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6594         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6595         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6596         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6597         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6598         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6599         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6600         RIDI_DEVICEINFO): Add constants.
6601
6602         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6603         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6604         RAWINPUTDEVICELIST): Add structures.
6605
6606         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6607         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6608         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6609
6610         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6611         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6612         GetRegisteredRawInputDevices): Add functions.
6613
6614 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6615
6616         * include/winable.h (BlockInput): Add function.
6617
6618         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6619         For use with WINDOWINFO structure.
6620
6621         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6622         Add function.
6623
6624         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6625         Add function.
6626
6627         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6628         Add function...
6629
6630         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6631         ...and duplicate.
6632
6633         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6634         Guard function...
6635
6636         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6637         ...and duplicate.
6638
6639         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6640         Guard function...
6641
6642         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6643         ...and duplicate.
6644
6645         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6646         HARDWAREINPUT, INPUT): Guard structures...
6647
6648         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6649         HARDWAREINPUT, INPUT): ...and duplicate.
6650
6651         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6652         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6653
6654         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6655         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6656
6657         * include/winuser.h: Move around some lines. Reformat according
6658         to recommended or dominant style. Remove FAR keyword.
6659
6660         * include/winable.h: Move around some lines.
6661
6662         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6663         LockWorkStation, UnhookWinEvent): Add functions.
6664
6665 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6666
6667         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6668         PW_CLIENTONLY): Add function and constant.
6669
6670         * lib/user32.def (PrintWindow): Add function.
6671
6672 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6673
6674         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6675
6676         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6677
6678 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6679
6680         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6681         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6682         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6683
6684         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6685
6686 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6687
6688         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6689         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6690         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6691
6692         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6693         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6694         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6695
6696         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6697         Add function.
6698
6699         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6700         Add functions.
6701
6702 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6703
6704         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6705         ACE_OBJECT_TYPE_PRESENT): Add constants.
6706         For use with OBJECTS_AND_NAME structure.
6707
6708 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6709
6710         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6711         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6712         void* instead.
6713
6714         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6715         PINHERITED_FROM[AW]): Add structures.
6716
6717         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6718
6719 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6720
6721         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6722
6723 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6724
6725         * lib/version.def (LIBRARY): Quote name.
6726
6727 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6728
6729         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6730         and constants.
6731
6732         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6733         GR_USEROBJECTS): Add functions and constants.
6734
6735         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6736         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6737
6738         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6739         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6740         constants.
6741
6742         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6743         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6744
6745 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6746
6747         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6748         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6749         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6750         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6751         BSF_RETURNHDESK): Add functions and constants.
6752
6753         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6754         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6755
6756         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6757         GetProcessDefaultLayout, SetProcessDefaultLayout,
6758         RealChildWindowFromPoint, SetProcessDefaultLayout,
6759         SwitchToThisWindow): Add functions.
6760
6761         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6762         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6763         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6764         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6765         RealChildWindowFromPoint, SetProcessDefaultLayout,
6766         SwitchToThisWindow): Add function.
6767
6768 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6769
6770         * include/winuser.h (DeregisterShellHookWindow): Add function.
6771
6772         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6773
6774         * lib/user32.def (EndTask): Add function.
6775
6776         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6777         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6778
6779         * include/winable.h: Reorder target macros.
6780
6781         * lib/*.def: Cleanup.
6782
6783 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6784
6785         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6786         function.
6787
6788         * lib/user32.def (AnimateWindow): Add function. By the way
6789         there are ~ 140 symbols missing from this file when comparing
6790         to user32.dll on Windows XP.
6791
6792 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6793
6794         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6795         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6796         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6797         AnimateWindow().
6798
6799 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6800
6801         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6802         LPGUITHREADINFO): Add function and associated typedef...
6803
6804         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6805         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6806         seems to be required on older versions of Windows.
6807
6808 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6809
6810         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
6811         function. MSDN suggests using gluErrorUnicodeStringWIN
6812         instead of gluErrorString, as it allows both ANSI and Unicode
6813         error strings.
6814
6815         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
6816         returned pointer const for consistency reasons.
6817
6818 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6819
6820         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
6821         Function exists in glu32.def but is undocumented on MSDN.
6822         A Google search came up with this declaration.
6823
6824 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6825
6826         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
6827         headers from OpenGL Sample Implementation. Windows ships with
6828         GLU 1.2 so some constants and functions were removed. Then some
6829         typedef's and function declarations were reworked to look like
6830         the previous GL/glu.h.
6831
6832 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6833
6834         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
6835         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
6836         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
6837
6838         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
6839         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
6840         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
6841         and `enum THEMESIZE'.
6842
6843 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6844
6845         * include/uxtheme.h: New file.
6846         * include/tmschema.h: New file.
6847         * include/uxtheme.def: New file.
6848         * lib/test.c: Include uxtheme.h, tmschema.h.
6849
6850 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6851
6852         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
6853         Add defines.
6854
6855 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6856
6857         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6858         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
6859         <winable.h> as seems to be required on older versions of
6860         Windows.
6861
6862 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6863
6864         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
6865         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6866         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
6867         Add defines, the last one only on Windows XP...
6868
6869         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
6870         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6871         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
6872         them in <winable.h> as seems to be required on older
6873         versions of Windows.
6874
6875 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6876
6877         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
6878         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6879         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6880         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
6881         back into <winuser.h>...
6882
6883         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
6884         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6885         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6886         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
6887         comment out in <winable.h>. MSDN may say <winable.h> but this
6888         breaks many programs. It seems it used to be <winable.h> on
6889         older versions of Windows.
6890
6891 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
6892
6893         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
6894         Thanks to Will Levine  <willll@users.sourceforge.net>
6895
6896 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6897
6898         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
6899         const struct sockaddr*.
6900         (LPWSPCONNECT): Likewise.
6901         (LPWSPJOINLEAF): Likewise.
6902         (LPWSPSENDTO): Likewise.
6903         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
6904
6905 2003-09-15  Filip Navara  <xnavara@volny.cz>
6906
6907         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
6908         Add definitions.
6909
6910 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
6911
6912         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
6913         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
6914         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
6915         DISPLAY_DEVICE_MODESPRUNED): Define constants.
6916         (ChangeDisplaySettingsEx[A,W]): Add prototype.
6917
6918         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
6919         (EnumDisplayDevices[A,W]): Likewise.
6920
6921 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6922
6923         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
6924         throughout.
6925
6926 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6927
6928         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6929         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6930         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6931         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6932         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
6933         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6934         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6935         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
6936         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6937         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6938         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6939         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6940         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
6941         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6942         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6943         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
6944         with documentation.
6945         * include/olectl.h: Do #include <ocidl.h>.
6946         * include/ocidl.h: Don't #include <olectl.h>.
6947
6948 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6949
6950         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
6951         Change guards to use numeric constants, throughout.
6952
6953 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
6954
6955         * include/w32api.h: Increment version to 2.5.
6956         * Makefile.in: Ditto.
6957
6958 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
6959
6960         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
6961         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
6962
6963 2003-09-08  Filip Navara  <xnavara@volny.cz>
6964
6965         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
6966         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
6967
6968 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
6969
6970         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
6971         * include/winbase.h (_NT5, etc): Ditto.
6972
6973 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
6974
6975         * lib/snmpapi.def (LIBRARY) Add library name.
6976         Remove '\r', throughout.
6977         * lib/wsnmp32.def: Remove '\r', throughout.
6978         * lib/igmpagnt.def: Likewise.
6979
6980 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
6981
6982         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
6983         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
6984         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
6985         (MWMO_*): Add flags.
6986
6987         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
6988         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
6989         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
6990         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
6991
6992 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6993
6994         * lib/test.c: Add vfw.h to includes.
6995         * include/mmsystem.h: Add #ifndef guard to definition of
6996         mmioFOURCC macro.
6997         * include/vfw.h: Protect __OBJC__ from COM declarations.
6998
6999 2003-08-26  Filip Navara  <xnavara@volny.cz>
7000
7001         * include/vfw.h: New file.
7002
7003 2003-08-26  Filip Navara  <xnavara@volny.cz>
7004
7005         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7006         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7007         PIO_COMPLETION_ROUTINE.
7008
7009 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7010
7011         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7012         includes.
7013
7014 2003-08-26  Filip Navara  <xnavara@volny.cz>
7015
7016         * include/snmp.h: New file.
7017         * include/winsnmp.h: New file.
7018         * include/mgmtapi.h: New file.
7019         * lib/snmpapi.def: New file.
7020         * lib/wsnmp32.def: New file.
7021         * lib/igmpagnt.def: New file.
7022         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7023         (SnmpMgrGetTrapEx): Ditto.
7024         (SnmpMgrMIB2Disk): Remove.
7025         (dbginit): Remove.
7026
7027 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7028
7029         * include/ddk/ntifs.h: Change all C++ style comments to C.
7030         * include/GL/gl.h: Ditto.
7031
7032 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7033
7034         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7035         (SFGAO_HIDDEN): Add define.
7036
7037 2003-08-25  Filip Navara  <xnavara@volny.cz>
7038
7039         * include/commctrl.h (ILCF_*): Add defines.
7040         (ILD_*): Ditto.
7041         (HDS_*): Ditto.
7042         (IPN_FIRST, IPN_LAST): Cast to UINT.
7043         (SBN_FIRST, SBN_LAST): Add defines.
7044         (PGN_*): Ditto.
7045         (HDF_JUSTIFYMASK): Fix typo.
7046         (HDM_*): Add defines.
7047         (HICF_*): Ditto.
7048         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7049         (TBSTATE_MARKED): Add define.
7050         (TBSTYLE_EX_*): Add defines.
7051         (TBCDRF_*): Ditto.
7052         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7053         (TB_*): Ditto.
7054         (TBN_*): Ditto.
7055         (TBNRF_*): Ditto.
7056         (TTF_*): Ditto.
7057         (TBCD_*): Ditto.
7058         (TBDDRET_*): Ditto.
7059         (TBIMHT_*): Ditto.
7060         (TTM_*): Ditto.
7061         (UDM_*): Ditto.
7062         (TBIF_BYINDEX): Define as hex constant.
7063         (CDIS_*): Add defines.
7064         (CDDS_SUBITEM): Add define.
7065         (LVIF_*): Add defines.
7066         (LVM_*): Ditto.
7067         (LVGIT_UNFOLDED): Add define.
7068         (TVM_): Add defines.
7069         (TVE_EXPANDPARTIAL): Add define.
7070         (TVGN_LASTVISIBLE): Ditto.
7071         (TVN_*): Add defines.
7072         (TVNRET_*): Add defines.
7073         (TCIF_STATE): Add define.
7074         (NM_TOOLTIPSCREATED): Ditto.
7075         (CCM_*): Add defines.
7076         (INFOTIPSIZE): Add numeric value.
7077         (ODT_LISTVIEW): Ditto.
7078         (MCM_GETMAXTODAYWIDTH): Ditto.
7079         (MCHT_*): Add defines.
7080         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7081         (PGF_*): Add defines.
7082         (PGM_*): Ditto.
7083         (TBINSERTMARK): Add structure.
7084         (LPIMAGEINFO) Add typedef.
7085         (LPHDHITTESTINFO): Ditto.
7086         (NMLVGETINFOTIP[AW]: Add structures.
7087         (NMTBCUSTOMDRAW): Add structure.
7088         (TTTOOLINFOA_V*_SIZE): Add macros.
7089         (TTTOOLINFOW_V1_SIZE): Ditto.
7090         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7091         (LVITEM[AW]: Ditto.
7092         (TCITEM[AW]):Ditto.
7093         (CCSIZEOF_STRUCT): Correct macro definition.
7094         (ListView_*): Add new macros.
7095         (HIMAGELIST): Correct typedef.
7096         (HTREEITEM): Ditto.
7097
7098 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7099
7100         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7101         TCHITTESTINFO for backward compatibility.
7102         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7103         compatibility.
7104
7105 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7106
7107         * include/objidl.h (COBJMACROS): Define macros only
7108         if using C interace.
7109         * include/unknwn.h: Ditto.
7110         * include/comcat.h: Ditto.
7111
7112 2003-08-24  Filip Navara  <xnavara@volny.cz>
7113
7114         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7115         PSH_NOCONTEXTHELP): Define.
7116         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7117         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7118         (LPDLGTEMPLATE[AW]): Add typedefs.
7119
7120 2003-08-22  Filip Navara  <xnavara@volny.cz>
7121
7122         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7123         Add prototypes.
7124         BuildImpersonateTrustee[AW]): Add prototypes.
7125         GetMultipleTrustee[AW]): Add prototypes.
7126         GetMultipleTrusteeOperation[AW]): Add prototypes.
7127
7128 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7129
7130         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7131
7132 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7133
7134         * include/shlobj.h (IPersistFolder::GetClassID):
7135         Correct declaration.
7136         (CMF_*) Add missing defines.
7137
7138 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7139
7140         * include/winuser.h (DC_BUTTONS): Add define.
7141
7142 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7143
7144         * include/winuser.h (DC_GRADIENT): Add define.
7145
7146 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7147
7148         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7149         older TBSTYLE_* constants.
7150
7151 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7152
7153         * include/commctrl.h (TB_*) Group defines together.
7154
7155 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7156
7157         * include/winuser.h (ICON_SMALL2): Define.
7158         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7159         Define.
7160         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7161         (IDragSourceHelper) Define interface.
7162         (IDropTargetHelper): Likewise.
7163         (IExtractIcon): Unicode it.
7164         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7165         OnStateChange and IncludeObject methods.
7166
7167 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7168
7169         * include/commctrl.h (TreeView_GetScrollTime,
7170         TreeView_SetScrollTime): Define macros.
7171         * include/winuser.h (GetShellWindow): Add prototype.
7172         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7173
7174 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7175
7176         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7177         IID_IDragSourceHelper): Declare.
7178         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7179         IID_IDragSourceHelper): Define.
7180
7181 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7182
7183         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7184         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7185         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7186
7187 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7188
7189         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7190         CGID_ShellServiceObject): Remove definitions.
7191         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7192
7193 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7194
7195         * include/shlobj.h (SHELLSTATE): Add structure.
7196         (SHGetSetSettings): Add prototype.
7197         (SHGetSettings): Add prototype.
7198         * lib/shell32.def (SHGetSetSettings): Add stub.
7199
7200 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7201
7202         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7203         (Header_OrderToIndex): Add macro.
7204         (Header_GetOrderArray): Add macro.
7205
7206         * include/commdlg.h (FR_MATCHALEFHAMZA,
7207         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7208
7209 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7210
7211         * include/commctrl.h (TVM_GETSCROLLTIME,
7212         TVM_SETSCROLLTIME): Add defines.
7213
7214 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7215
7216         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7217         (SHGetInstanceExplorer): Correct return type.
7218         (SHGetFolderPath[AW]): Likewise.
7219         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7220         for report.
7221
7222 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7223
7224         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7225
7226 2003-08-01  Filip Navara  <xnavara@volny.cz>
7227
7228         * include/winldap.h: New file.
7229         * include/ntldap.h: New file.
7230         * include/winber.h: New file.
7231         * lib/winldap32.def: New file.
7232
7233 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7234
7235         * include/ddk/atm.h: Remove stray '.';
7236
7237 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7238
7239         * include/ddk/winddk.h: Remove trailing ';' from macros,
7240         throughout. Add () around defines with cast returns, throughout.
7241
7242 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7243
7244         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7245         (SFGAOF, SHGDNF): Add typedef's.
7246         (SHCONTF): Extend enum.
7247
7248 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7249
7250         * include/shellapi.h: Include all structs within pshpack2.h/
7251         poppack.h block.
7252
7253 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7254
7255         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7256         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7257         _WIN32_WINDOWS, not WINVER.
7258         (AllowSetForegroundWindow,LockSetForegroundWindow,
7259         SetLayeredWindowAttributes): Likewise.
7260         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7261         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7262         Add stubs.
7263
7264 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7265
7266         * include/objidl.h (IMalloc): Fix typo.
7267
7268 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7269
7270         * include/dkk/ntifs.h: Fix typo in guard for
7271         #pragma GCC system_header.
7272
7273 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7274
7275         * include/objidl.h (PropVariant): Add CHAR cVal field
7276         to union.
7277         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7278         FMTID_UserDefinedProperties): Declare.
7279
7280 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7281
7282         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7283
7284 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7285
7286         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7287         DUPLICATE_SAME_ACCESS): Remove defines.
7288         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7289         ddk/ntapi.h defines.
7290         (SEM_*) : Likewise.
7291         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7292         ddk/ntifs.h defines.
7293         (FILE_*): Likewise.
7294         (MEM_IMAGE, SEC_*): Likewise.
7295         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7296         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7297         (TOKEN_*): Sync with ddk/ntifs.h defines.
7298         * include/ddk/ntapi.h: Add comments noting definitions in
7299         winbase.h.
7300         * include/ddk/ntifs.h: Add comments noting definitions in
7301         winnt.h.
7302         * include/ddk/winddk.h: Add comments noting definitions in
7303         winnt.h.
7304
7305 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7306
7307         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7308         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7309
7310 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7311
7312         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7313
7314 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7315
7316         Clean up warnings in ddk.
7317
7318         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7319         conditional on  __cplusplus.
7320         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7321         defines, throughout.
7322         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7323         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7324         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7325         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7326         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7327         defines, throughout.
7328         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7329         defines, throughout. Remove trailing semicolon from *_S 'structure'
7330         macro expansion, throughout. Remove trailing semicolon from
7331         DECLARE_UNKNOWN_STRUCT macro expansion.
7332         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7333         _ANONYMOUS_UNION.
7334         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7335         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7336         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7337         Add _ANONYMOUS_UNION.
7338         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7339         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7340         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7341         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7342         match proto in ntapi.h.
7343         (ZwSetInformationObject): Likewise.
7344         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7345         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7346         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7347         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7348         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7349         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7350         last comma.
7351         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7352         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7353         trailing semicolon when expanding macro.
7354         (GENERAL_LOOKASIDE_S): Likewise.
7355         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7356         Change inline to __inline, throughout.
7357         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7358
7359 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7360
7361         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7362         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7363         KPRIORITY.
7364         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7365         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7366         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7367         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7368         to anonymous structs.
7369
7370 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7371
7372         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7373
7374         * include/winuser.h (mouse_event): Correct type of fifth param,
7375         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7376
7377 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7378
7379         * include/winnt.h (HANDLE): Define based on STRICT filter.
7380         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7381         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7382
7383 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7384
7385         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7386         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7387         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7388         for report.
7389
7390 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7391
7392         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7393
7394 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7395
7396         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7397         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7398         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7399         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7400         (TPM_RECURSE): Add guard for Win98/Win2K.
7401         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7402
7403 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7404
7405         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7406         avoid user namespace conflicts.
7407
7408 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7409
7410         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7411         _IE3, _IE4, _IE5, _IE6): Add definitions.
7412         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7413         >= Win98.
7414         Change existing guards to use the above macro names as appropriate.
7415         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7416         Note: Also added to mingw/include/_mingw.h.
7417
7418 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7419
7420         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7421         PathFindSuffixArrayA, PathFindSuffixArrayW,
7422         PathFindExtensionA, PathFindExtensionW, StrStrW
7423         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7424         explicit type.
7425
7426 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7427
7428         * include/richedit.h (PARAFORMAT2): Add definition.
7429         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7430         missing constants.
7431
7432 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7433
7434         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7435         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7436         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7437         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7438
7439 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7440
7441         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7442         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7443         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7444         that these are obsolete no-ops.
7445
7446 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7447
7448         * include/winbase.h (GetProcessWorkingSetSize,
7449         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7450         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7451         Correct prototypes.
7452
7453 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7454
7455         * include/winuser.h (TPM_RECURSE): Add define.
7456
7457 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7458
7459         * lib/test.c: #include <powrprof.h>.
7460
7461 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7462
7463         * include/powerprof.h: New file.
7464         * lib/powerprof.def: New file.
7465
7466 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7467
7468         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7469         protection.
7470
7471 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7472
7473         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7474         hInstance members to HINSTANCE.
7475         Thanks to: Brenden T. <brenden@rcsis.com>
7476
7477 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7478
7479         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7480         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7481
7482 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7483
7484         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7485         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7486         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7487         Remove.
7488         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7489
7490 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7491
7492         * lib/oleacc.def: New file.
7493         * include/winable.h: New file.
7494         * include/oleacc.h: Add extern "C" guard.
7495         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7496         (AccessibleChildren, AccessibleObjectFromEvent,
7497         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7498         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7499         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7500         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7501         * include/winuser.h (NotifyWinEvent): Add prototype.
7502         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7503         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7504         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7505         OBJID_SOUND): Move from here to...
7506         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7507         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7508         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7509         OBJID_SOUND): Here, as per documentation.
7510         * lib/test.c: Include winable.h.
7511         * lib/user32.def (NotifyWinEvent): Add missing export.
7512
7513 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7514
7515         * include/winbase.h (HeapCompact): Correct prototype.
7516         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7517         SLIST_HEADER): Add.
7518
7519 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7520
7521         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7522
7523 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7524
7525         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7526
7527 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7528
7529         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7530         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7531
7532 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7533
7534         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7535         lpGlyphs field to LPWSTR.
7536
7537 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7538
7539         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7540         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7541         (PP_*): Add defines.
7542         (CryptContextAddRef): Add prototype.
7543         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7544
7545 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7546
7547         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7548
7549 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7550
7551         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7552         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7553         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7554         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7555         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7556         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7557         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7558         readability.
7559         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7560         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7561
7562 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7563
7564         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7565         Unname anonymous unions if NONAMELESSUNION not defined.
7566
7567 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7568
7569         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7570
7571 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7572
7573         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7574         anonymous unions as GCC extension.
7575
7576 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7577
7578         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7579         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7580         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7581         commented out).
7582         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7583
7584 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7585
7586         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7587         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7588         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7589
7590 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7591
7592         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7593         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7594         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7595         IProvideClassInfo2,IConnectionPointContainer,
7596         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7597         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7598         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7599         IPicture,IPictureDisp): Move from here to...
7600         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7601         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7602         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7603         IProvideClassInfo2,IConnectionPointContainer,
7604         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7605         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7606         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7607         IPicture,IPictureDisp): Here, as per documentation.
7608
7609 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7610
7611         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7612         * include/winbase.h (TerminateJobObject,
7613         AssignProcessToJobObject): Likewise.
7614         * include/servprov.h: New header.
7615         * lib/test.c: Include servprov.h.
7616
7617 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7618
7619         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7620         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7621         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7622         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7623         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7624         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7625
7626 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7627
7628         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7629         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7630         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7631
7632 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7633
7634         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7635         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7636         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7637         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7638         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7639         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7640         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7641
7642 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7643
7644         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7645
7646 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7647
7648         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7649         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7650
7651 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7652
7653         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7654         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7655         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7656
7657 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7658
7659         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7660
7661 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7662
7663         * include/oaidl.h (ITypeMarshal): Add interface.
7664
7665 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7666
7667         * include/winioctl.h: Clean up formatting.
7668         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7669         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7670         (DISK_CACHE_INFORMATION): Likewise.
7671         (DISK_DETECTION_INFO): Likewise.
7672         (DISK_PARTITION_INFO): Likewise.
7673         (PARTITION_INFORMATION_EX): Likewise.
7674         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7675
7676 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7677
7678         * include/winbase.h (DeleteVolumeMountPoint[AW],
7679         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7680         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7681         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7682         SetVolumeMountPoint[AW]): Add prototypes.
7683         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7684         IOCTL_DISK_SET_PARTITION_INFO_EX,
7685         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7686         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7687         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7688         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7689         IOCTL_DISK_GET_CACHE_INFORMATION,
7690         IOCTL_DISK_SET_CACHE_INFORMATION,
7691         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7692         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7693         FSCTL_MOVE_FILE): Define.
7694         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7695         DISK_CACHE_INFORMATION,
7696         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7697         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7698         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7699         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7700         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7701         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7702         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7703         MOVE_FILE_DATA,
7704         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7705         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7706         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7707         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7708         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7709         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7710         F3_240M_512, and F3_32M_512.
7711         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7712         stubs.
7713
7714 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7715
7716         * include/wingdi.h (DM_SPECVERSION): Define.
7717         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7718         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7719         appropriate _WIN32_WINNT values.
7720
7721 2003-04-15  Chris January  <chris@atomice.net>
7722
7723         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7724         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7725
7726 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7727
7728         * include/winuser.h (VK_*): Add missing defines.
7729
7730 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7731
7732         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7733         documented typedefs for struct _NM_UPDOWN.
7734         Add defines for backward comapatibility.
7735         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7736         * include/wininet.h (IRF_*): Add missing defines.
7737
7738 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7739
7740         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7741
7742 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7743
7744         * include/sspi.h: Add comment for FreeCredentialsHandle.
7745
7746 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7747
7748         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7749
7750 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7751
7752         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7753
7754 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7755
7756         * lib/uuid.c (IID_IHTML*): Move definitions to...
7757         * lib/mshtml-uuid.c: New file.
7758         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7759
7760 2003-03-30  Michael Sazonov  <traip@comset.net>
7761
7762         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7763         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7764         IHTMLImgElement): Add interface definitions.
7765
7766 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7767
7768         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7769         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7770         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7771         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7772         RC_INVOKED guard.
7773         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7774         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7775
7776 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7777
7778         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7779
7780 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7781
7782         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7783         TranslateName[AW]): Add prototypes.
7784         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7785         TranslateName[AW]): Add stubs.
7786         * lib/test.c: Include secext.h.
7787
7788 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7789
7790         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7791         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7792         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7793         _SpinLock.
7794
7795 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7796
7797         * include/w32api.h: Increment version to 2.4.
7798         * Makefile.in: Ditto.
7799
7800 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7801
7802         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7803         Move structure from here...
7804         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7805
7806         * include/ddk/ntapi.h (JOBOBJECT_*):
7807         Remove structures and enums definitions.
7808         (JOB_OBJECT*): Move defines from here...
7809         * include/winnt.h (JOB_OBJECT* ): To here.
7810
7811         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
7812         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7813         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7814         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7815         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7816         SYSTEM_POWER_CAPABILITIES): Move enums, structures
7817         and associated defines from here ...
7818         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
7819         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7820         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7821         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7822         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7823         SYSTEM_POWER_CAPABILITIES):To here.
7824
7825         * include/ddk/winddk.h (DEVICE_POWER_STATE,
7826         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
7827         from here...
7828         * include/winnt.h (DEVICE_POWER_STATE,
7829         SYSTEM_POWER_STATE, POWER_ACTION): To here.
7830
7831 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
7832
7833         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
7834         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
7835         (NdisUpdateSharedMemory): Likewise.
7836         (NdisMFreeSharedMemory: Likewise.
7837         (NdisMMapIoSpace: Likewise.
7838
7839 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
7840
7841         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
7842         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
7843         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
7844
7845 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
7846
7847         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
7848         (EnumResourceNames[AW]): Ditto.
7849         (EnumResourceTypes[AW]): Ditto.
7850         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
7851
7852 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
7853
7854         * include/winuser.h (SendInput): Add prototype.
7855         * lib/user32.def (SendInput): Add stub.
7856
7857 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
7858
7859         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
7860         (FSCTL_DELETE_REPARSE_POINT): Likewise.
7861
7862 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
7863
7864         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
7865         (JOBOBJECT_*): Define corresponding structures.
7866
7867 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
7868
7869         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
7870         typedef.
7871
7872 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
7873
7874         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
7875         (Process32{First,Next}{,W}): Ditto.
7876         (Thread32{First,Next}): Ditto.
7877         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
7878
7879 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
7880
7881         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
7882         Thanks to Jim Barton <jmbarton@users.sf.net>.
7883
7884 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
7885
7886         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
7887         member SectionAlignment.
7888
7889 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
7890
7891         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
7892         warnings.
7893         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
7894         * Makefile.in (bindist): Correct process.
7895         * lib/Makefile.in (install): Ditto.
7896         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
7897
7898 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
7899
7900         * include/rasdlg.h: New file.
7901         * lib/rasdlg.def: New file.
7902         * lib/test.c: Include rasdlg.h.
7903
7904 2003-03-06  Christopher January  <chris@atomice.net>
7905
7906         * include/winbase.h (FindFirstVolume): Add declaration.
7907         (FindNextVolume): Add declaration.
7908         (FindVolumeClose): Add declaration.
7909         (GetSystemTimes): Add declaration.
7910         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
7911
7912 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
7913
7914         *lib/kernel32.def (GetSystemTimes): Add stub.
7915
7916 2003-03-04  Heiko Gerdau  <hg@technosis.de>
7917
7918         * oleidl.h (IOleObject): Correct GetUserType prototype.
7919         (IViewObject2): Correct GetExtent prototype.
7920         * olectl.h (DISPIP_): Add new defines
7921         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
7922
7923 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7924
7925         * include/olectl.h (OleLoadPictureEx) Add prototype.
7926         (OleLoadPictureFile): Ditto.
7927         (OleLoadPictureFileEx): Ditto.
7928         (OleLoadPicturePath): Ditto.
7929         (OleSavePictureFile): Ditto.
7930
7931 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7932
7933         * include/objbase.h (CoAddRefServerProcess): Add prototype.
7934         (CoAddReleaseServerProcess): Ditto.
7935         (CoResumeClassObjects): Ditto.
7936         (CoSuspendClassObjects): Ditto.
7937         * include/oleauto.h (V_I1): Define.
7938         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
7939
7940 2003-03-01  Heiko Gerdau  <hg@technosis.de>
7941
7942         * include/oleidl.h (USERCLASSTYPE): Add enum.
7943         * include/ocidl.h (IObjectWithSite): Add interface.
7944
7945 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
7946
7947         Fixup UNICODE thinko in 2003-02-22 patch.
7948         * include/wingdi.h (AddFontMemResourceEx): Add.
7949         (RemoveFontMemResourceEx): Ditto.
7950         (AddFontMemResourceEx[AW]): Remove.
7951         (RemoveFontMemResourceEx[AW]): Ditto
7952         * lib/gdi32.def: (AddFontResourceEx): Add.
7953         (RemoveFontMemResourceEx): Ditto.
7954         (AddFontMemResourceEx[AW]): Remove.
7955         (RemoveFontResourceEx[AW]): Ditto.
7956
7957 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
7958
7959         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
7960         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
7961
7962 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
7963
7964         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
7965         (RemoveFontMemResourceEx[AW]): Ditto
7966         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
7967         (RemoveFontMemResourceEx[AW]): Ditto.
7968
7969 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
7970
7971         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
7972         (NtCurrentTeb): Remove.
7973
7974 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7975
7976         * include/wsahelp.h: Remove ';' after closing
7977         #ifdef __cplusplus brace.
7978         * include/ws2spi.h: Likewise.
7979
7980 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7981
7982         * include/winbase.h (MEMORYSTATUSEX): Add structure.
7983         (GlobalMemoryStatusEx): Add prototype.
7984         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
7985
7986 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
7987
7988         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
7989
7990 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
7991
7992         * include/wingdi.h (AddFontResourceEx[AW]): Add.
7993         (RemoveFontResourceEx[AW]): Ditto
7994         (FR_PRIVATE): Define.
7995         (FR_NOT_ENUM): Define.
7996         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
7997         (RemoveFontResourceEx[AW]): Ditto.
7998
7999 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8000
8001         * include/w32api.h: Increment version to 2.3.
8002         * Makefile.in: Ditto.
8003
8004 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8005
8006         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8007         (Ke386QueryToAccessMap): Ditto.
8008         (Ke386SetIoAccessMap): Ditto.
8009         Thanks to Marcel Telka <telka@users.sf.net>
8010         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8011         * include/security.h: Include secext.h.
8012         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8013         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8014         * include/GL/gl.h: Remove include of glext.h.
8015         Thanks to Greg Couch <gregcouch@users.sf.net>
8016
8017 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8018
8019         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8020         using GUID_DEFINED instead.
8021         * include/sqltypes.h: Ditto.
8022         * include/winnt.h: Ditto.
8023         * include/ddk/scsiwmi.h: Ditto.
8024
8025 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8026
8027         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8028         prototypes.
8029         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8030
8031 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8032
8033         * include/commctrl.h (TCM_*): Add missing defines.
8034
8035 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8036             Danny Smith  <dannysmith@users.sourceforge.net>
8037
8038         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8039         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8040         for (_WIN32_IE >= 0x0400).
8041         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8042         fields for (_WIN32_IE >= 0x0400).
8043
8044 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8045
8046         * include/winbase.h (CreateFiber): Change first parameter
8047         to SIZE_T.
8048         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8049         if (_WIN32_WINNT >= 0x0500).
8050
8051 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8052
8053         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8054         Add missing typedefs.
8055         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8056         prototypes.
8057         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8058
8059 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8060
8061         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8062         define.
8063         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8064
8065 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8066
8067         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8068         define.
8069         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8070         definition.
8071         (WAIT_FAILED): Cast to DWORD.
8072         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8073         definition.
8074
8075 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8076
8077         * include/winerror.h: Protect against multiple
8078         definition of WSA* error codes.
8079         * include/winsock.h: Likewise.
8080         * include/winsock2.h: Likewise.
8081
8082 2003-01-27  Bang Dong-Heui
8083             Bang Jun-Young  <junyoung@netbsd.org>
8084
8085         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8086         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8087         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8088
8089
8090 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8091
8092         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8093         (WINVER >= 0x501).
8094
8095 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8096
8097         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8098         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8099         fields for (WINVER >= 0x501).
8100
8101 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8102
8103         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8104         Add stubs.
8105         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8106         options.
8107
8108 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8109
8110         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8111         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8112
8113 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8114
8115         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8116         SE_REGISTRY_WOW64_32KEY.
8117         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8118
8119 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8120
8121         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8122         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8123         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8124
8125 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8126
8127         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8128
8129 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8130
8131         * lib/dxguid.c: Don't #include <objbase.h>.
8132         * include/unknwn.h: Partially revert change of 2002-12-26.
8133         Don't include <ole2.h>.
8134
8135 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8136
8137         * lib/dinput.c: Don't #include <objbase.h>.
8138
8139 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8140
8141         * include/windows.h (ole2.h):Do #include for
8142         __WATCOMC__.
8143
8144 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8145
8146         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8147         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8148         definition.
8149         (WHEEL_PAGESCROLL): Likewise.
8150         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8151
8152 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8153
8154         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8155         (WHEEL_PAGESCROLL): Add define.
8156
8157 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8158
8159         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8160         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8161         compatability. Add RECT field. Add UNICODE mappings for new
8162         names.
8163         (tagNMREBARCHEVRON): Add struct and typedefs for
8164         _WIN32_IE >= 0x0500.
8165
8166 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8167
8168         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8169         (LVHITTESTINFO): Likewise.
8170
8171         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8172         (GRADIENT_RECT): Likewise.
8173
8174 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8175
8176         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8177         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8178         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8179         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8180         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8181         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8182         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8183         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8184         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8185         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8186         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8187         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8188         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8189         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8190         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8191         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8192         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8193         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8194         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8195         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8196         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8197         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8198         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8199         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8200         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8201         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8202         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8203         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8204         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8205         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8206         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8207         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8208         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8209         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8210         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8211         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8212         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8213         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8214         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8215         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8216         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8217         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8218         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8219         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8220         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8221         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8222         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8223         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8224         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8225         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8226         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8227         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8228         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8229         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8230         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8231         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8232         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8233         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8234         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8235         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8236         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8237         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8238         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8239         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8240         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8241         Add missing error codes.
8242
8243 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8244
8245         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8246         asm code.
8247         (GetFiberData): Likewise.
8248
8249 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8250
8251         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8252         asm code.
8253         (GetFiberData): Likewise.
8254
8255 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8256
8257         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8258         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8259         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8260         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8261         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8262         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8263         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8264         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8265         error codes.
8266         Re-sort codes.
8267
8268 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8269
8270         * include/winspool.h (PRINTER_INFO_6): Add.
8271         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8272
8273 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8274
8275         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8276
8277         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8278         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8279         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8280         Add stubs.
8281
8282 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8283
8284         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8285         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8286
8287 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8288
8289         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8290
8291 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8292
8293         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8294         VIETNAMESE_CHARSET): Remove duplicate defines.
8295         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8296
8297 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8298
8299         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8300         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8301
8302 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8303
8304         * include/unknwn.h: Include windows.h and ole2.h before header
8305         guard to avoid circular inclusion of COM headers.
8306
8307 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8308
8309         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8310         ReuseDDElParam): Use __WIN64 compatible typedefs.
8311
8312 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8313
8314         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8315         lpInheritProperty member const.
8316         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8317         const.
8318
8319 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8320
8321         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8322         COM_NO_WINDOWS_H.
8323         * include/unknwn.h: Ditto.
8324
8325 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8326
8327         * include/imm.h (ImmGetCompositionFont[AW],
8328         ImmSetCompositionFont[AW]): Add NOGDI guard.
8329
8330 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8331
8332         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8333         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8334         before using.
8335         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8336         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8337         definition.
8338         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8339         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8340         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8341         definition.
8342         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8343         (LPCGUID): Likewise.
8344         * include/ddk/tdi.h: Close "Listen flags" comment.
8345         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8346         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8347         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8348         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8349         * include/ddk/win2k.h: Likewise.
8350         * include/ddk/winddi.h: Likewise.
8351         * include/ddk/winddk.h: Likewise.
8352         * include/ddk/winnt4.h: Likewise.
8353         * include/ddk/ws2san.h: Likewise.
8354         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8355         * include/ddk/video.h: Don't process rest of file ifdef
8356         __WINDDI_H.
8357         * include/ddk/winddi.h: Don't process rest of file ifdef
8358         __VIDEO_H.
8359         * include/ddk/usb.h: Don't process rest of file ifdef
8360         __USBDI_H.
8361         * include/ddk/usbdi.h: Don't process rest of file ifdef
8362         __USB_H.
8363         * include/ddk/usbcamdi.h: Don't process rest of file if
8364         !defined(__USB_H) && !defined(__USBDI_H)
8365
8366 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8367
8368         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8369         prototypes.
8370         * include/winuser.h (GetAncestor) Add prototype.
8371         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8372         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8373         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8374         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8375         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8376         defines.
8377         * lib/user32.def (GetAncestor@8): Add stub.
8378
8379 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8380
8381         * include/windows.h: Guard inclusion of wingdi.h,
8382         commdlg.h, winspool.h, ole2.h with NOGDI.
8383         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8384         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8385         Guard with NOGDI.
8386
8387 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8388
8389         * include/oleacc.h (SELFLAG_*): Change to enum.
8390
8391 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8392
8393         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8394         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8395
8396 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8397
8398         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8399         to UINT.
8400         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8401
8402 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8403
8404         * include/winuser.h (AllowSetForegroundWindow,
8405         LockSetForegroundWindow): Add prototypes.
8406         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8407         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8408         * lib/winuser.def (AllowSetForegroundWindow,
8409         LockSetForegroundWindow): Add stubs.
8410
8411 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8412
8413         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8414         UNICODE mappings.
8415         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8416         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8417         compatability. Add lParam field. Add UNICODE mappings for new
8418         names.
8419
8420 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8421
8422         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8423         Wrap with pshpack2.h/poppack.h to correct alignment.
8424
8425 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8426
8427         * include/commctrl.h (LVBKIF_*): Add defines.
8428         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8429         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8430         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8431         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8432         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8433         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8434         (ListView_GetBkImage): Add define.
8435         (ListView_SetBkImage): Add define.
8436         (LVBKIMAGE): Add structures and typedefs.
8437
8438 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8439
8440         * include/w32api.h: Increment to version 2.2
8441         * Makefile.in: Ditto.
8442
8443 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8444
8445         * lib/Makefile.in (dist, install): Correct the install destinations.
8446         * lib/ddk/Makefile.in (dist, install): Ditto.
8447
8448 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8449
8450         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8451         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8452         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8453         in definitions.
8454         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8455         IID_IOleControlSite89): Remove.
8456
8457 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8458
8459         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8460         (IID_IStdMarshalInfo): Ditto.
8461
8462 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8463
8464         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8465         (IID_IPersistStorage): Ditto.
8466
8467 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8468
8469         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8470         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8471         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8472         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8473         Correct definitions.
8474
8475 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8476
8477         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8478         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8479         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8480         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8481         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8482         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8483         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8484         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8485         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8486         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8487         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8488         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8489         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8490         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8491         xfilter.h): Change comment to refer w32api package, not MinGW.
8492
8493 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8494
8495         * include/ddk/ntddk.h: Include winnt.h as system header.
8496
8497 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8498
8499         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8500         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8501         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8502         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8503         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8504         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8505         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8506         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8507         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8508         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8509         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8510         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8511         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8512         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8513         xfilter.h): Fix typo in disclaimer comment.
8514
8515 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8516
8517         * include/exdisp.h: Include oaidl.h as system header.
8518
8519 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8520
8521         * include/w32api.h (__W32API_VERSION): Fix.
8522
8523 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8524
8525         * lib/uuid.c (IID_ICatInformation): Correct definition.
8526
8527 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8528
8529         * include/oleauto.h (DeregisterTypeLib): Remove.
8530         (UnRegisterTypeLib): Add prototype.
8531
8532 2002-11-07  Christopher January  <chris@atomice.net>
8533
8534         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8535
8536 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8537
8538         * include/winnt.h (VerSetConditionMask): Add prototype.
8539         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8540
8541 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8542
8543         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8544         definitions and ANSI/UNICODE mappings.
8545         Cleanup whitespace.
8546
8547 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8548
8549         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8550         * configure.in: Ditto.
8551         * lib/Makefile.in: Ditto.
8552         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8553         autoconf-2.53.
8554         * configure: Regenerate.
8555
8556 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8557
8558         * include/windows.h: Don't include basetyps.h.
8559         * include/objfwd.h: Do include basetyps.h.
8560
8561 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8562
8563         * include/objbase.h: Include rpc.h and rpcndr.h
8564         before header guard.
8565
8566 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8567
8568         * include/olectl.h (PROPPAGEINFO): Change type of
8569         field cb to ULONG.
8570
8571 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8572
8573         * lib/ntdll.def (RtlAcquireResourceExclusive,
8574         RtlAcquireResourceShared, RtlDeleteResource,
8575         RtlInitializeResource, RtlReleaseResource,
8576         RtlTimeToSecondsSince1970) : Added missing exports.
8577
8578 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8579
8580         * include/oleacc.h: New file.
8581         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8582         (OBJID_*) Add defines.
8583         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8584         * lib/test.c: Include oleacc.h.
8585
8586 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8587
8588         * include/ddk: New subdir.
8589         * lib/ddk: Ditto.
8590         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8591         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8592         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8593         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8594         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8595         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8596         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8597         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8598         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8599         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8600         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8601         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8602         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8603         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8604         xfilter.h): New files.
8605         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8606         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8607         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8608         win32k.def): Ditto.
8609
8610 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8611
8612         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8613         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8614         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8615         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8616         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8617         RtlAddAccessAllowedAce, RtlCreateAcl,
8618         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8619         RtlGetAce, RtlGetControlSecurityDescriptor,
8620         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8621         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8622         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8623         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8624         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8625         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8626         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8627         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8628         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8629         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8630         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8631         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8632         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8633
8634 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8635
8636         *include/windef.h (WPARAM): Update typedef.
8637         (LPARAM): Ditto.
8638         (LRESULT): Ditto.
8639
8640 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8641
8642         * include/shlobj.h (CSIDL_*): Add defines.
8643
8644 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8645
8646         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8647         has been included first.
8648
8649 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8650
8651         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8652         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8653         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8654
8655 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8656
8657         * include/winuser.h (DS_SHELLFONT): Define.
8658
8659 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8660
8661         * include/winnt.h (VER_SUITE_BLADE): Define.
8662
8663 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8664
8665         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8666         Add _WIN32_IE guard. Correct prototype for wide version.
8667         (SHGetFolderPath): Add comment on shfolder.dll.
8668         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8669         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8670
8671 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8672
8673         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8674         * lib/shfolder.def: New file.
8675
8676 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8677
8678         * include/winsock.h (timeval): Guard struct and associated
8679         macros with _TIMEVAL_DEFINED.
8680         * include/winsock2.h (timeval): Likewise.
8681
8682 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8683
8684         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8685         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8686         SHCreateShellItem,SHEmptyRecycleBin[AW],
8687         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8688         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8689         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8690         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8691         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8692         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8693         SHLoadNonloadedIconOverlayIdentifiers,
8694         SHOpenFolderAndSelectItems,SHParseDisplayName,
8695         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8696         SHSetLocalizedName,SHSetUnreadMailCountW,
8697         SHUpdateRecycleBinIcon: Add missing stubs.
8698
8699 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8700
8701         * include/windef.h (WINVER): Add documentation.
8702         (_WIN32_WINNT): Ditto.
8703         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8704
8705 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8706
8707         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8708
8709 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8710
8711         * include/winbase.h (AllocateUserPhysicalPages,
8712         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8713         FreeUserPhysicalPages): Add prototypes.
8714         * lib/kernel32.def: Add function stubs for above.
8715
8716 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8717
8718         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8719         Add WINVER guards for dialog box command id defines.
8720
8721 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8722
8723         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8724
8725 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8726
8727         * include/wincon.h: Define GetConsoleWindow(void).
8728
8729 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8730
8731         * include/w32api.h: Increment version to 2.1.
8732         * Makefile.in: Ditto.
8733
8734 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8735
8736         * include/winsock2.h (SOCKET_ADDRESS): Define if
8737         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8738         (CSADDR_INFO): Ditto.
8739         (nspapi.h) : Don't include. Removed FIXME comment.
8740         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8741         __CSADDR_T_DEFINED is not defined.
8742         (CSADDR_INFO): Ditto.
8743         (BLOB): Add structure and typedef if not already defined.
8744         (NS_*): Add defines.
8745         (SERVICE_*): Ditto.
8746         (SERVICE_ADDRESS): Add structure and typedefs.
8747         (SERVICE_ADDRESSES): Ditto.
8748         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8749         (LPSERVICE_ASYNC_INFO): Add typedef.
8750         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8751         mappings.
8752         * include/wsipx.h: New file.
8753         * include/svcguid.h: New file.
8754         * lib/test.c: Include wspix.h and svcguid.h.
8755
8756 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8757
8758         * include/wsahelp.h: New file.
8759         * lib/test.c: Include wsahelp.h.
8760
8761 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8762
8763         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8764         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8765
8766 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8767
8768         * include/ws2spi.h: Modify comment about being part of
8769         mingw32 package.
8770         (winsock2.h): Change "" to <>.
8771
8772 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8773
8774         * include/ws2spi.h: New file.
8775         * lib/test.c: Include ws2spi.h.
8776
8777 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8778
8779         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8780         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8781         functions.
8782
8783 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8784
8785         * include/winuser.h (CURSOR_SHOWING) Add define.
8786         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8787
8788 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8789
8790         * include/winerror.h: Cast OLE error codes to HRESULT.
8791         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8792
8793 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8794
8795         * include/wincrypt.h (ALG_*): Add defines.
8796         (CALG_*): Ditto.
8797         (CRYPT_*): Ditto.
8798         (PP_*): Ditto.
8799         (PROV_*): Ditto.
8800         (PRIVATEKEYBLOB): Add define.
8801
8802 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8803
8804         * include/shlobj.h (SHGetFolderPath): Add define.
8805         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8806         (SHGetFolderPath): Ditto.
8807
8808 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8809
8810         * include/commdlg.h: Don't include COM headers or use
8811         COM-dependent symbols if __OBJC__.
8812
8813 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8814
8815         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
8816         Add prototypes.
8817
8818 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
8819
8820         * include/shellapi.h (FOF_NOERRORUI): Add define.
8821
8822 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
8823
8824         * include/objidl.h (IEnumMoniker): Put 'interface' back.
8825
8826 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
8827
8828         * include/objidl.h (IEnumMoniker): Correct declaration.
8829
8830 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
8831
8832         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
8833
8834 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
8835
8836         * include/commctrl.h: Whitespace change.
8837
8838 2002-08-09  Lars Munch  <lars@segv.dk>
8839
8840         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
8841         struct name _TVHITTESTINFO and typedefs and add defines for
8842         backward compatability.
8843         (ListView_SetExtendedListViewStyleEx): Add macro.
8844
8845 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
8846
8847         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
8848         Add prototypes.
8849         * lib/msimg32.def: New file, with stubs for above.
8850
8851 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
8852
8853         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
8854         GetFileSizeEx, SetFilePointerEx): Add prototypes.
8855         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
8856         and UNICODE mappings.
8857
8858 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
8859
8860         * include/winbase.h (ReadFileScatter, WriteFileGather):
8861         Change second parameter to pointer.
8862
8863 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
8864
8865         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
8866         UNICODE mappings.
8867         * lib/wininet.def: Regenerate.
8868
8869 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
8870
8871         * include/windef.h (PVOID): Move typedef to...
8872         * include/winnt: ...here.
8873         (PVOID64): New typedef.
8874
8875         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
8876         * include/winbase.h (ReadFileScatter, WriteFileGather):
8877         Add prototypes.
8878
8879         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
8880         (PROCESSOR_INTEL_IA64): Add define.
8881
8882 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8883
8884         * include/oleidl.h (MK_ALT): Define.
8885
8886 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8887
8888         * include/exdisp.h: New file.
8889         * include/exdispid.h: New file.
8890         * include/mshtml.h: New file.
8891         * lib/test.c: #include exdisp.h and mshtml.h
8892         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
8893         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
8894         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
8895         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
8896         New GUIDs.
8897
8898 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8899
8900         * include/docobj.h: New file.
8901         * include/idispids.h: New file.
8902         * include/objidl.h (IID_IMoniker): Declare.
8903         * include/ocidl.h (READYSTATE): New enum.
8904         (IOleInPlaceSiteEx): New interface.
8905         * include/olectlid.h (IID_IEnumSTATSTG): New interface
8906         identifier.
8907         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
8908         IOleInPlaceSite): New interfaces.
8909         * lib/test.c: #include docobj.h,idispids.h,
8910
8911 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8912
8913         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
8914         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
8915
8916 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
8917
8918         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
8919         * include/commdlg.h: Likewise.
8920
8921 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
8922
8923         * include/oleauto.h (V_UNION): Correct definition for case of
8924         NONAMELESSUNION:
8925         (V_VT): Likewise.
8926
8927 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
8928
8929         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
8930         not bool, for C as well as C++.
8931
8932 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
8933
8934         * include/shlwapi.h: New file.
8935         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
8936         Victor Porton  <porton@narod.ru> for contributions.
8937         * lib/shlwapi.def: New file.
8938         * lib/test.c: #include shlwapi.h.
8939
8940 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
8941
8942         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
8943         character.
8944         * include/winsock2.h (struct sockaddr): Use __int64 instead of
8945         long long.
8946         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
8947         does not need external *Fiber library functions.
8948
8949 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8950
8951         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
8952         definition.
8953         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
8954         avoid compile error when already defined.
8955
8956 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
8957
8958         * include/winuser.h (WM_MENURBUTTONUP): Add define.
8959
8960 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8961
8962         * include/commdlg.h: Define CDN_* notification message constants
8963         as UINT.
8964
8965 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
8966
8967         * include/commctrl.h: Define notification message constants for
8968         NMHDR.code as UINT.
8969
8970 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
8971
8972         * include/ddeml.h (MH_*) Add defines.
8973         (MONHSZSTRUCT): Add structure and typedefs.
8974         (MONLINKSTRUCT): Ditto.
8975         (MONCONVSTRUCT): Ditto.
8976         (MONCBSTRUCT): Ditto.
8977         (MONERRSTRUCT): Ditto.
8978         (MONMSGSTRUCT): Ditto.
8979         * include/windef.h: Don't define __cdecl or _cdecl for
8980         __WATCOM__.
8981         Don't define _export or __export for __WATCOM__.
8982         * include/windows.h (imm.h): #include.
8983         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
8984
8985 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8986
8987         * include/wtypes.h: Remove duplicate #includes of rpc.h and
8988         rpcndr.h.
8989
8990 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
8991
8992         * include/winbase.h (OpenThread): Add prototype.
8993         * lib/kernel32.def (OpenThread): Add symbol.
8994
8995 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
8996
8997         * include/wtypes.h (HMETAFILEPICT): Add typedef.
8998
8999 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9000
9001         * include/rpc.h: Conditionally include <windows.h> before
9002         header guard.
9003         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9004         header guard.
9005
9006 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9007
9008         * include/commctrl.h (WC_*): Remove some duplicate defines.
9009
9010 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9011
9012         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9013         UNICODE mappings.
9014         (IPM*): Add defines.
9015         (IPN_*): Add defines.
9016         (NMIPADDRESS): Add structure and typedefs.
9017         (MAKEIPADDRESS): Add macro.
9018         (MAKEIPRANGE): Add macro.
9019         (FIRST_IPADDRESS): Add macro.
9020         (SECOND_IPADDRESS): Add macro.
9021         (THIRD_IPADDRESS): Add macro.
9022         (FOURTH_IPADDRESS): Add macro.
9023
9024 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9025
9026         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9027
9028 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9029
9030         * include/winbase.h (WINBASEAPI): Don't define if prior
9031         definition.
9032
9033         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9034         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9035         PARTITION_UNIX): Add defines.
9036         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9037         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9038         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9039         (IsContainerPartition): Add macro.
9040
9041 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9042
9043         * include/commctrl.h: (CBEIF_*): Add defines.
9044         (CBEN_*): Add defines and UNICODE mappings
9045         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9046         (CBEMAXSTRLEN): Add define.
9047         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9048         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9049         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9050         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9051
9052 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9053
9054         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9055         union member _VARIANT_BOOL bool.
9056
9057 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9058
9059         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9060
9061 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9062
9063         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9064         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9065         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9066         Add typedefs.
9067         (CCHAR): Correct typedef.
9068         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9069         Add defines.
9070
9071 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9072
9073         * README.w32api: Correct spelling error.
9074
9075 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9076
9077         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9078         INPUT_HARDWARE): Add defines.
9079         (HDEVNOTIFY): Add typedef.
9080         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9081         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9082         typedefs.
9083         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9084         GetClassInfoEx[AW],GetKeyboardLayoutList,
9085         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9086         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9087         RegisterClassEx[AW]): Correct prototypes.
9088
9089 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9090
9091         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9092         prototypes.
9093         * include/winsvc.h (StartServiceW): Correct prototype.
9094         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9095         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9096         GetTickCount,InterlockedExchangeAdd,
9097         WritePrivateProfileStruct[AW]: Correct prototypes.
9098         (GetEnvironmentStrings): Correct mapping to
9099         GetEnvironmentStringsA.
9100         * include/winver.h (VerQueryValueA,VerQueryValueW):
9101         Correct prototypes.
9102         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9103         prototype.
9104         * include/winreg.h (RegQueryMultipleValues[AW],
9105         RegQueryValueEx[AW]):Correct prototypes.
9106         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9107         PPOLYTEXTW): Add typedefs.
9108         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9109         structures and typedefs.
9110         (MM_MAX_NUMAXES): Add define.
9111         (EnumFontsW,GetEnhMetaFilePixelFormat,
9112         wglGetLayerPaletteEntries): Correct prototypes.
9113         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9114         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9115         RPC_S_SEND_INCOMPLETE): Add defines.
9116
9117 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9118
9119         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9120         Add defines.
9121
9122 2002-06-16  Egor Duda  <deo@logos-m.ru>
9123
9124         * include/ntdll.h: New file.
9125         * lib/ntdll.def: Add NtShutdownSystem.
9126
9127 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9128
9129         * lib/dinput.def (DirectInputCreateEx): Add stub.
9130         * lib/ntdll.def: New file.
9131
9132 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9133
9134         * include/w32api.h: Change to version 2.0 to reflect the change
9135         in the license.
9136         * README: Renamed.
9137         * README.w32api: Renamed from README.  Modified license to remove
9138         the restriction of notifying the author based on the fact that the
9139         author is unreachable at the notified address.
9140         * Makefile.in (VERSION): Change to 2.0.
9141
9142 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9143
9144         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9145         * Makefile.in (bindist): Correct the MinGW distribution.
9146
9147 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9148
9149         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9150         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9151
9152 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9153
9154         * lib/test.c: #include comcat.h.
9155
9156 2002-06-13  John K. Hohm  <jhohm@acm.org>
9157
9158         * include/comcat.h: New file.
9159
9160 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9161
9162         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9163         (GETTEXTEX): Add structure definition.
9164
9165 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9166
9167         * include/windows.h (ole2.h): #include if !__OBJC__ and
9168         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9169
9170 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9171
9172         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9173
9174 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9175
9176         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9177         PACCESS_DENIED_ACE): Add typedefs.
9178
9179 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9180
9181         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9182
9183 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9184
9185         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9186
9187 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9188
9189         * include/windef.h: Fix typo in last change.
9190
9191 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9192
9193         * include/windef.h: Add no-op __try, __except, __finally
9194         defines from ...
9195         * include/excpt.h: Remove file.
9196         * include/windows.h: Don't include excpt.h.
9197
9198 2002-05-30  Christopher January  <chris@atomice.net>
9199
9200         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9201         Add missing typedefs.
9202
9203 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9204
9205         * include/w32api.h: Increment version to 1.5
9206         * Makefile.in: Ditto.
9207
9208
9209 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9210
9211         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9212         LP[W]STR with LPC[W]STR.
9213         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9214         Clean up whitespace.
9215
9216 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9217
9218         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9219
9220 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9221
9222         * Makefile.in: Increment VERSION to 1.4.
9223         (conf_prefix): New variable.
9224         (bindist): Modify target to use $(conf_prefix).
9225
9226 2002-05-20  Philip Aston  <philipa@mail.com>
9227
9228         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9229
9230 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9231
9232         * include/lmaccess.h: (NetAccess*, NetGroup*,
9233         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9234         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9235
9236 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9237
9238         * include/commctrl.h (ImageList_DragShowNolock): Remove
9239         conflicting redeclaration.
9240
9241 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9242
9243         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9244         STRICT and related defines to ...
9245         * include/windef.h: Here.
9246
9247 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9248
9249         * include/winsock2.h (int32): Remove typedef.
9250         (SERVICETYPE): Add typedef.
9251         (struct _flowspec):Revise struct definition,  Comment
9252         on types used for members.
9253
9254 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9255
9256         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9257         more defines added in earlier change.
9258         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9259
9260 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9261
9262         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9263         added in last change.
9264
9265 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9266
9267         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9268         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9269
9270 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9271
9272         * include/commctrl.h (SNDMSG): Define and use throughout
9273         in other macros instead of SendMessage.
9274         * include/commdlg.h (SNDMSG): Ditto.
9275
9276 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9277
9278         * include/GL/gl.h: New file.
9279         * include/GL/glext.h: Ditto.
9280         * include/GL/glu.h: Ditto.
9281
9282 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9283
9284         * include/w32api.h: Increment version.
9285         * Makefile.in: Ditto.
9286
9287 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9288
9289         * Makefile.in (bindist): Use * instead of . for file list for tar
9290         command.
9291
9292 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9293
9294         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9295
9296 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9297
9298         * include/objidl.h (IRunningObjectTable.Register): Correct
9299         prototype.
9300         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9301         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9302
9303 2002-03-31  Victor Porton  <porton@narod.ru>
9304
9305         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9306
9307 2002-03-29  David Robinow  <drobinow@yahoo.com>
9308
9309         * include/wingdi.h (SetPixelFormat): Correct prototype.
9310
9311 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9312
9313         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9314
9315 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9316
9317         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9318         Add defines.
9319
9320 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9321
9322         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9323         * include/shlobj.h (IContextMenu2): Put methods in right order.
9324         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9325         CINTERFACE before defining.
9326
9327 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9328
9329         * include/accctrl.h: Add #pragma GCC system_header
9330         if __GNUC__ >= 3.
9331         * include/aclapi.h: Same.
9332         * include/basetsd.h: Same.
9333         * include/basetyps.h: Same.
9334         * include/cderr.h: Same.
9335         * include/cguid.h: Same.
9336         * include/commctrl.h: Same.
9337         * include/commdlg.h: Same.
9338         * include/cpl.h: Same.
9339         * include/cplext.h: Same.
9340         * include/custcntl.h: Same.
9341         * include/dbt.h: Same.
9342         * include/dde.h: Same.
9343         * include/ddeml.h: Same.
9344         * include/dlgs.h: Same.
9345         * include/excpt.h: Same.
9346         * include/httpext.h: Same.
9347         * include/imagehlp.h: Same.
9348         * include/imm.h: Same.
9349         * include/initguid.h: Same.
9350         * include/intshcut.h: Same.
9351         * include/ipexport.h: Same.
9352         * include/iphlpapi.h: Same.
9353         * include/ipifcons.h: Same.
9354         * include/iprtrmib.h: Same.
9355         * include/iptypes.h: Same.
9356         * include/isguids.h: Same.
9357         * include/largeint.h: Same.
9358         * include/lm.h: Same.
9359         * include/lmaccess.h: Same.
9360         * include/lmalert.h: Same.
9361         * include/lmapibuf.h: Same.
9362         * include/lmat.h: Same.
9363         * include/lmaudit.h: Same.
9364         * include/lmbrowsr.h: Same.
9365         * include/lmchdev.h: Same.
9366         * include/lmconfig.h: Same.
9367         * include/lmcons.h: Same.
9368         * include/lmerr.h: Same.
9369         * include/lmerrlog.h: Same.
9370         * include/lmmsg.h: Same.
9371         * include/lmremutl.h: Same.
9372         * include/lmrepl.h: Same.
9373         * include/lmserver.h: Same.
9374         * include/lmshare.h: Same.
9375         * include/lmsname.h: Same.
9376         * include/lmstats.h: Same.
9377         * include/lmsvc.h: Same.
9378         * include/lmuse.h: Same.
9379         * include/lmuseflg.h: Same.
9380         * include/lmwksta.h: Same.
9381         * include/lzexpand.h: Same.
9382         * include/mapi.h: Same.
9383         * include/mciavi.h: Same.
9384         * include/mcx.h: Same.
9385         * include/mmsystem.h: Same.
9386         * include/mswsock.h: Same.
9387         * include/nb30.h: Same.
9388         * include/nddeapi.h: Same.
9389         * include/nspapi.h: Same.
9390         * include/ntdef.h: Same.
9391         * include/ntsecapi.h: Same.
9392         * include/ntsecpkg.h: Same.
9393         * include/oaidl.h: Same.
9394         * include/objbase.h: Same.
9395         * include/objfwd.h: Same.
9396         * include/objidl.h: Same.
9397         * include/odbcinst.h: Same.
9398         * include/ole.h: Same.
9399         * include/ole2.h: Same.
9400         * include/ole2ver.h: Same.
9401         * include/oleauto.h: Same.
9402         * include/olectl.h: Same.
9403         * include/olectlid.h: Same.
9404         * include/oledlg.h: Same.
9405         * include/oleidl.h: Same.
9406         * include/pbt.h: Same.
9407         * include/prsht.h: Same.
9408         * include/psapi.h: Same.
9409         * include/rapi.h: Same.
9410         * include/ras.h: Same.
9411         * include/raserror.h: Same.
9412         * include/rassapi.h: Same.
9413         * include/regstr.h: Same.
9414         * include/richedit.h: Same.
9415         * include/richole.h: Same.
9416         * include/rpc.h: Same.
9417         * include/rpcdce.h: Same.
9418         * include/rpcdce2.h: Same.
9419         * include/rpcdcep.h: Same.
9420         * include/rpcndr.h: Same.
9421         * include/rpcnsi.h: Same.
9422         * include/rpcnsip.h: Same.
9423         * include/rpcnterr.h: Same.
9424         * include/rpcproxy.h: Same.
9425         * include/schannel.h: Same.
9426         * include/schnlsp.h: Same.
9427         * include/scrnsave.h: Same.
9428         * include/security.h: Same.
9429         * include/setupapi.h: Same.
9430         * include/shellapi.h: Same.
9431         * include/shlguid.h: Same.
9432         * include/shlobj.h: Same.
9433         * include/sql.h: Same.
9434         * include/sqlext.h: Same.
9435         * include/sqltypes.h: Same.
9436         * include/sqlucode.h: Same.
9437         * include/sspi.h: Same.
9438         * include/subauth.h: Same.
9439         * include/tlhelp32.h: Same.
9440         * include/unknwn.h: Same.
9441         * include/userenv.h: Same.
9442         * include/w32api.h: Same.
9443         * include/winbase.h: Same.
9444         * include/wincon.h: Same.
9445         * include/wincrypt.h: Same.
9446         * include/windef.h: Same.
9447         * include/windows.h: Same.
9448         * include/windowsx.h: Same.
9449         * include/winerror.h: Same
9450         * include/wingdi.h: Same.
9451         * include/wininet.h: Same.
9452         * include/winioctl.h: Same.
9453         * include/winnetwk.h: Same.
9454         * include/winnls.h: Same.
9455         * include/winnt.h: Same.
9456         * include/winperf.h: Same.
9457         * include/winreg.h: Same.
9458         * include/winresrc.h: Same.
9459         * include/winsock.h: Same.
9460         * include/winsock2.h: Same.
9461         * include/winspool.h: Same.
9462         * include/winsvc.h: Same.
9463         * include/winuser.h: Same.
9464         * include/winver.h: Same.
9465         * include/ws2tcpip.h: Same.
9466         * include/wsnetbs.h: Same.
9467         * include/wtypes.h: Same.
9468         * include/zmouse.h: Same.
9469         * include/mapi.h: Change header guard name to _MAPI_H  for
9470         consistency.
9471
9472 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9473
9474         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9475         Remove unnecessary inclusion of <wtypes.h>.
9476         * ChangeLog: Fix omission of name in recent entries.
9477
9478 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9479
9480         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9481
9482 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9483
9484         * include/mswsock.h: Group winsock2 dependants
9485         together and protect with #ifdef _WINSOCK2_H.
9486         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9487         has been included.
9488
9489 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9490
9491         * include/mswsock.h (TP_*): Add new defines.
9492         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9493         (WSAMSG): Likewise.
9494         (WSACMSGHDR): Likewise.
9495         (DisconnectEx): Add new prototype.
9496         (WSARecvMsg): Likewise.
9497         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9498
9499 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9500
9501         * ChangeLog: Fix typo in last entry.
9502         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9503         * include/ws2tcpip.h: (IP_*): Add new defines.
9504         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9505         (NI_*): Add getnameinfo constants and bitmasks.
9506         (AI_*): Add getaddrinfo flags.
9507         (EAI_*): Add getaddrinfo error codes.
9508         (ip_mreq_source): Add new structure.
9509         (ip_msfilter): Add new structure.
9510         (IP_MSFILTER_SIZE): Add new macro.
9511         (in_pktinfo): Add new structure.
9512         Add preliminary IPv6 support.
9513         (in6_addr): Add new structure and some defines.
9514         (sockaddr_in6): Add new structure.
9515         (in6addr_any, in6addr_loopback): Declare extern structures.
9516         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9517         initialization macros for above.
9518         (IN6_ARE_ADDR_EQUAL): Define macro.
9519         (IN6_IS_ADDR_*): Define address testing macros.
9520         (socklen_t) Add new typedef.
9521         (ipv6_mreq): Add new structure.
9522         (in6_pktinfo): Same.
9523         (addrinfo): Same.
9524         (freeaddrinfo):Add new prototype.
9525         (getaddrinfo): Same.
9526         (gai_strerror[AW]): Same.
9527         (getnameinfo): Same.
9528         (sockaddr_in6_old): Add structure.
9529         (sockaddr_gen): Add union definition.
9530         (INTERFACE_INFO): Use sockaddr_gen as members.
9531         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9532         with INTERFACE_INFO on NT4 prior to sp4.
9533
9534 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9535
9536         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9537         when selecting winsock interface.
9538         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9539         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9540         Expand FIXME comment.
9541         (WSACOMPLETIONTYPE): Add enum.
9542         (WSACOMPLETION): Add structure and typedefs.
9543         (WSANSPIoctl): Add function prototpe and callback typedef.
9544         (SIO_NSP_NOTIFY_CHANGE): Add define.
9545         (sockaddr_storage): Add structure and typedefs.
9546
9547 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9548
9549         * include/winuser.h (OIC_*): Add resource constants.
9550
9551 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9552
9553         * include/ntsecpkg.h: New file.
9554         * include/schannel.h: New file.
9555         * include/schnlsp.h: New file.
9556         * include/security.h: New file.
9557         * include/sspi.h: New file.
9558         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9559         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9560         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9561         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9562         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9563         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9564         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9565         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9566         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9567         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9568         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9569         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9570         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9571         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9572         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9573         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9574         CERT_CHAIN_CONTEXT): Add missing structures.
9575         (CertCloseStore, CertGetCertificateChain,
9576         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9577         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9578         CertFindCertificateInStore, CertFreeCertificateContext,
9579         CertGetIssuerCertificateFromStore,
9580         CertFindChainInStore): Add missing functions.
9581         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9582         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9583         * lib/crypt32.def: New file.
9584         * lib/secur32.def: Add mising stubs.
9585         * lib/test.c: Include new headers.
9586
9587 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9588
9589         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9590         parameter.
9591
9592 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9593
9594         * lib/test.c: Include mapi.h.
9595         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9596         Thanks to: "Ron"  <ron@debian.org>
9597
9598 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9599
9600         * include/mapi.h: New file.
9601         * lib/mapi.def: Add missing function stubs.
9602
9603 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9604
9605         * include/winuser.h (GetWindowLongPtr[AW],
9606         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9607
9608 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9609
9610         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9611         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9612         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9613         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9614
9615 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9616
9617         * lib/test.c: Include wsnetbs.h.
9618
9619 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9620
9621         * include/wsnetbs.h: New file.
9622
9623 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9624
9625         * include/winnt.h: Remove merge conflict.
9626
9627 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9628
9629         * include/winnt.h (_TCHAR): Add typedefs.
9630
9631 2002-01-25  Tim Hughes  <tjh@delcam.com>
9632
9633         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9634         defines.
9635
9636 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9637
9638         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9639         Add defines.
9640         (LPACCESSTIMEOUT): Add typedef.
9641
9642 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9643
9644         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9645
9646 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9647
9648         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9649         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9650         backward compatability with old names. Update UNICODE mappings.
9651         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9652         for struct _HD_LAYOUT and add defines for backward
9653         compatability with old names.
9654         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9655         parallel chages to typedefs. Add defines for backward
9656         compatability with old names.
9657         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9658
9659 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9660
9661         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9662         hex for readability.
9663
9664 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9665
9666         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9667         and typedefs.
9668         (SPI_SETSCREENSAVERRUNNING): Add define.
9669         (LLKHF_ALTDOWN): Add define.
9670         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9671         PFD_DEPTH_DONTCARE): Add defines.
9672
9673 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9674
9675         * include/objbase.h (CoGetObject): Add prototype.
9676
9677 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9678
9679         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9680         ENUM_REGISTRY_SETTINGS): Add defines.
9681
9682 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9683
9684         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9685         (FILE_ATTRIBUTE_DEVICE): Add define.
9686
9687 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9688
9689         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9690
9691 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9692
9693         * ChangeLog: correct date in last entry.
9694
9695 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9696
9697         * include/winuser.h (MONITORENUMPROC): Add typedef.
9698         (EnumDisplayMonitors): Add prototype.
9699         * lib/user32.def (EnumDisplayMonitors): Add stub.
9700
9701 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9702
9703         * include/ntsecapi.h:  Fixed missing void parameter type in some
9704         prototypes.
9705         * include/objbase.h: Ditto.
9706         * include/rapi.h: Ditto.
9707         * include/rpc.h: Ditto.
9708         * include/rpcdce.h: Ditto.
9709         * include/rpcdcep.h: Ditto.
9710         * include/rpcndr.h: Ditto.
9711         * include/rpcnsip.h: Ditto.
9712         * include/rpcproxy.h: Ditto.
9713         * include/windef.h: Ditto.
9714
9715 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9716
9717         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9718
9719 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9720
9721         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9722          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9723         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9724         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9725         WS_EX_NOINHERITLAYOUT): Add defines.
9726         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9727         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9728         MEM_WRITE_WATCH): Add defines.
9729
9730
9731 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9732
9733         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9734         Add prototype.
9735         (SetCriticalSectionSpinCount): Likewise.
9736
9737 2001-12-30  Guido Serassio  <serassio@libero.it>
9738
9739         * include/winsvc.h: Add EnumServiceStatusEx(),
9740         QueryServiceStatusEx()
9741         & RegisterServiceCtrlHandlerEx()
9742
9743 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9744
9745         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9746
9747 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9748
9749         * lib/Makefile.in: Revert inst_installdir definitions to working
9750         versions.
9751
9752 2001-12-17  Guido Serassio  <serassio@libero.it>
9753
9754         * include/winsvc.h: Add ChangeServiceConfig2() &
9755         QueryServiceConfig2() definition
9756
9757 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9758
9759         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9760         on MSDN documentation for XP.
9761
9762 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9763
9764         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9765         mappings.
9766
9767 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9768
9769         * include/commctrl.h (ACS_*): Add new defines.
9770         (PGS_*): Ditto.
9771         (CBES_*): Ditto.
9772         (TBSTYLE_*): Ditto.
9773         (TB_*): Ditto.
9774         (TTS_*): Ditto.
9775         (UDS_HOTTRACK): Add define.
9776         (SBT_TOOLTIPS): Ditto.
9777         (TBS_*): Add new defines.
9778         (HDS_*): Ditto.
9779         (LVS_EX_*) Ditto.
9780         (LVKF_*): Ditto.
9781         (TCM_GETEXTENDEDSTYLE): Add define.
9782         (TVS_NOHSCROLL): Ditto.
9783         (TVIF_INTEGRAL): Ditto.
9784         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9785         (TCS_*): Add new defines.
9786         (CBEM_*): Add defines.
9787         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9788         (tagTVITEMEX[AW]: Ditto.
9789         (tagTVINSERTSTRUCT[AW]: Add union member.
9790         * include/winbase.h (VirtualAllocEx): Add prototype.
9791         * include/winuser.h (SS_*): Add new defines.
9792
9793 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9794
9795         * Makefile.in: Increment VERSION.
9796         * include/w32api.h: Ditto.
9797
9798 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9799
9800         * Makefile.in: Increment VERSION.
9801         * include/w32api.h: Ditto.
9802
9803 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9804
9805         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9806         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9807         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9808         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9809         SetupDiOpenDevRegKey): Correct function names.
9810
9811 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
9812
9813         * include/winuser.h (IDC_STATIC): Don't define.
9814
9815 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
9816
9817         Cleanup merge between SourceForge and winsup CVS.
9818         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
9819         definitions.
9820         * include/winnt.h (VER_NT*): Remove duplicate defines.
9821         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
9822
9823 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
9824
9825         * include/accctrl.h: Change \r\n to \n.
9826
9827 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
9828
9829         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
9830         Add structure definition.
9831         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
9832         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
9833         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
9834         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
9835         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
9836         UnenableRouter) Declare functions.
9837         * lib/iphlpapi.def: Add function names to import lib.
9838
9839 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
9840
9841         * include/winnt.h (PACCESS_MASK): Add typedef.
9842         * include/aclapi.h: New file.
9843         * include/acctrl.h: New file.
9844         * lib/advapi32.def: Add missing symbols.
9845         * lib/test.c: Add #include <aclapi.h>.
9846
9847 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
9848
9849         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
9850         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
9851         here ...
9852         * include/winnt.h: ... to here.
9853         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
9854         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
9855         and typedefs.
9856         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
9857         Add defines.
9858
9859 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9860
9861         * w32api/include/winnt.h: prepare SSE register support.
9862         (CONTEXT_EXTENDED_REGISTERS): Add new define.
9863         (MAXIMUM_SUPPORTED_EXTENSION): New define.
9864         (struct CONTEXT): ExtendedRegisters field added.
9865
9866 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
9867
9868         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
9869         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
9870         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
9871         tagLASTINPUTINFO ): Define new structures.
9872         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
9873         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
9874         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
9875         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
9876         SetMenuInfo): Add new prototypes.
9877         * lib/user32.def: Add import stubs for above functions.
9878
9879         * include/winuser.h (IDC_STATIC): Protect against prior
9880         definition.
9881
9882 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
9883
9884         * include/winbase.h (OSVERSIONINFOEX): Add definition.
9885         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
9886
9887 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
9888
9889         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
9890         warnings with _AUTHORITY #defines.
9891
9892 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9893
9894         * include/winnt.h (GetCurrentFiber): Create a prototype before the
9895         implementation.
9896         (GetFiberData): Ditto.
9897
9898 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9899
9900         * include/winnt.h: Backout last change.
9901
9902 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
9903
9904         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
9905         GetCurrentFiber: Create a prototype before the implementation.
9906         GetFiberData: Ditto.
9907
9908 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
9909
9910         * include/winuser.h (IDC_STATIC): Add define.
9911         Thanks to: Benoit Laniel.
9912
9913 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
9914
9915         * include/commdlg.h: Include <unknwn.h> rather than local
9916         definition of LPUKNOWN.
9917         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
9918         Emit warning.
9919
9920 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
9921
9922         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
9923         for Watcom.
9924         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
9925         functions of the form 'type * function(...)' in a way compatible
9926         with both Watcom and GCC.
9927         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
9928         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
9929         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
9930         * include/windows.h: Watcom can use anonymous structs/unions.
9931         * include/winnt.h: Watcom can use 64 bit ints.
9932         (GetCurrentFiber): Add another inline definition using
9933         Watcom inline assembly syntax.
9934         (GetFiberData): Likewise.
9935         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
9936         (gethostbyname): Likewise.
9937         (gethostbyaddr}: Likewise.
9938         (getservbyport}: Likewise.
9939         (getservbyname}: Likewise.
9940         (getprotobynumber}: Likewise.
9941         (getprotobyname}: Likewise.
9942         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
9943         (gethostbyname}: Likewise.
9944         (gethostbyaddr}: Likewise.
9945         (getservbyport}: Likewise.
9946         (getservbyname}: Likewise.
9947         (getprotobynumber}: Likewise.
9948         (getprotobyname}: Likewise.
9949         * lib/diinut.c: Correction for Watcom.
9950         * lib/kernel32.c (GetCurrentFiber): Add another definition
9951         using Watcom inline assembly syntax.
9952         (GetFiberData): Likewise.
9953         * lib/scrnsave.c (WinMain): Add break after default:
9954         clause.
9955
9956 2001-11-04  "stefan"  <stefan@lkcc.org>
9957
9958         * include/winnt.h (GetCurrentFiber): Add prototype.
9959         (GetFiberData): Likewise.
9960
9961 2001-11-04  Christopher Faylor  <cgf@redhat.com>
9962
9963         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
9964         parallel invocations.
9965
9966 2001-11-03  Christopher Faylor  <cgf@redhat.com>
9967
9968         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
9969
9970 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9971
9972         * include/basetyps.h (DECLARE_INTERFACE): Don't add
9973         __attribute__((com_interface)) for __GNUC__ >= 3.
9974
9975 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9976
9977         * include/commdlg.h (PRINTPAGERANGE): Add structure
9978         definition.
9979         (PRINTDLGEX[AW]): Likewise.
9980         (PrintDlgEx[AW]): Add function declaration.
9981         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
9982         * ChangeLog: Fix typo in last entry.
9983
9984 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
9985
9986         * include/objbase.h (CoGetClassObject): Change third parameter
9987         to COSERVERINFO*.
9988
9989 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9990
9991         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
9992         Thanks to: Kim Saunders.
9993         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
9994         Thanks to: Pat Thoyts.
9995         * include/winnt.h: Change C++ style comment to C style.
9996         * include/shlobj.h: Ditto.
9997         * include/objbase.h (enum tagCOINIT): Remove comma at end of
9998         list.
9999         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10000         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10001         (enum not limited to range of int).
10002         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10003         (struct with no named members), ifndef NONAMELESSUNION.
10004
10005 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10006
10007         * include/winuser.h (CREATESTRUCT): UNICODE it.
10008         (CBT_CREATEWND): Likewise.
10009
10010 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10011
10012         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10013         (WNetGetResourceInformationW): Ditto.
10014         (WNetGetResourceInformation): Add define.
10015
10016 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10017
10018         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10019         before extracting words.
10020
10021 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10022
10023         * include/winnt.h: Add PF_* defines.
10024         Thanks to: "Wizord"  <wizord@argoslabs.com>
10025
10026 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10027
10028         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10029         field as _ANONYMOUS_STRUCT.
10030         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10031         for UNICODE.
10032         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10033         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10034         test.
10035
10036 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10037
10038         * include/commctrl.h: Add some ListView constants.
10039
10040 2001-09-17  Earnie Boyd  <earnie@sf.net>
10041
10042         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10043         portion of the directory from the install.
10044         (inst_libdir): Ditto.
10045         * Makefile.in (VERSION): Increment.
10046         * include/w32api.h: Increment version.
10047
10048 2001-09-13  Earnie Boyd  <earnie@SF.net>
10049
10050         * lib/Makefile.in (inst_includedir): Change to always use w32api
10051         subdirectory for target == cygwin.
10052         (inst_libdir): Ditto.
10053
10054 2001-09-13  Earnie Boyd  <earnie@SF.net>
10055
10056         * lib/Makefile.in (config_prefix): New variable.
10057         (inst_includedir): Manipulate special value only if target == cygwin
10058         and build == target and prefix != config_prefix.
10059         (inst_libdir): Ditto.
10060
10061 2001-09-12  Earnie Boyd  <earnie@SF.net>
10062
10063         * Makefile.in (TARFLAGS): New variable.
10064         (TARFILEEXT): Ditto.
10065
10066 2001-09-12  Earnie Boyd  <earnie@SF.net>
10067
10068         * Makefile.in: Increment version.
10069         * include/w32api.h: Ditto.
10070         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10071
10072 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10073
10074         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10075         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10076         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10077
10078 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10079
10080         * include/wininet.h (InternetAutodial): Add prototype.
10081         (InternetAutodialHangup): Ditto.
10082         (InternetDial): Ditto.
10083         (InternetGetConnectedState): Ditto.
10084         (InternetGoOnline): Ditto.
10085         (InternetHangUp): Ditto.
10086         (InternetSetDialState): Ditto.
10087         Add associated INTERNET_* auto dial flags.
10088         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10089
10090 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10091
10092         * lib/Makefile.in: Move the setting of variable libdir to after the
10093         setting of exec_prefix since the value of libdir is dependant on it.
10094
10095 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10096
10097         * include/winbase.h: Add missing closing parentheses to
10098         InterlockedExchangePointer declaration.
10099
10100 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10101
10102         * include/shlobj.h (CFSTR_* ): Add new defines.
10103         Thanks to: "Ron" <ron@debian.org> .
10104         Unicode them.
10105
10106 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10107
10108         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10109         anonymous structs are available rather than just testing preprocessor
10110         variable directly.
10111
10112 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10113
10114         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10115         with new `LARGE_INTEGER' definition.
10116
10117 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10118
10119         * include/winsock2.h: Remove "extra token" after #endif.
10120
10121 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10122
10123         * config.guess: Remove the \r from the end of line.
10124         * config.sub: Ditto.
10125
10126 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10127
10128         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10129         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10130
10131 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10132
10133         * config.guess: Add the MSYS system.
10134         * config.sub: Ditto.
10135         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10136         * incldue/winsock2.h: Ditto.
10137
10138 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10139
10140         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10141         non-anonymous (Xxx.u.LowPart) access to HighPart and
10142         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10143
10144 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10145
10146         * include/wingdi.h (HANGUL_CHARSET): Add define.
10147
10148 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10149
10150         * include/setupapi.h: Formatting.
10151
10152 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10153
10154         * include/shlobj.h: Remove \r from the line endings.
10155
10156 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10157
10158         * include/setupapi.h : New file.
10159         * lib/setupapi.def:New file.
10160         * lib/test.c: Include setupapi.h.
10161
10162 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10163         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10164
10165 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10166
10167         * include/richedit.h (ENLINK): Add structure definition.
10168         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10169
10170 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10171
10172         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10173         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10174         (GCS_*): Make UNICODE.
10175         (CSIDL_*): Add more defines.
10176         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10177         (_DISK_GEOMETRY): Ditto.
10178         (_DISK_PERFORMANCE): Ditto.
10179         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10180
10181 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10182
10183         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10184         of block protected by #ifndef VOID.
10185         (This reverts 1998-12-01 Anders Norlander change.)
10186         * include/odbcinst.h: End file with newline.
10187         * include/raserror.h: Ditto.
10188
10189 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10190
10191         * include/winsock2.h (#include <wtypes.h): Don't.
10192         (_BLOB): Define instead, if not already done.
10193         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10194         * include/wtypes.h (_BLOB): Guard against prior definition.
10195
10196 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10197
10198         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10199         as __extension__.
10200         (tagTYPEDESC): Ditto.
10201         (_wireBRECORD): Add structure definition.
10202         (_wireSAFEARR_BRECORD): Ditto.
10203         (_wireSAFEARR_HAVEIID): Ditto.
10204         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10205         SAFEARR_HAVEIID HaveIidStr.
10206         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10207         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10208         pparray to wirePSAFEARRAY*.
10209         (_wireVARIANT): Add field wireBRECORD brecVal.
10210         (wireVARIANT): Change typedef to struct _wireVariant*.
10211         (IRecordInfo): Add interface definition.
10212         (LPRECORDINFO): Add typedef for IRecordInfo*.
10213         (IID_IRecordInfo): Add forward decalaration.
10214
10215 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10216
10217         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10218         * include/nddeapi.h: Likewise.
10219
10220 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10221
10222         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10223         Add more includes of w32api headers.
10224
10225 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10226
10227         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10228         Swap asm code with that of GetFiberData.
10229         (GetFiberData): Ditto.
10230         * lib/kernel32.c: New file, containing library versions of
10231         GetCurrentFiber and GetFiberData.
10232         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10233
10234 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10235
10236         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10237         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10238
10239 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10240
10241         * lib/oleaut32.def: Regenerate.
10242
10243 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10244
10245         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10246
10247 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10248
10249         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10250         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10251         * include/oaidl.h: ... to here.
10252         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10253         (IErrorInfo::GetGUID): Change arg to GUID.
10254         (LPSUPPORTERRORINFO): Add typedef.
10255         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10256
10257 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10258
10259         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10260         defines.
10261
10262 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10263
10264         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10265
10266 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10267
10268         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10269         Thanks to: Jason Craig  <jacraig@softhome.net>
10270
10271 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10272
10273         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10274         and UNICODE mappings, if _WIN32_IE >= 0x400.
10275         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10276         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10277         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10278         (tagNMLVCUSTOMDRAW): Likewise.
10279         (tagNMTVCUSTOMDRAW): Likewise.
10280         (tagNMLVCACHEHINT): Likewise.
10281
10282 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10283
10284         * include/basetsd.h (#include <_mingw.h>): Remove.
10285         (__int64): Define.
10286
10287 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10288
10289         * include/wingdi.h (AC_SRC_OVER): Add define.
10290         (struct _BLENDFUNCTION): Add.
10291
10292 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10293
10294         * include/shlobj.h:  Add BIF_* defines.
10295
10296 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10297
10298         * include/winerror.h (E_PENDING): Add error code define.
10299
10300 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10301
10302         * include/basetsd.h (#include <_mingw.h>): Add directive.
10303
10304 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10305
10306         * include/winbase.h (InterlockedCompareExchange): Change args
10307         and return value from PVOID to LONG.
10308         (InterlockedExchange): Change first arg to LPLONG.
10309         (InterlockedCompareExchangePointer): New macro.
10310         (InterlockedExchangePointer): New macro.
10311
10312 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10313
10314         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10315         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10316
10317 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10318
10319         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10320         (IMalloc::Free()): Ditto.
10321
10322 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10323
10324         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10325         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10326         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10327
10328 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10329
10330         * include/shlobj.h (struct _browseinfo): UNICODE it.
10331         (SHBrowseForFolder): Ditto.
10332         (SHGetPathFromIDList): Ditto.
10333
10334 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10335
10336         * include/basetsd.h: RC_INVOKED protection and realignment.
10337         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10338
10339 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10340
10341         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10342         line.
10343
10344 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10345
10346         * lib/mapi32.def: Add MAPISendMail.
10347
10348 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10349
10350         * include/w32api.h: Update version.
10351         * Makefile.in: Ditto.
10352
10353 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10354
10355         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10356         compiler warnings.
10357
10358 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10359
10360         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10361         previous definition in include/ntsecapi.h.
10362         * include/ntsecapi.h: Vice versa.
10363
10364 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10365
10366         * include/winnt.h: Add defines for group attributes.
10367         Add define for SYSTEM_LUID.
10368         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10369         `PTOKEN_PRIMARY_GROUP'.
10370
10371 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10372
10373         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10374         for cygwin.
10375
10376 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10377
10378         * include/winsock2.h: Protect one *more* newlib defines when compiling
10379         cygwin.
10380
10381 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10382
10383         * include/winsock2.h: Protect some more newlib defines when compiling
10384         cygwin.
10385
10386 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10387
10388         * include/winsock.h: Protect some more newlib defines when compiling
10389         cygwin.
10390
10391 2001-04-17  Egor Duda  <deo@logos-m.ru>
10392
10393         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10394         as __extenstion__ when appropriate.
10395         * include/mmsystem.h: Mark anonymous structs and unions as
10396         __extension__ to prevent compiler warning when invoked with
10397         -pedantic
10398         * include/oaidl.h: Ditto.
10399         * include/objidl.h: Ditto.
10400         * include/olectl.h: Ditto.
10401         * include/prsht.h: Ditto.
10402         * include/shlobj.h: Ditto.
10403         * include/winbase.h: Ditto.
10404         * include/winnt.h: Ditto.
10405         * include/wtypes.h: Ditto.
10406
10407 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10408
10409         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10410         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10411
10412 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10413
10414         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10415
10416 2001-04-11  John Fortin  <fortinj@attglobal.net>
10417
10418         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10419         (*LPBOOL): Ditto.
10420
10421 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10422
10423         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10424         code will be included in every module which includes this header.
10425         (GetFiberData): Ditto.
10426
10427 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10428
10429         * include/winnt.h (GetCurrentFiber): Fix typo.
10430
10431 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10432
10433         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10434         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10435         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10436         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10437         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10438
10439         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10440         (GetCurrentFiber): Ditto.
10441         Thanks to: Andy Younger  <AndyY@redlemon.com>
10442
10443         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10444         DirectX 8 from complaining.
10445         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10446
10447 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10448
10449         * include/commctrl.h Updated TreeView and ListView defines and macros.
10450
10451 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10452
10453         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10454         and above.
10455
10456 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10457         * include/winuser.h (VK_KANA): New definition.
10458         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10459
10460 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10461
10462         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10463         (RT_FONT): Ditto.
10464         * include/basetsd.h (INT32): Ditto.
10465         * include/windef.h (ATOM): Ditto.
10466         (BOOL): Ditto.
10467         (BYTE): Ditto.
10468         * include/winbase.h (FreeResource): Ditto.
10469         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10470
10471 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10472
10473         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10474         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10475         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10476         macro now defined in newlib sys/types.h.  Emit warning if defined.
10477         * include/winsock2.h: Ditto.
10478         * include/windows.h (Win32_Winsock): Replace with new macros
10479         __USE_W32_SOCKETS and warn of deprecation.
10480
10481 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10482
10483         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10484         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10485
10486 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10487
10488         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10489         (TB_GETBUTTONSIZE): Ditto.
10490         (TCS_HOTTRACK): Ditto.
10491         Thanks to: Chris Hansen <popeofpop@softhome.net>
10492
10493 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10494
10495         * Makefile.in: (snapshot): Add target.
10496         * lib/Makefile.in: (install-headers): Use installdir variable.
10497         (installdir): Set value based on target-alias.
10498
10499 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10500
10501         * include/w32api.h: (_W32API_VERSION): Remove.
10502         (__W32API_VERSION): Add.
10503         (__W32API_MAJOR_VERSION): Ditto.
10504         (__W32API_MINOR_VERSION): Ditto.
10505
10506 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10507
10508         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10509         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10510         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10511         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10512
10513 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10514
10515         * include/mswsock.h: New file.
10516         * include/ws2tcpip.h: New file.
10517         * include/winsock.h (IPPROTO_IGMP): New define.
10518         (IPPROTO_GGP): Correct value.
10519         (SO_* macros): Remove mswsock defines.
10520         (TCP_BSDURGENT): Likewise.
10521         (IP_* macros): Add comment warning of WinSock2 incompatibility
10522         (WSARecvEx): Remove mswsock prototype.
10523         (TransmitFile): Likewise.
10524         (AcceptEx): Likewise.
10525         (GetAcceptExSockaddrs): Likewise.
10526         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10527         (#include <mswsock.h>): Add directive and explanatory comment
10528         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10529         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10530         (#include <winsock.h>): Replace directive with winsock.h file content
10531         The following changes apply to the merged file:
10532         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10533         (SOMAXCONN): Likewise
10534         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10535         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10536         in ws2tcpip.h)
10537         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10538         (FD_*_BIT and FD_* defines): Place together and extend to
10539         FD_MAX_EVENTS 10
10540         (AF* defines): Extend to AF_MAX 10
10541         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10542         (WSAUnhookBlockingHook): Likewise.
10543         (WSASetBlockingHook): Likewise.
10544         (WSACancelBlockingCall): Likewise.
10545         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10546         (#include <mswsock.h>): Delete directive inherited from winsock.h
10547         (WSA_QOS* defines): Add QualityOfService error codes.
10548         (SIO_* defines): Add new macros
10549         * include/ipexport.h (IP_STATUS flags): Add definitions.
10550         (IP_FLAG_DF): Likewise.
10551         (IP_OPT_* ): Likewise.
10552         (struct ip_option_information): Likewise.
10553         (struct icmp_echo_reply): Likewise.
10554
10555 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10556
10557         * include/commctrl.h: Revert TEXT change.
10558         * include/lmalert.h: Ditto.
10559         * include/lmcons.h: Ditto.
10560         * include/lmsname.h: Ditto.
10561         * include/lmsvc.h: Ditto.
10562         * include/ntsecapi.h: Ditto.
10563         * include/oledlg.h: Ditto.
10564         * include/ras.h: Ditto.
10565         * include/regstr.h: Ditto.
10566         * include/richedit.h: Ditto.
10567         * include/wininet.h: Ditto.
10568         * include/winnt.h: Ditto.
10569
10570 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10571
10572         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10573         * include/lmalert.h: Ditto.
10574         * include/lmcons.h: Ditto.
10575         * include/lmsname.h: Ditto.
10576         * include/lmsvc.h: Ditto.
10577         * include/ntsecapi.h: Ditto.
10578         * include/oledlg.h: Ditto.
10579         * include/ras.h: Ditto.
10580         * include/regstr.h: Ditto.
10581         * include/richedit.h: Ditto.
10582         * include/wininet.h: Ditto.
10583         * include/w32api.h: New File.
10584
10585 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10586
10587         * include/shlobj.h: Add missing SLR_* flags.
10588
10589 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10590
10591         * lib/Makefile.in: (host_alias): Add variable.
10592         (host_build): Ditto:
10593         (xinstall): Removed
10594         (xinstall-libraries): Ditto.
10595         (xinstall-headers): Ditto.
10596         (xuninstall): Ditto.
10597         (xuninstall-libraries): Ditto.
10598         (xuninstall-headers): Ditto.
10599         * Makefile.in: (host_alias): Add variable.
10600         (build_alias): Ditto.
10601
10602 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10603
10604         * include/winnt.h: (__TEXT): Add private macro.
10605         (_TEXT): Modify definition to use __TEXT.
10606         (_T): Ditto.
10607         This change allows the passing of a MACRO as an argument and have that
10608         MACRO resolved first.
10609         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10610
10611 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10612
10613         * Makefile.in: Increment VERSION to 0.5
10614         * include/winnt.h: Change TEXT to _TEXT throughout.
10615         (SID_RELEASE): Define.
10616         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10617
10618 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10619
10620         * Apply Phil Krylov patches.
10621         2001-01-19  Phil Krylov  <phil@mail.ru>
10622         * include/commctrl.h: (HDI_IMAGE) New definition.
10623         (HDI_DI_SETITEM) Ditto.
10624         (HDI_ORDER) Ditto.
10625         (HDI_FILTER) Ditto.
10626         (HDF_BITMAP_ON_RIGHT) Ditto.
10627         (HDF_IMAGE) Ditto.
10628         (HDM_SETORDERARRAY) Ditto.
10629         (Header_SetOrderArray) Ditto.
10630         (ICC_BAR_CLASSES) Ditto.
10631         (struct _HD_ITEMA) Change definition.
10632         (struct _HD_ITEMW) Ditto.
10633         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10634         (InitCommonControlsEx()) Ditto.
10635         2001-01-23  Phil Krylov  <phil@mail.ru>
10636         * include/richedit.h: Many Richedit 2.0 definitions.
10637
10638 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10639
10640         * include/winuser.h: (IDC_HAND)  New resource identifier.
10641         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10642
10643 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10644
10645         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10646         Fix typo's.
10647
10648 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10649
10650         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10651         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10652         Thanks To: <bge@users.sourceforge.net>
10653
10654 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10655
10656         * Apply Danny Smith patch 102386
10657         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10658         * lib/rasapi32.def: add symbols available in NT4 and W2k
10659
10660 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10661
10662         * Apply Danny Smith patch 102382
10663         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10664         * lib/mswsock.def: remove leading underscores from symbol names
10665
10666 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10667
10668         * Apply Danny Smith patch 102446
10669         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10670         * include/sql.h (ODBCVER): change default to 0x0351.
10671         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10672         (SQLColAttributes): likewise.
10673         (SQLBindParam): add prototype for ODBC 3.x function.
10674         (SQLCloseCursor): likewise.
10675         (SQLColAttribute): likewise.
10676         (SQLCopyDesc):likewise.
10677         (SQLEndTran): likewise.
10678         (SQLFetchScroll): likewise.
10679         (SQLGetConnectAttr): likewise.
10680         (SQLGetDescField): likewise.
10681         (SQLGetDescRec): likewise.
10682         (SQLGetDiagField): likewise.
10683         (SQLGetDiagRec): likewise.
10684         (SQLGetEnvAttr): likewise.
10685         (SQLGetStmtAttr): likewise.
10686         (SQLSetConnectAttr): likewise.
10687         (SQLSetDescField):likewise.
10688         (SQLSetDescRec): likewise.
10689         (SQLSetEnvAttr): likewise.
10690         (SQLSetStmtAttr): likewise.
10691         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10692         _WIN64 compatability;
10693         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10694         (SQL_ACTIVE_CONNECTIONS): likewise.
10695         (SQL_ACTIVE_STATEMENTS): likewise.
10696         (SQL_ALL_EXCEPT_LIKE): likewise.
10697         (SQL_API_ALL_FUNCTIONS): likewise.
10698         (SQL_API_LOADBYORDINAL): likewise.
10699         (SQL_API_SQLBINDPARAMETER): likewise.
10700         (SQL_API_SQLBROWSECONNECT): likewise.
10701         (SQL_API_SQLCOLATTRIBUTES): likewise.
10702         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10703         (SQL_API_SQLDESCRIBEPARAM): likewise.
10704         (SQL_API_SQLDRIVERCONNECT): likewise.
10705         (SQL_API_SQLDRIVERS): likewise.
10706         (SQL_API_SQLEXTENDEDFETCH): likewise.
10707         (SQL_API_SQLFOREIGNKEYS): likewise.
10708         (SQL_API_SQLMORERESULTS): likewise.
10709         (SQL_API_SQLNATIVESQL): likewise.
10710         (SQL_API_SQLNUMPARAMS): likewise.
10711         (SQL_API_SQLPARAMOPTIONS): likewise.
10712         (SQL_API_SQLPRIMARYKEYS): likewise.
10713         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10714         (SQL_API_SQLPROCEDURES): likewise.
10715         (SQL_API_SQLSETPOS): likewise.
10716         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10717         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10718         (SQL_ASYNC_ENABLE): likewise.
10719         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10720         (SQL_ASYNC_ENABLE_OFF): likewise.
10721         (SQL_ASYNC_ENABLE_ON): likewise.
10722         (SQL_ATTR_READONLY): likewise.
10723         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10724         (SQL_ATTR_WRITE): likewise.
10725         (SQL_AUTOCOMMIT): likewise.
10726         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10727         (SQL_AUTOCOMMIT_OFF): likewise.
10728         (SQL_AUTOCOMMIT_ON): likewise.
10729         (SQL_BEST_ROWID): likewise.
10730         (SQL_BIGINT): likewise.
10731         (SQL_BINARY): likewise.
10732         (SQL_BIND_BY_COLUMN): likewise.
10733         (SQL_BIND_TYPE): likewise.
10734         (SQL_BIND_TYPE_DEFAULT): likewise.
10735         (SQL_BIT): likewise.
10736         (SQL_BOOKMARK_PERSISTENCE): likewise.
10737         (SQL_BP_CLOSE): likewise.
10738         (SQL_BP_DELETE): likewise.
10739         (SQL_BP_DROP): likewise.
10740         (SQL_BP_OTHER_HSTMT): likewise.
10741         (SQL_BP_SCROLL): likewise.
10742         (SQL_BP_TRANSACTION): likewise.
10743         (SQL_BP_UPDATE): likewise.
10744         (SQL_C_BINARY): likewise.
10745         (SQL_C_BIT): likewise.
10746         (SQL_C_BOOKMARK): likewise.
10747         (SQL_C_CHAR): likewise.
10748         (SQL_C_DATE): likewise.
10749         (SQL_C_DEFAULT): likewise.
10750         (SQL_C_DOUBLE): likewise.
10751         (SQL_C_FLOAT): likewise.
10752         (SQL_C_LONG): likewise.
10753         (SQL_C_SHORT): likewise.
10754         (SQL_C_SLONG): likewise.
10755         (SQL_C_SSHORT): likewise.
10756         (SQL_C_STINYINT): likewise.
10757         (SQL_C_TIME): likewise.
10758         (SQL_C_TIMESTAMP): likewise.
10759         (SQL_C_TINYINT): likewise.
10760         (SQL_C_ULONG): likewise.
10761         (SQL_C_USHORT): likewise.
10762         (SQL_C_UTINYINT): likewise.
10763         (SQL_CB_NON_NULL): likewise.
10764         (SQL_CB_NULL): likewise.
10765         (SQL_CC_CLOSE): likewise.
10766         (SQL_CC_DELETE): likewise.
10767         (SQL_CC_PRESERVE): likewise.
10768         (SQL_CN_ANY): likewise.
10769         (SQL_CN_DIFFERENT): likewise.
10770         (SQL_CN_NONE): likewise.
10771         (SQL_COLATT_OPT_MAX): likewise.
10772         (SQL_COLATT_OPT_MIN): likewise.
10773         (SQL_COLUMN_ALIAS): likewise.
10774         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10775         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10776         (SQL_COLUMN_COUNT): likewise.
10777         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10778         (SQL_COLUMN_DRIVER_START): likewise.
10779         (SQL_COLUMN_LABEL): likewise.
10780         (SQL_COLUMN_LENGTH): likewise.
10781         (SQL_COLUMN_MONEY): likewise.
10782         (SQL_COLUMN_NAME): likewise.
10783         (SQL_COLUMN_NULLABLE): likewise.
10784         (SQL_COLUMN_OWNER_NAME): likewise.
10785         (SQL_COLUMN_PRECISION): likewise.
10786         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10787         (SQL_COLUMN_SCALE): likewise.
10788         (SQL_COLUMN_SEARCHABLE): likewise.
10789         (SQL_COLUMN_TABLE_NAME): likewise.
10790         (SQL_COLUMN_TYPE): likewise.
10791         (SQL_COLUMN_TYPE_NAME): likewise.
10792         (SQL_COLUMN_UNSIGNED): likewise.
10793         (SQL_COLUMN_UPDATABLE): likewise.
10794         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10795         (SQL_CONCUR_DEFAULT): likewise.
10796         (SQL_CONCUR_LOCK): likewise.
10797         (SQL_CONCUR_READ_ONLY): likewise.
10798         (SQL_CONCUR_ROWVER): likewise.
10799         (SQL_CONCUR_TIMESTAMP): likewise.
10800         (SQL_CONCUR_VALUES): likewise.
10801         (SQL_CONCURRENCY): likewise.
10802         (SQL_CONN_OPT_MAX): likewise.
10803         (SQL_CONN_OPT_MIN): likewise.
10804         (SQL_CONNECT_OPT_DRVR_START): likewise.
10805         (SQL_CONVERT_BIGINT): likewise.
10806         (SQL_CONVERT_BINARY): likewise.
10807         (SQL_CONVERT_BIT): likewise.
10808         (SQL_CONVERT_CHAR): likewise.
10809         (SQL_CONVERT_DATE): likewise.
10810         (SQL_CONVERT_DECIMAL): likewise.
10811         (SQL_CONVERT_DOUBLE): likewise.
10812         (SQL_CONVERT_FLOAT): likewise.
10813         (SQL_CONVERT_FUNCTIONS): likewise.
10814         (SQL_CONVERT_INTEGER): likewise.
10815         (SQL_CONVERT_LONGVARBINARY): likewise.
10816         (SQL_CONVERT_LONGVARCHAR): likewise.
10817         (SQL_CONVERT_NUMERIC): likewise.
10818         (SQL_CONVERT_REAL): likewise.
10819         (SQL_CONVERT_SMALLINT): likewise.
10820         (SQL_CONVERT_TIME): likewise.
10821         (SQL_CONVERT_TIMESTAMP): likewise.
10822         (SQL_CONVERT_TINYINT): likewise.
10823         (SQL_CONVERT_VARBINARY): likewise.
10824         (SQL_CONVERT_VARCHAR): likewise.
10825         (SQL_CORRELATION_NAME): likewise.
10826         (SQL_CR_CLOSE): likewise.
10827         (SQL_CR_DELETE): likewise.
10828         (SQL_CR_PRESERVE): likewise.
10829         (SQL_CUR_DEFAULT): likewise.
10830         (SQL_CUR_USE_DRIVER): likewise.
10831         (SQL_CUR_USE_IF_NEEDED): likewise.
10832         (SQL_CUR_USE_ODBC): likewise.
10833         (SQL_CURRENT_QUALIFIER): likewise.
10834         (SQL_CURSOR_DYNAMIC): likewise.
10835         (SQL_CURSOR_FORWARD_ONLY): likewise.
10836         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
10837         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
10838         (SQL_CURSOR_STATIC): likewise.
10839         (SQL_CURSOR_TYPE): likewise.
10840         (SQL_CURSOR_TYPE_DEFAULT): likewise.
10841         (SQL_CVT_BIGINT): likewise.
10842         (SQL_CVT_BINARY): likewise.
10843         (SQL_CVT_BIT): likewise.
10844         (SQL_CVT_CHAR): likewise.
10845         (SQL_CVT_DATE): likewise.
10846         (SQL_CVT_DECIMAL): likewise.
10847         (SQL_CVT_DOUBLE): likewise.
10848         (SQL_CVT_FLOAT): likewise.
10849         (SQL_CVT_INTEGER): likewise.
10850         (SQL_CVT_LONGVARBINARY): likewise.
10851         (SQL_CVT_LONGVARCHAR): likewise.
10852         (SQL_CVT_NUMERIC): likewise.
10853         (SQL_CVT_REAL): likewise.
10854         (SQL_CVT_SMALLINT): likewise.
10855         (SQL_CVT_TIME): likewise.
10856         (SQL_CVT_TIMESTAMP): likewise.
10857         (SQL_CVT_TINYINT): likewise.
10858         (SQL_CVT_VARBINARY): likewise.
10859         (SQL_CVT_VARCHAR): likewise.
10860         (SQL_DATABASE_NAME): likewise.
10861         (SQL_DATE): likewise.
10862         (SQL_DRIVER_HDBC): likewise.
10863         (SQL_DRIVER_HENV): likewise.
10864         (SQL_DRIVER_HLIB): likewise.
10865         (SQL_DRIVER_HSTMT): likewise.
10866         (SQL_DRIVER_NAME): likewise.
10867         (SQL_DRIVER_ODBC_VER): likewise.
10868         (SQL_DRIVER_VER): likewise.
10869         (SQL_ENSURE): likewise.
10870         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
10871         (SQL_EXT_API_LAST): likewise.
10872         (SQL_EXT_API_START): likewise.
10873         (SQL_FD_FETCH_BOOKMARK): likewise.
10874         (SQL_FD_FETCH_PREV): likewise.
10875         (SQL_FD_FETCH_RESUME): likewise.
10876         (SQL_FETCH_PREV): likewise.
10877         (SQL_FETCH_RESUME): likewise.
10878         (SQL_FILE_NOT_SUPPORTED): likewise.
10879         (SQL_FILE_QUALIFIER): likewise.
10880         (SQL_FILE_TABLE): likewise.
10881         (SQL_FILE_USAGE): likewise.
10882         (SQL_FN_CVT_CONVERT): likewise.
10883         (SQL_FN_NUM_ABS): likewise.
10884         (SQL_FN_NUM_ACOS): likewise.
10885         (SQL_FN_NUM_ASIN): likewise.
10886         (SQL_FN_NUM_ATAN): likewise.
10887         (SQL_FN_NUM_ATAN2): likewise.
10888         (SQL_FN_NUM_CEILING): likewise.
10889         (SQL_FN_NUM_COS): likewise.
10890         (SQL_FN_NUM_COT): likewise.
10891         (SQL_FN_NUM_DEGREES): likewise.
10892         (SQL_FN_NUM_EXP): likewise.
10893         (SQL_FN_NUM_FLOOR): likewise.
10894         (SQL_FN_NUM_LOG): likewise.
10895         (SQL_FN_NUM_LOG10): likewise.
10896         (SQL_FN_NUM_MOD): likewise.
10897         (SQL_FN_NUM_PI): likewise.
10898         (SQL_FN_NUM_POWER): likewise.
10899         (SQL_FN_NUM_RADIANS): likewise.
10900         (SQL_FN_NUM_RAND): likewise.
10901         (SQL_FN_NUM_ROUND): likewise.
10902         (SQL_FN_NUM_SIGN): likewise.
10903         (SQL_FN_NUM_SIN): likewise.
10904         (SQL_FN_NUM_SQRT): likewise.
10905         (SQL_FN_NUM_TAN): likewise.
10906         (SQL_FN_NUM_TRUNCATE): likewise.
10907         (SQL_FN_STR_ASCII): likewise.
10908         (SQL_FN_STR_CHAR): likewise.
10909         (SQL_FN_STR_CONCAT): likewise.
10910         (SQL_FN_STR_DIFFERENCE): likewise.
10911         (SQL_FN_STR_INSERT): likewise.
10912         (SQL_FN_STR_LCASE): likewise.
10913         (SQL_FN_STR_LEFT): likewise.
10914         (SQL_FN_STR_LENGTH): likewise.
10915         (SQL_FN_STR_LOCATE): likewise.
10916         (SQL_FN_STR_LOCATE_2): likewise.
10917         (SQL_FN_STR_LTRIM): likewise.
10918         (SQL_FN_STR_REPEAT): likewise.
10919         (SQL_FN_STR_REPLACE): likewise.
10920         (SQL_FN_STR_RIGHT): likewise.
10921         (SQL_FN_STR_RTRIM): likewise.
10922         (SQL_FN_STR_SOUNDEX): likewise.
10923         (SQL_FN_STR_SPACE): likewise.
10924         (SQL_FN_STR_SUBSTRING): likewise.
10925         (SQL_FN_STR_UCASE): likewise.
10926         (SQL_FN_SYS_DBNAME): likewise.
10927         (SQL_FN_SYS_IFNULL): likewise.
10928         (SQL_FN_SYS_USERNAME): likewise.
10929         (SQL_FN_TD_CURDATE): likewise.
10930         (SQL_FN_TD_CURTIME): likewise.
10931         (SQL_FN_TD_DAYNAME): likewise.
10932         (SQL_FN_TD_DAYOFMONTH): likewise.
10933         (SQL_FN_TD_DAYOFWEEK): likewise.
10934         (SQL_FN_TD_DAYOFYEAR): likewise.
10935         (SQL_FN_TD_HOUR): likewise.
10936         (SQL_FN_TD_MINUTE): likewise.
10937         (SQL_FN_TD_MONTH): likewise.
10938         (SQL_FN_TD_MONTHNAME): likewise.
10939         (SQL_FN_TD_NOW): likewise.
10940         (SQL_FN_TD_QUARTER): likewise.
10941         (SQL_FN_TD_SECOND): likewise.
10942         (SQL_FN_TD_TIMESTAMPadd): likewise.
10943         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
10944         (SQL_FN_TD_WEEK): likewise.
10945         (SQL_FN_TD_YEAR): likewise.
10946         (SQL_FN_TSI_DAY): likewise.
10947         (SQL_FN_TSI_FRAC_SECOND): likewise.
10948         (SQL_FN_TSI_HOUR): likewise.
10949         (SQL_FN_TSI_MINUTE): likewise.
10950         (SQL_FN_TSI_MONTH): likewise.
10951         (SQL_FN_TSI_QUARTER): likewise.
10952         (SQL_FN_TSI_SECOND): likewise.
10953         (SQL_FN_TSI_WEEK): likewise.
10954         (SQL_FN_TSI_YEAR): likewise.
10955         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
10956         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
10957         (SQL_GB_NO_RELATION): likewise.
10958         (SQL_GB_NOT_SUPPORTED): likewise.
10959         (SQL_GD_BLOCK): likewise.
10960         (SQL_GD_BOUND): likewise.
10961         (SQL_GET_BOOKMARK): likewise.
10962         (SQL_GROUP_BY): likewise.
10963         (SQL_INFO_DRIVER_START): likewise.
10964         (SQL_INFO_FIRST): likewise.
10965         (SQL_INFO_LAST): likewise.
10966         (SQL_INTERVAL_DAY): likewise.
10967         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
10968         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
10969         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
10970         (SQL_INTERVAL_HOUR): likewise.
10971         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
10972         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
10973         (SQL_INTERVAL_MINUTE): likewise.
10974         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
10975         (SQL_INTERVAL_MONTH): likewise.
10976         (SQL_INTERVAL_SECOND): likewise.
10977         (SQL_INTERVAL_YEAR): likewise.
10978         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
10979         (SQL_KEYSET_SIZE): likewise.
10980         (SQL_KEYSET_SIZE_DEFAULT): likewise.
10981         (SQL_KEYWORDS): likewise.
10982         (SQL_LCK_EXCLUSIVE): likewise.
10983         (SQL_LCK_NO_CHANGE): likewise.
10984         (SQL_LCK_UNLOCK): likewise.
10985         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
10986         (SQL_LIKE_ONLY): likewise.
10987         (SQL_LOCK_TYPES): likewise.
10988         (SQL_LOGIN_TIMEOUT): likewise.
10989         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
10990         (SQL_LONGVARBINARY): likewise.
10991         (SQL_LONGVARCHAR): likewise.
10992         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
10993         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
10994         (SQL_MAX_DSN_LENGTH): likewise.
10995         (SQL_MAX_LENGTH): likewise.
10996         (SQL_MAX_LENGTH_DEFAULT): likewise.
10997         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
10998         (SQL_MAX_OWNER_NAME_LEN): likewise.
10999         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11000         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11001         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11002         (SQL_MAX_ROWS): likewise.
11003         (SQL_MAX_ROWS_DEFAULT): likewise.
11004         (SQL_MODE_DEFAULT): likewise.
11005         (SQL_MODE_READ_ONLY): likewise.
11006         (SQL_MODE_READ_WRITE): likewise.
11007         (SQL_MULT_RESULT_SETS): likewise.
11008         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11009         (SQL_NC_END): likewise.
11010         (SQL_NC_START): likewise.
11011         (SQL_NEED_LONG_DATA_LEN): likewise.
11012         (SQL_NNC_NON_NULL): likewise.
11013         (SQL_NNC_NULL): likewise.
11014         (SQL_NO_TOTAL): likewise.
11015         (SQL_NON_NULLABLE_COLUMNS): likewise.
11016         (SQL_NOSCAN): likewise.
11017         (SQL_NOSCAN_DEFAULT): likewise.
11018         (SQL_NOSCAN_OFF): likewise.
11019         (SQL_NOSCAN_ON): likewise.
11020         (SQL_NUM_EXTENSIONS): likewise.
11021         (SQL_NUM_FUNCTIONS): likewise.
11022         (SQL_NUMERIC_FUNCTIONS): likewise.
11023         (SQL_OAC_LEVEL1): likewise.
11024         (SQL_OAC_LEVEL2): likewise.
11025         (SQL_OAC_NONE): likewise.
11026         (SQL_ODBC_API_CONFORMANCE): likewise.
11027         (SQL_ODBC_CURSORS): likewise.
11028         (SQL_ODBC_KEYWORDS): likewise.
11029         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11030         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11031         (SQL_ODBC_SQL_OPT_IEF): likewise.
11032         (SQL_ODBC_VER): likewise.
11033         (SQL_OPT_TRACE): likewise.
11034         (SQL_OPT_TRACE_DEFAULT): likewise.
11035         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11036         (SQL_OPT_TRACE_OFF): likewise.
11037         (SQL_OPT_TRACE_ON): likewise.
11038         (SQL_OPT_TRACEFILE): likewise.
11039         (SQL_OSC_CORE): likewise.
11040         (SQL_OSC_EXTENDED): likewise.
11041         (SQL_OSC_MINIMUM): likewise.
11042         (SQL_OSCC_COMPLIANT): likewise.
11043         (SQL_OSCC_NOT_COMPLIANT): likewise.
11044         (SQL_OU_DML_STATEMENTS): likewise.
11045         (SQL_OU_INDEX_DEFINITION): likewise.
11046         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11047         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11048         (SQL_OU_TABLE_DEFINITION): likewise.
11049         (SQL_OUTER_JOINS): likewise.
11050         (SQL_OWNER_TERM): likewise.
11051         (SQL_OWNER_USAGE): likewise.
11052         (SQL_PACKET_SIZE): likewise.
11053         (SQL_PC_NOT_PSEUDO): likewise.
11054         (SQL_POS_add): likewise.
11055         (SQL_POS_DELETE): likewise.
11056         (SQL_POS_OPERATIONS): likewise.
11057         (SQL_POS_POSITION): likewise.
11058         (SQL_POS_REFRESH): likewise.
11059         (SQL_POS_UPDATE): likewise.
11060         (SQL_POSITIONED_STATEMENTS): likewise.
11061         (SQL_PROCEDURE_TERM): likewise.
11062         (SQL_PROCEDURES): likewise.
11063         (SQL_PS_POSITIONED_DELETE): likewise.
11064         (SQL_PS_POSITIONED_UPDATE): likewise.
11065         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11066         (SQL_QL_END): likewise.
11067         (SQL_QL_START): likewise.
11068         (SQL_QU_DML_STATEMENTS): likewise.
11069         (SQL_QU_INDEX_DEFINITION): likewise.
11070         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11071         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11072         (SQL_QU_TABLE_DEFINITION): likewise.
11073         (SQL_QUALIFIER_LOCATION): likewise.
11074         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11075         (SQL_QUALIFIER_TERM): likewise.
11076         (SQL_QUALIFIER_USAGE): likewise.
11077         (SQL_QUERY_TIMEOUT): likewise.
11078         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11079         (SQL_QUICK): likewise.
11080         (SQL_QUIET_MODE): likewise.
11081         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11082         (SQL_RD_DEFAULT): likewise.
11083         (SQL_RD_OFF): likewise.
11084         (SQL_RD_ON): likewise.
11085         (SQL_RETRIEVE_DATA): likewise.
11086         (SQL_ROW_NUMBER): likewise.
11087         (SQL_ROW_UPDATES): likewise.
11088         (SQL_ROWSET_SIZE): likewise.
11089         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11090         (SQL_ROWVER): likewise.
11091         (SQL_SC_NON_UNIQUE): likewise.
11092         (SQL_SC_TRY_UNIQUE): likewise.
11093         (SQL_SC_UNIQUE): likewise.
11094         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11095         (SQL_SCROLL_DYNAMIC): likewise.
11096         (SQL_SCROLL_FORWARD_ONLY): likewise.
11097         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11098         (SQL_SCROLL_OPTIONS): likewise.
11099         (SQL_SCROLL_STATIC): likewise.
11100         (SQL_SEARCHABLE): likewise.
11101         (SQL_SIGNED_OFFSET): likewise.
11102         (SQL_SIMULATE_CURSOR): likewise.
11103         (SQL_SO_DYNAMIC): likewise.
11104         (SQL_SO_FORWARD_ONLY): likewise.
11105         (SQL_SO_KEYSET_DRIVEN): likewise.
11106         (SQL_SO_MIXED): likewise.
11107         (SQL_SO_STATIC): likewise.
11108         (SQL_SPEC_MAJOR): likewise.
11109         (SQL_SPEC_MINOR): likewise.
11110         (SQL_SPEC_STRING): likewise.
11111         (SQL_SQ_COMPARISON): likewise.
11112         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11113         (SQL_SQ_EXISTS): likewise.
11114         (SQL_SQ_IN): likewise.
11115         (SQL_SQ_QUANTIFIED): likewise.
11116         (SQL_SQLSTATE_SIZE): likewise.
11117         (SQL_SS_addITIONS): likewise.
11118         (SQL_SS_DELETIONS): likewise.
11119         (SQL_SS_UPDATES): likewise.
11120         (SQL_STATIC_SENSITIVITY): likewise.
11121         (SQL_STMT_OPT_MAX): likewise.
11122         (SQL_STMT_OPT_MIN): likewise.
11123         (SQL_STRING_FUNCTIONS): likewise.
11124         (SQL_SUBQUERIES): likewise.
11125         (SQL_SYSTEM_FUNCTIONS): likewise.
11126         (SQL_TABLE_STAT): likewise.
11127         (SQL_TABLE_TERM): likewise.
11128         (SQL_TIME): likewise.
11129         (SQL_TIMEDATE_add_INTERVALS): likewise.
11130         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11131         (SQL_TIMEDATE_FUNCTIONS): likewise.
11132         (SQL_TIMESTAMP): likewise.
11133         (SQL_TINYINT): likewise.
11134         (SQL_TRANSLATE_DLL): likewise.
11135         (SQL_TRANSLATE_OPTION): likewise.
11136         (SQL_TXN_ISOLATION): likewise.
11137         (SQL_TXN_VERSIONING): likewise.
11138         (SQL_TYPE_DRIVER_END): likewise.
11139         (SQL_TYPE_DRIVER_START): likewise.
11140         (SQL_TYPE_MAX): likewise.
11141         (SQL_TYPE_MIN): likewise.
11142         (SQL_TYPE_NULL): likewise.
11143         (SQL_U_UNION): likewise.
11144         (SQL_U_UNION_ALL): likewise.
11145         (SQL_UB_DEFAULT): likewise.
11146         (SQL_UB_OFF): likewise.
11147         (SQL_UB_ON): likewise.
11148         (SQL_UNICODE): likewise.
11149         (SQL_UNICODE_CHAR): likewise.
11150         (SQL_UNICODE_LONGVARCHAR): likewise.
11151         (SQL_UNICODE_VARCHAR): likewise.
11152         (SQL_UNION): likewise.
11153         (SQL_UNSEARCHABLE): likewise.
11154         (SQL_UNSIGNED_OFFSET): likewise.
11155         (SQL_USE_BOOKMARKS): likewise.
11156         (SQL_VARBINARY): likewise.
11157         (SQL_TRUE): add define for ODBC3.x.
11158         (SQL_FALSE): likewise.
11159         (SQL_AM_CONNECTION): likewise.
11160         (SQL_AM_NONE): likewise.
11161         (SQL_AM_STATEMENT): likewise.
11162         (SQL_API_SQLALLOCHANDLE): likewise.
11163         (SQL_API_SQLBINDPARAM): likewise.
11164         (SQL_API_SQLCLOSECURSOR): likewise.
11165         (SQL_API_SQLCOLATTRIBUTE): likewise.
11166         (SQL_API_SQLCOPYDESC): likewise.
11167         (SQL_API_SQLENDTRAN): likewise.
11168         (SQL_API_SQLFETCHSCROLL): likewise.
11169         (SQL_API_SQLFREEHANDLE): likewise.
11170         (SQL_API_SQLGETCONNECTATTR): likewise.
11171         (SQL_API_SQLGETDESCFIELD): likewise.
11172         (SQL_API_SQLGETDESCREC): likewise.
11173         (SQL_API_SQLGETDIAGFIELD): likewise.
11174         (SQL_API_SQLGETDIAGREC): likewise.
11175         (SQL_API_SQLGETENVATTR): likewise.
11176         (SQL_API_SQLGETSTMTATTR): likewise.
11177         (SQL_API_SQLSETCONNECTATTR): likewise.
11178         (SQL_API_SQLSETDESCFIELD): likewise.
11179         (SQL_API_SQLSETDESCREC): likewise.
11180         (SQL_API_SQLSETENVATTR): likewise.
11181         (SQL_API_SQLSETSTMTATTR): likewise.
11182         (SQL_ARD_TYPE): likewise.
11183         (SQL_AT_add_CONSTRAINT): likewise.
11184         (SQL_ATTR_APP_PARAM_DESC): likewise.
11185         (SQL_ATTR_APP_ROW_DESC): likewise.
11186         (SQL_ATTR_AUTO_IPD): likewise.
11187         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11188         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11189         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11190         (SQL_ATTR_IMP_ROW_DESC): likewise.
11191         (SQL_ATTR_METADATA_ID): likewise.
11192         (SQL_ATTR_OUTPUT_NTS): likewise.
11193         (SQL_CATALOG_NAME): likewise.
11194         (SQL_CODE_DATE): likewise.
11195         (SQL_CODE_TIME): likewise.
11196         (SQL_CODE_TIMESTAMP): likewise.
11197         (SQL_COLLATION_SEQ): likewise.
11198         (SQL_CURSOR_SENSITIVITY): likewise.
11199         (SQL_DATE_LEN): likewise.
11200         (SQL_DATETIME): likewise.
11201         (SQL_DEFAULT): likewise.
11202         (SQL_DESC_ALLOC_AUTO): likewise.
11203         (SQL_DESC_ALLOC_TYPE): likewise.
11204         (SQL_DESC_ALLOC_USER): likewise.
11205         (SQL_DESC_COUNT): likewise.
11206         (SQL_DESC_DATA_PTR): likewise.
11207         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11208         (SQL_DESC_INDICATOR_PTR): likewise.
11209         (SQL_DESC_LENGTH): likewise.
11210         (SQL_DESC_NAME): likewise.
11211         (SQL_DESC_NULLABLE): likewise.
11212         (SQL_DESC_OCTET_LENGTH): likewise.
11213         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11214         (SQL_DESC_PRECISION): likewise.
11215         (SQL_DESC_SCALE): likewise.
11216         (SQL_DESC_TYPE): likewise.
11217         (SQL_DESC_UNNAMED): likewise.
11218         (SQL_DESCRIBE_PARAMETER): likewise.
11219         (SQL_DIAG_ALTER_DOMAIN): likewise.
11220         (SQL_DIAG_ALTER_TABLE): likewise.
11221         (SQL_DIAG_CALL): likewise.
11222         (SQL_DIAG_CLASS_ORIGIN): likewise.
11223         (SQL_DIAG_CONNECTION_NAME): likewise.
11224         (SQL_DIAG_CREATE_ASSERTION): likewise.
11225         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11226         (SQL_DIAG_CREATE_COLLATION): likewise.
11227         (SQL_DIAG_CREATE_DOMAIN): likewise.
11228         (SQL_DIAG_CREATE_INDEX): likewise.
11229         (SQL_DIAG_CREATE_SCHEMA): likewise.
11230         (SQL_DIAG_CREATE_TABLE): likewise.
11231         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11232         (SQL_DIAG_CREATE_VIEW): likewise.
11233         (SQL_DIAG_DELETE_WHERE): likewise.
11234         (SQL_DIAG_DROP_ASSERTION): likewise.
11235         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11236         (SQL_DIAG_DROP_COLLATION): likewise.
11237         (SQL_DIAG_DROP_DOMAIN): likewise.
11238         (SQL_DIAG_DROP_INDEX): likewise.
11239         (SQL_DIAG_DROP_SCHEMA): likewise.
11240         (SQL_DIAG_DROP_TABLE): likewise.
11241         (SQL_DIAG_DROP_TRANSLATION): likewise.
11242         (SQL_DIAG_DROP_VIEW): likewise.
11243         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11244         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11245         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11246         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11247         (SQL_DIAG_GRANT): likewise.
11248         (SQL_DIAG_INSERT): likewise.
11249         (SQL_DIAG_MESSAGE_TEXT): likewise.
11250         (SQL_DIAG_NATIVE): likewise.
11251         (SQL_DIAG_NUMBER): likewise.
11252         (SQL_DIAG_RETURNCODE): likewise.
11253         (SQL_DIAG_REVOKE): likewise.
11254         (SQL_DIAG_ROW_COUNT): likewise.
11255         (SQL_DIAG_SELECT_CURSOR): likewise.
11256         (SQL_DIAG_SERVER_NAME): likewise.
11257         (SQL_DIAG_SQLSTATE): likewise.
11258         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11259         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11260         (SQL_DIAG_UPDATE_WHERE): likewise.
11261         (SQL_FALSE): likewise.
11262         (SQL_FETCH_ABSOLUTE): likewise.
11263         (SQL_FETCH_LAST): likewise.
11264         (SQL_FETCH_PRIOR): likewise.
11265         (SQL_FETCH_RELATIVE): likewise.
11266         (SQL_HANDLE_DBC): likewise.
11267         (SQL_HANDLE_DESC): likewise.
11268         (SQL_HANDLE_ENV): likewise.
11269         (SQL_HANDLE_STMT): likewise.
11270         (SQL_INSENSITIVE): likewise.
11271         (SQL_INTEGRITY): likewise.
11272         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11273         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11274         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11275         (SQL_MAX_IDENTIFIER_LEN): likewise.
11276         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11277         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11278         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11279         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11280         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11281         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11282         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11283         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11284         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11285         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11286         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11287         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11288         (SQL_MAXIMUM_ROW_SIZE): likewise.
11289         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11290         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11291         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11292         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11293         (SQL_NAMED): likewise.
11294         (SQL_NONSCROLLABLE): likewise.
11295         (SQL_NTSL): likewise.
11296         (SQL_NULL_HANDLE): likewise.
11297         (SQL_NULL_HDESC): likewise.
11298         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11299         (SQL_PRED_BASIC): likewise.
11300         (SQL_PRED_CHAR): likewise.
11301         (SQL_PRED_NONE): likewise.
11302         (SQL_ROW_IDENTIFIER): likewise.
11303         (SQL_SCROLLABLE): likewise.
11304         (SQL_SENSITIVE): likewise.
11305         (SQL_SUCCEEDED(rc)): likewise.
11306         (SQL_TIME_LEN): likewise.
11307         (SQL_TIMESTAMP_LEN): likewise.
11308         (SQL_TRANSACTION_CAPABLE): likewise.
11309         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11310         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11311         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11312         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11313         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11314         (SQL_TYPE_DATE): likewise.
11315         (SQL_TYPE_TIME): likewise.
11316         (SQL_TYPE_TIMESTAMP): likewise.
11317         (SQL_UNKNOWN_TYPE): likewise.
11318         (SQL_UNNAMED): likewise.
11319         (SQL_UNSPECIFIED): likewise.
11320         (SQL_XOPEN_CLI_YEAR): likewise.
11321         (SQLAllocConnect): add comment marking as deperecated.
11322         (SQLAllocEnv): likewise.
11323         (SQLAllocStmt): likewise.
11324         (SQLFreeConnect): likewise.
11325         (SQLFreeEnv): likewise.
11326         (SQLGetConnectOption): likewise.
11327         (SQLGetStmtOption): likewise.
11328
11329         * include/sqlext.h (#include <sqlucode.h>): add directive.
11330         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11331         (SQLColAttributes): likewise.
11332         (SQLBulkOperations): add function prototype.
11333         (SQLAllocHandleStd): likewise
11334         (TraceReturn): add Trace API prototype.
11335         (TraceVersion): likewise.
11336         (ODBCGetTryWaitValue):likewise.
11337         (ODBCSetTryWaitValue): likewise.
11338         (SQL_LOCK_RECORD): correct function macro.
11339         (SQL_REFRESH_RECORD): likewise.
11340         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11341         _WIN64 compatability.
11342         move defines for non-core functions from sql.h to sqlext.h (refer
11343         changes for sql.h)
11344         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11345         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11346         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11347         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11348         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11349         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11350         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11351         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11352         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11353         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11354         (SQL_AF_ALL): likewise.
11355         (SQL_AF_AVG): likewise.
11356         (SQL_AF_COUNT): likewise.
11357         (SQL_AF_DISTINCT): likewise.
11358         (SQL_AF_MAX): likewise.
11359         (SQL_AF_MIN): likewise.
11360         (SQL_AF_SUM): likewise.
11361         (SQL_AGGREGATE_FUNCTIONS): likewise.
11362         (SQL_ALL_CATALOGS): likewise.
11363         (SQL_ALL_SCHEMAS): likewise.
11364         (SQL_ALL_TABLE_TYPES): likewise.
11365         (SQL_ALTER_DOMAIN): likewise.
11366         (SQL_AM_CONNECTION): likewise.
11367         (SQL_AM_NONE): likewise.
11368         (SQL_AM_STATEMENT): likewise.
11369         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11370         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11371         (SQL_API_SQLALLOCHANDLESTD): likewise.
11372         (SQL_API_SQLBULKOPERATIONS): likewise.
11373         (SQL_ASYNC_MODE): likewise.
11374         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11375         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11376         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11377         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11378         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11379         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11380         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11381         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11382         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11383         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11384         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11385         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11386         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11387         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11388         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11389         (SQL_ATTR_ACCESS_MODE): likewise.
11390         (SQL_ATTR_ASYNC_ENABLE): likewise.
11391         (SQL_ATTR_AUTOCOMMIT): likewise.
11392         (SQL_ATTR_CONCURRENCY): likewise.
11393         (SQL_ATTR_CONNECTION_POOLING): likewise.
11394         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11395         (SQL_ATTR_CP_MATCH): likewise.
11396         (SQL_ATTR_CURRENT_CATALOG): likewise.
11397         (SQL_ATTR_CURSOR_TYPE): likewise.
11398         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11399         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11400         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11401         (SQL_ATTR_ENLIST_IN_XA): likewise.
11402         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11403         (SQL_ATTR_KEYSET_SIZE): likewise.
11404         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11405         (SQL_ATTR_MAX_LENGTH): likewise.
11406         (SQL_ATTR_MAX_ROWS): likewise.
11407         (SQL_ATTR_NOSCAN): likewise.
11408         (SQL_ATTR_ODBC_CURSORS): likewise.
11409         (SQL_ATTR_ODBC_VERSION): likewise.
11410         (SQL_ATTR_PACKET_SIZE): likewise.
11411         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11412         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11413         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11414         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11415         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11416         (SQL_ATTR_PARAMSET_SIZE): likewise.
11417         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11418         (SQL_ATTR_QUIET_MODE): likewise.
11419         (SQL_ATTR_RETRIEVE_DATA): likewise.
11420         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11421         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11422         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11423         (SQL_ATTR_ROW_NUMBER): likewise.
11424         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11425         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11426         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11427         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11428         (SQL_ATTR_TRACE): likewise.
11429         (SQL_ATTR_TRACEFILE): likewise.
11430         (SQL_ATTR_TRANSLATE_LIB): likewise.
11431         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11432         (SQL_ATTR_TXN_ISOLATION): likewise.
11433         (SQL_ATTR_USE_BOOKMARKS): likewise.
11434         (SQL_BATCH_ROW_COUNT): likewise.
11435         (SQL_BATCH_SUPPORT): likewise.
11436         (SQL_BRC_EXPLICIT): likewise.
11437         (SQL_BRC_PROCEDURES): likewise.
11438         (SQL_BRC_ROLLED_UP): likewise.
11439         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11440         (SQL_BS_ROW_COUNT_PROC): likewise.
11441         (SQL_BS_SELECT_EXPLICIT): likewise.
11442         (SQL_BS_SELECT_PROC): likewise.
11443         (SQL_C_INTERVAL_DAY): likewise.
11444         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11445         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11446         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11447         (SQL_C_INTERVAL_HOUR): likewise.
11448         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11449         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11450         (SQL_C_INTERVAL_MINUTE): likewise.
11451         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11452         (SQL_C_INTERVAL_MONTH): likewise.
11453         (SQL_C_INTERVAL_SECOND): likewise.
11454         (SQL_C_INTERVAL_YEAR): likewise.
11455         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11456         (SQL_C_NUMERIC): likewise.
11457         (SQL_C_SBIGINT): likewise.
11458         (SQL_C_TYPE_DATE): likewise.
11459         (SQL_C_TYPE_TIME): likewise.
11460         (SQL_C_TYPE_TIMESTAMP): likewise.
11461         (SQL_C_UBIGINT): likewise.
11462         (SQL_C_VARBOOKMARK): likewise.
11463         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11464         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11465         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11466         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11467         (SQL_CA_CREATE_ASSERTION): likewise.
11468         (SQL_CA1_ABSOLUTE): likewise.
11469         (SQL_CA1_BOOKMARK): likewise.
11470         (SQL_CA1_BULK_ADD): likewise.
11471         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11472         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11473         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11474         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11475         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11476         (SQL_CA1_LOCK_UNLOCK): likewise.
11477         (SQL_CA1_NEXT): likewise.
11478         (SQL_CA1_POS_DELETE): likewise.
11479         (SQL_CA1_POS_POSITION): likewise.
11480         (SQL_CA1_POS_REFRESH): likewise.
11481         (SQL_CA1_POS_UPDATE): likewise.
11482         (SQL_CA1_POSITIONED_DELETE): likewise.
11483         (SQL_CA1_POSITIONED_UPDATE): likewise.
11484         (SQL_CA1_RELATIVE): likewise.
11485         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11486         (SQL_CA2_CRC_APPROXIMATE): likewise.
11487         (SQL_CA2_CRC_EXACT): likewise.
11488         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11489         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11490         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11491         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11492         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11493         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11494         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11495         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11496         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11497         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11498         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11499         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11500         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11501         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11502         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11503         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11504         (SQL_CATALOG_LOCATION): likewise.
11505         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11506         (SQL_CATALOG_TERM): likewise.
11507         (SQL_CATALOG_USAGE): likewise.
11508         (SQL_CCOL_CREATE_COLLATION): likewise.
11509         (SQL_CCS_COLLATE_CLAUSE): likewise.
11510         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11511         (SQL_CCS_LIMITED_COLLATION): likewise.
11512         (SQL_CDO_COLLATION): likewise.
11513         (SQL_CDO_CONSTRAINT): likewise.
11514         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11515         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11516         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11517         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11518         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11519         (SQL_CDO_CREATE_DOMAIN): likewise.
11520         (SQL_CDO_DEFAULT): likewise.
11521         (SQL_CL_END): likewise.
11522         (SQL_CL_START): likewise.
11523         (SQL_COL_PRED_BASIC): likewise.
11524         (SQL_COL_PRED_CHAR): likewise.
11525         (SQL_COLUMN_DRIVER_START): likewise.
11526         (SQL_COLUMN_IGNORE): likewise.
11527         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11528         (SQL_CONVERT_GUID): likewise.
11529         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11530         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11531         (SQL_CONVERT_WCHAR): likewise.
11532         (SQL_CONVERT_WLONGVARCHAR): likewise.
11533         (SQL_CONVERT_WVARCHAR): likewise.
11534         (SQL_CP_DEFAULT): likewise.
11535         (SQL_CP_MATCH_DEFAULT): likewise.
11536         (SQL_CP_OFF): likewise.
11537         (SQL_CP_ONE_PER_DRIVER): likewise.
11538         (SQL_CP_ONE_PER_HENV): likewise.
11539         (SQL_CP_RELAXED_MATCH): likewise.
11540         (SQL_CP_STRICT_MATCH): likewise.
11541         (SQL_CREATE_ASSERTION): likewise.
11542         (SQL_CREATE_CHARACTER_SET): likewise.
11543         (SQL_CREATE_COLLATION): likewise.
11544         (SQL_CREATE_DOMAIN): likewise.
11545         (SQL_CREATE_SCHEMA): likewise.
11546         (SQL_CREATE_TABLE): likewise.
11547         (SQL_CREATE_TRANSLATION): likewise.
11548         (SQL_CREATE_VIEW): likewise.
11549         (SQL_CS_AUTHORIZATION): likewise.
11550         (SQL_CS_CREATE_SCHEMA): likewise.
11551         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11552         (SQL_CT_COLUMN_COLLATION): likewise.
11553         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11554         (SQL_CT_COLUMN_DEFAULT): likewise.
11555         (SQL_CT_COMMIT_DELETE): likewise.
11556         (SQL_CT_COMMIT_PRESERVE): likewise.
11557         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11558         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11559         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11560         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11561         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11562         (SQL_CT_CREATE_TABLE): likewise.
11563         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11564         (SQL_CT_LOCAL_TEMPORARY): likewise.
11565         (SQL_CT_TABLE_CONSTRAINT): likewise.
11566         (SQL_CTR_CREATE_TRANSLATION): likewise.
11567         (SQL_CU_DML_STATEMENTS): likewise.
11568         (SQL_CU_INDEX_DEFINITION): likewise.
11569         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11570         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11571         (SQL_CU_TABLE_DEFINITION): likewise.
11572         (SQL_CVT_GUID): likewise.
11573         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11574         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11575         (SQL_CVT_WCHAR): likewise.
11576         (SQL_CVT_WLONGVARCHAR): likewise.
11577         (SQL_CVT_WVARCHAR): likewise.
11578         (SQL_DA_DROP_ASSERTION): likewise.
11579         (SQL_DATETIME_LITERALS): likewise.
11580         (SQL_DB_DEFAULT): likewise.
11581         (SQL_DB_DISCONNECT): likewise.
11582         (SQL_DB_RETURN_TO_POOL): likewise.
11583         (SQL_DC_DROP_COLLATION): likewise.
11584         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11585         (SQL_DD_CASCADE): likewise.
11586         (SQL_DD_DROP_DOMAIN): likewise.
11587         (SQL_DD_RESTRICT): likewise.
11588         (SQL_DDL_INDEX): likewise.
11589         (SQL_DELETE_BY_BOOKMARK): likewise.
11590         (SQL_DESC_ARRAY_SIZE): likewise.
11591         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11592         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11593         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11594         (SQL_DESC_BASE_TABLE_NAME): likewise.
11595         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11596         (SQL_DESC_BIND_TYPE): likewise.
11597         (SQL_DESC_CASE_SENSITIVE): likewise.
11598         (SQL_DESC_CATALOG_NAME): likewise.
11599         (SQL_DESC_CONCISE_TYPE): likewise.
11600         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11601         (SQL_DESC_DISPLAY_SIZE): likewise.
11602         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11603         (SQL_DESC_LABEL): likewise.
11604         (SQL_DESC_LITERAL_PREFIX): likewise.
11605         (SQL_DESC_LITERAL_SUFFIX): likewise.
11606         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11607         (SQL_DESC_MAXIMUM_SCALE): likewise.
11608         (SQL_DESC_MINIMUM_SCALE): likewise.
11609         (SQL_DESC_NUM_PREC_RADIX): likewise.
11610         (SQL_DESC_PARAMETER_TYPE): likewise.
11611         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11612         (SQL_DESC_SCHEMA_NAME): likewise.
11613         (SQL_DESC_SEARCHABLE): likewise.
11614         (SQL_DESC_TABLE_NAME): likewise.
11615         (SQL_DESC_TYPE_NAME): likewise.
11616         (SQL_DESC_UNSIGNED): likewise.
11617         (SQL_DESC_UPDATABLE): likewise.
11618         (SQL_DI_CREATE_INDEX): likewise.
11619         (SQL_DI_DROP_INDEX): likewise.
11620         (SQL_DIAG_COLUMN_NUMBER): likewise.
11621         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11622         (SQL_DIAG_ROW_NUMBER): likewise.
11623         (SQL_DL_SQL92_DATE): likewise.
11624         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11625         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11626         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11627         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11628         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11629         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11630         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11631         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11632         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11633         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11634         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11635         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11636         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11637         (SQL_DL_SQL92_TIME): likewise.
11638         (SQL_DL_SQL92_TIMESTAMP): likewise.
11639         (SQL_DM_VER): likewise.
11640         (SQL_DRIVER_HDESC): likewise.
11641         (SQL_DROP_ASSERTION): likewise.
11642         (SQL_DROP_CHARACTER_SET): likewise.
11643         (SQL_DROP_COLLATION): likewise.
11644         (SQL_DROP_DOMAIN): likewise.
11645         (SQL_DROP_SCHEMA): likewise.
11646         (SQL_DROP_TABLE): likewise.
11647         (SQL_DROP_TRANSLATION): likewise.
11648         (SQL_DROP_VIEW): likewise.
11649         (SQL_DS_CASCADE): likewise.
11650         (SQL_DS_DROP_SCHEMA): likewise.
11651         (SQL_DS_RESTRICT): likewise.
11652         (SQL_DT_CASCADE): likewise.
11653         (SQL_DT_DROP_TABLE): likewise.
11654         (SQL_DT_RESTRICT): likewise.
11655         (SQL_DTC_DONE): likewise.
11656         (SQL_DTR_DROP_TRANSLATION): likewise.
11657         (SQL_DV_CASCADE): likewise.
11658         (SQL_DV_DROP_VIEW): likewise.
11659         (SQL_DV_RESTRICT): likewise.
11660         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11661         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11662         (SQL_EXT_API_LAST): likewise.
11663         (SQL_EXT_API_START): likewise.
11664         (SQL_FETCH_BY_BOOKMARK): likewise.
11665         (SQL_FETCH_FIRST_SYSTEM): likewise.
11666         (SQL_FETCH_FIRST_USER): likewise.
11667         (SQL_FN_CVT_CAST): likewise.
11668         (SQL_FN_STR_BIT_LENGTH): likewise.
11669         (SQL_FN_STR_CHAR_LENGTH): likewise.
11670         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11671         (SQL_FN_STR_OCTET_LENGTH): likewise.
11672         (SQL_FN_STR_POSITION): likewise.
11673         (SQL_FN_TD_CURRENT_DATE): likewise.
11674         (SQL_FN_TD_CURRENT_TIME): likewise.
11675         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11676         (SQL_FN_TD_EXTRACT): likewise.
11677         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11678         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11679         (SQL_FUNC_EXISTS(exists,api)): likewise.
11680         (SQL_GB_COLLATE): likewise.
11681         (SQL_HANDLE_SENV): likewise.
11682         (SQL_IK_ALL): likewise.
11683         (SQL_IK_ASC): likewise.
11684         (SQL_IK_DESC): likewise.
11685         (SQL_IK_NONE): likewise.
11686         (SQL_INDEX_KEYWORDS): likewise.
11687         (SQL_INFO_DRIVER_START): likewise.
11688         (SQL_INFO_LAST): likewise.
11689         (SQL_INFO_SCHEMA_VIEWS): likewise.
11690         (SQL_INITIALLY_DEFERRED): likewise.
11691         (SQL_INITIALLY_IMMEDIATE): likewise.
11692         (SQL_INSERT_STATEMENT): likewise.
11693         (SQL_INTERVAL): likewise.
11694         (SQL_IS_INSERT_LITERALS): likewise.
11695         (SQL_IS_INSERT_SEARCHED): likewise.
11696         (SQL_IS_INTEGER): likewise.
11697         (SQL_IS_POINTER): likewise.
11698         (SQL_IS_SELECT_INTO): likewise.
11699         (SQL_IS_SMALLINT): likewise.
11700         (SQL_IS_UINTEGER): likewise.
11701         (SQL_IS_USMALLINT): likewise.
11702         (SQL_ISV_ASSERTIONS): likewise.
11703         (SQL_ISV_CHARACTER_SETS): likewise.
11704         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11705         (SQL_ISV_COLLATIONS): likewise.
11706         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11707         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11708         (SQL_ISV_COLUMNS): likewise.
11709         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11710         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11711         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11712         (SQL_ISV_DOMAINS): likewise.
11713         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11714         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11715         (SQL_ISV_SCHEMATA): likewise.
11716         (SQL_ISV_SQL_LANGUAGES): likewise.
11717         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11718         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11719         (SQL_ISV_TABLES): likewise.
11720         (SQL_ISV_TRANSLATIONS): likewise.
11721         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11722         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11723         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11724         (SQL_ISV_VIEWS): likewise.
11725         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11726         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11727         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11728         (SQL_NO_COLUMN_NUMBER): likewise.
11729         (SQL_NO_ROW_NUMBER): likewise.
11730         (SQL_NOT_DEFERRABLE): likewise.
11731         (SQL_NUM_EXTENSIONS): likewise.
11732         (SQL_NUM_FUNCTIONS): likewise.
11733         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11734         (SQL_OIC_CORE): likewise.
11735         (SQL_OIC_LEVEL1): likewise.
11736         (SQL_OIC_LEVEL2): likewise.
11737         (SQL_OV_ODBC2): likewise.
11738         (SQL_OV_ODBC3): likewise.
11739         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11740         (SQL_PARAM_ARRAY_SELECTS): likewise.
11741         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11742         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11743         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11744         (SQL_PARAM_ERROR): likewise.
11745         (SQL_PARAM_IGNORE): likewise.
11746         (SQL_PARAM_PROCEED): likewise.
11747         (SQL_PARAM_SUCCESS): likewise.
11748         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11749         (SQL_PARAM_UNUSED): likewise.
11750         (SQL_PARC_BATCH): likewise.
11751         (SQL_PARC_NO_BATCH): likewise.
11752         (SQL_PAS_BATCH): likewise.
11753         (SQL_PAS_NO_BATCH): likewise.
11754         (SQL_PAS_NO_SELECT): likewise.
11755         (SQL_ROW_IGNORE): likewise.
11756         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11757         (SQL_ROW_PROCEED): likewise.
11758         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11759         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11760         (SQL_SC_SQL92_ENTRY): likewise.
11761         (SQL_SC_SQL92_FULL): likewise.
11762         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11763         (SQL_SCC_ISO92_CLI): likewise.
11764         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11765         (SQL_SCHEMA_TERM): likewise.
11766         (SQL_SCHEMA_USAGE): likewise.
11767         (SQL_SDF_CURRENT_DATE): likewise.
11768         (SQL_SDF_CURRENT_TIME): likewise.
11769         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11770         (SQL_SFKD_CASCADE): likewise.
11771         (SQL_SFKD_NO_ACTION): likewise.
11772         (SQL_SFKD_SET_DEFAULT): likewise.
11773         (SQL_SFKD_SET_NULL): likewise.
11774         (SQL_SFKU_CASCADE): likewise.
11775         (SQL_SFKU_NO_ACTION): likewise.
11776         (SQL_SFKU_SET_DEFAULT): likewise.
11777         (SQL_SFKU_SET_NULL): likewise.
11778         (SQL_SG_DELETE_TABLE): likewise.
11779         (SQL_SG_INSERT_COLUMN): likewise.
11780         (SQL_SG_INSERT_TABLE): likewise.
11781         (SQL_SG_REFERENCES_COLUMN): likewise.
11782         (SQL_SG_REFERENCES_TABLE): likewise.
11783         (SQL_SG_SELECT_TABLE): likewise.
11784         (SQL_SG_UPDATE_COLUMN): likewise.
11785         (SQL_SG_UPDATE_TABLE): likewise.
11786         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11787         (SQL_SG_USAGE_ON_COLLATION): likewise.
11788         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11789         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11790         (SQL_SG_WITH_GRANT_OPTION): likewise.
11791         (SQL_SNVF_BIT_LENGTH): likewise.
11792         (SQL_SNVF_CHAR_LENGTH): likewise.
11793         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11794         (SQL_SNVF_EXTRACT): likewise.
11795         (SQL_SNVF_OCTET_LENGTH): likewise.
11796         (SQL_SNVF_POSITION): likewise.
11797         (SQL_SP_BETWEEN): likewise.
11798         (SQL_SP_COMPARISON): likewise.
11799         (SQL_SP_EXISTS): likewise.
11800         (SQL_SP_IN): likewise.
11801         (SQL_SP_ISNOTNULL): likewise.
11802         (SQL_SP_ISNULL): likewise.
11803         (SQL_SP_LIKE): likewise.
11804         (SQL_SP_MATCH_FULL): likewise.
11805         (SQL_SP_MATCH_PARTIAL): likewise.
11806         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11807         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11808         (SQL_SP_OVERLAPS): likewise.
11809         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11810         (SQL_SP_UNIQUE): likewise.
11811         (SQL_SQL_CONFORMANCE): likewise.
11812         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
11813         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
11814         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
11815         (SQL_SQL92_GRANT): likewise.
11816         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
11817         (SQL_SQL92_PREDICATES): likewise.
11818         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
11819         (SQL_SQL92_REVOKE): likewise.
11820         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
11821         (SQL_SQL92_STRING_FUNCTIONS): likewise.
11822         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
11823         (SQL_SR_CASCADE): likewise.
11824         (SQL_SR_DELETE_TABLE): likewise.
11825         (SQL_SR_GRANT_OPTION_FOR): likewise.
11826         (SQL_SR_INSERT_COLUMN): likewise.
11827         (SQL_SR_INSERT_TABLE): likewise.
11828         (SQL_SR_REFERENCES_COLUMN): likewise.
11829         (SQL_SR_REFERENCES_TABLE): likewise.
11830         (SQL_SR_RESTRICT): likewise.
11831         (SQL_SR_SELECT_TABLE): likewise.
11832         (SQL_SR_UPDATE_COLUMN): likewise.
11833         (SQL_SR_UPDATE_TABLE): likewise.
11834         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
11835         (SQL_SR_USAGE_ON_COLLATION): likewise.
11836         (SQL_SR_USAGE_ON_DOMAIN): likewise.
11837         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
11838         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
11839         (SQL_SRJO_CROSS_JOIN): likewise.
11840         (SQL_SRJO_EXCEPT_JOIN): likewise.
11841         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
11842         (SQL_SRJO_INNER_JOIN): likewise.
11843         (SQL_SRJO_INTERSECT_JOIN): likewise.
11844         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
11845         (SQL_SRJO_NATURAL_JOIN): likewise.
11846         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
11847         (SQL_SRJO_UNION_JOIN): likewise.
11848         (SQL_SRVC_DEFAULT): likewise.
11849         (SQL_SRVC_NULL): likewise.
11850         (SQL_SRVC_ROW_SUBQUERY): likewise.
11851         (SQL_SRVC_VALUE_EXPRESSION): likewise.
11852         (SQL_SSF_CONVERT): likewise.
11853         (SQL_SSF_LOWER): likewise.
11854         (SQL_SSF_SUBSTRING): likewise.
11855         (SQL_SSF_TRANSLATE): likewise.
11856         (SQL_SSF_TRIM_BOTH): likewise.
11857         (SQL_SSF_TRIM_LEADING): likewise.
11858         (SQL_SSF_TRIM_TRAILING): likewise.
11859         (SQL_SSF_UPPER): likewise.
11860         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
11861         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
11862         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
11863         (SQL_SU_DML_STATEMENTS): likewise.
11864         (SQL_SU_INDEX_DEFINITION): likewise.
11865         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
11866         (SQL_SU_PROCEDURE_INVOCATION): likewise.
11867         (SQL_SU_TABLE_DEFINITION): likewise.
11868         (SQL_SVE_CASE): likewise.
11869         (SQL_SVE_CAST): likewise.
11870         (SQL_SVE_COALESCE): likewise.
11871         (SQL_SVE_NULLIF): likewise.
11872         (SQL_UB_FIXED): likewise.
11873         (SQL_UB_VARIABLE): likewise.
11874         (SQL_UNION_STATEMENT): likewise.
11875         (SQL_UPDATE_BY_BOOKMARK): likewise.
11876         (SQL_US_UNION): likewise.
11877         (SQL_US_UNION_ALL): likewise.
11878         (SQL_DESC_ROWVER): likewise.
11879         (SQL_GUID): likewise.
11880         (SQL_C_GUID): likewise.
11881         (ODBC_STD): likewise.
11882         (SQLAllocHandle): likewise.
11883         (SQLAllocEnv(p)): likewise.
11884         (SQL_YEAR): likewise.
11885         (SQL_MONTH): likewise.
11886         (SQL_DAY): likewise.
11887         (SQL_HOUR): likewise.
11888         (SQL_MINUTE): likewise.
11889         (SQL_SECOND): likewise.
11890         (SQL_YEAR_TO_MONTH): likewise.
11891         (SQL_DAY_TO_HOUR): likewise.
11892         (SQL_DAY_TO_MINUTE): likewise.
11893         (SQL_DAY_TO_SECOND): likewise.
11894         (SQL_HOUR_TO_MINUTE): likewise.
11895         (SQL_HOUR_TO_SECOND): likewise.
11896         (SQL_MINUTE_TO_SECOND): likewise.
11897         (SQL_ATTR_ANSI_APP): likewise.
11898         (SQL_AA_TRUE): likewise.
11899         (SQL_AA_FALSE): likewise.
11900
11901         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
11902         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
11903         (struct tagSQL_DAY_SECOND): likewise.
11904         (struct tagSQL_INTERVAL_STRUCT): likewise.
11905         (struct tagSQL_NUMERIC_STRUCT): likewise.
11906         (struct tagSQLGUID): add for 0DBC3.50.
11907         (enum SQLINTERVAL): add for ODBC3.x.
11908         (SQLWCHAR): add typedef.
11909         (SQLTCHAR): add typedef, conditional on UNICODE.
11910         (SQLLEN): add typedef for _WIN64, define for _WIN32.
11911         (SQLULEN): likewise.
11912         (SQLROWOFFSET): likewise.
11913         (SQLROWCOUNT): likewise.
11914         (SQLTRANSID): likewise.
11915         (SQLSETPOSIROW): likewise.
11916         (SQLHANDLE): add ODBC3.x typedef.
11917         (SQLHDESC): likewise.
11918         (SQLDATE): likewise.
11919         (SQLDECIMAL): likewise.
11920         (SQLDOUBLE): likewise.
11921         (SQLFLOAT): likewise.
11922         (SQLNUMERIC): likewise.
11923         (SQLREAL): likewise.
11924         (SQLTIME): likewise.
11925         (SQLTIMESTAMP): likewise.
11926         (SQLVARCHAR): likewise.
11927         (SQLBIGINT): likewise.
11928         (SQLUBIGINT): likewise.
11929         (SQL_DATE_STRUCT): likewise.
11930         (SQL_TIME_STRUCT): likewise.
11931         (SQL_TIMESTAMP_STRUCT): likewise.
11932         (ODBCINT64): add ODBC3.x define.
11933
11934         * lib/odbc32.def : regenerate.
11935
11936 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
11937
11938         * Apply Danny Smith patch 102275
11939         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11940         * include/objbase.h: (COM_RIGHTS): Add definition.
11941         (tagSTDMSHLFLAGS): add enumeration.
11942         (CoInitializeEx): Add prototypes.
11943         (CoGetStdMarshalEx): ditto.
11944         (CoCreateInstanceEx): ditto.
11945         (CoInitializeSecurity): ditto.
11946         (CoGetCallContext): ditto.
11947         (CoQueryProxyBlanket): ditto.
11948         (CoSetProxyBlanket): ditto.
11949         (CoCopyProxy): ditto.
11950         (CoQueryClientBlanket): ditto.
11951         (CoImpersonateClient): ditto.
11952         (CoRevertToSelf): ditto.
11953         (CoQueryAuthenticationServices): ditto.
11954         (CoSwitchCallContext): ditto.
11955         (CoGetInstanceFromFile): ditto.
11956         (CoGetInstanceFromIStorage): ditto.
11957         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
11958         (SOLE_AUTHENTICATION_INFO): ditto.
11959         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
11960         (COLE_DEFAULT_PRINCIPAL): Add definition.
11961         (COLE_DEFAULT_AUTHINFO): Ditto.
11962         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
11963         (RPC_PROTSEQ_VECTOR) Fix typo.
11964         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
11965         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
11966         attribute.
11967
11968 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
11969
11970         * lib/msvcp60.def: Apply Danny Smith patch 103321.
11971         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
11972         New file.
11973
11974 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
11975
11976         * include/winnt.h: Add PTOKEN_USER.
11977
11978 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11979
11980         * include/sqlucode.h: Apply Danny Smith patch 102443
11981         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11982         New file.
11983
11984 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11985
11986         * lib/odbccp32.def: Apply Danny Smith patch 102442
11987         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11988         New file.
11989
11990 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11991
11992         * include/odbcinst.h: Apply Danny Smith patch 102441
11993         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11994         New file.
11995
11996 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
11997
11998         * lib/Makefile.in: Don't make "links" to include/w32api directory.
11999
12000 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12001
12002         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12003
12004 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12005
12006         * lib/Makefile.in: Install headers and libraries in tooldir.
12007
12008 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12009
12010         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12011         SORT_STRINGSORT: ditto.
12012         CMAP*: ditto.
12013         CTRY_*: add new defines.
12014         LGRPID_*: ditto.
12015         LCMAP*: change defines to hex notation.
12016         CALID: change from ULONG to DWORD.
12017         CALTYPE: ditto.
12018         _cpinfoex[AW]: add structure.
12019         FoldString: correct Unicode mappings.
12020         GetCPInfoEx[AW]: add prototypes.
12021         EnumCalendarInfoEx[AW]: ditto.
12022         EnumDateFormatsEx[AW]: ditto.
12023         EnumSystemLanguageGroups[AW]: ditto.
12024         EnumLanguageGroupLocales[AW]: ditto.
12025         EnumUILanguages[AW]: ditto.
12026         GetSystemDefaultUILanguage[AW]: ditto.
12027         GetUserDefaultUILanguage[AW]: ditto.
12028         IsValidLanguageGroup[AW]: ditto.
12029         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12030         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12031         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12032         UILANGUAGE_ENUMPROC[AW]: ditto
12033         DATEFMT_ENUMPROCEX[AW]: ditto
12034         LPCURRENCYFMT[AW]: add structure pointer typedef
12035         LPNUMBERFMT[AW]: ditto
12036
12037 2000-12-02  Matt Hargett  <matt@use.net>
12038
12039         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12040         possible return code for the SetFilePointer() win32 API call.
12041
12042 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12043
12044         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12045
12046 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12047
12048         * Makefile.in: increment VERSION.
12049         (dist:) Rename to srcdist.  Create new dist target to call
12050         srcdist and bindist targets.
12051         (srcdist:) New target.
12052         (clean-top:) add call to mostlyclean-top and add rm of distribution
12053         tarballs.
12054         * lib/Makefile.in: (uninstall:) modify to remove files from the
12055         new w32api subdirectory and to remove w32api subdirectory.
12056         (xuninstall:) Ditto.
12057         TODO: Add a task to redo the clean targets of Makefile.in
12058
12059 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12060
12061         * lib/Makefile.in: Install header files in w32api subdirectory.
12062
12063 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12064
12065         * CONTRIBUTIONS: New file.
12066         * README: Change the maintained by header.
12067         * TODO: Add a note about checking the TODO.
12068
12069 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12070
12071         * Merge in accepted changes from
12072         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12073         * include/basetyps.h: add comment for GUID_DEFINED
12074         * include/lm.h: add includes for lmerr.h and lmserver.h
12075         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12076         * include/lmerr.h:  add error codes
12077         * include/lmserver.h: replace LPTSTR with LPWSTR,
12078         LPTCSTR with LPWCSTR in structures and prototypes
12079         * include/lmshare.h: ditto
12080         * include/lmuse.h: ditto
12081         * include/lmstats.h: ditto
12082         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12083         * include/winbase.h: change first argument of CommConfigDialog to const
12084         * include/windowsx.h: add macros  defining FAR versions of
12085         mem and string functions for porting from Win16 code
12086         * include/winioctl.h:  added IOCTL_STORAGE defines
12087         * include/winnetwk.h:  added WNNC_NET flags
12088         * include/winnt.h: add include of <basetsd.h>;
12089         add structs; add pointer typedefs  for TOKEN structs
12090         * include/winsock.h: add guard around BSD-ish typedefs
12091         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12092         * include/basetsd.h: new file
12093         * include/raserror.h: ditto
12094         * include/rassapi.h: ditto
12095         * include/ras.h: ditto
12096         comment from Earnie: replaced original ras.h contribution with Danny's
12097         contribution as it is more complete.
12098         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12099
12100 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12101
12102         * Makefile.in: increment VERSION.  Change tar file name for dist and
12103         bindist targets to be more standard.
12104         * config.guess: Update with the currently published file.
12105         * config.sub: ditto.
12106         * configure.in: Use value of build_alias instead of testing for
12107         directory names to set BUILDENV.
12108         * configure: ditto.
12109         * lib/Makefile.in: Change the name of the targets install,
12110         install-headers and install-libraries to xinstall, xinstall-headers
12111         and xinstall-libraries for system target specified installation.
12112         Recreate targets install, install-headers and install-libraries for
12113         exec-prefix specified installation.  Ditto for the uninstall targets of
12114         the same name.
12115
12116 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12117
12118         * include/iprtrmib.h: Further layout changes according to standard.
12119         * include/iptypes.h: Ditto.
12120         * include/ntdef.h: Ditto.
12121         * include/ntsecapi.h: Ditto.
12122         * include/subauth.h: Ditto.
12123
12124 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12125
12126         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12127
12128 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12129
12130         * include/ntsecapi.h: New file.
12131         * include/subauth.h: Ditto.
12132         * include/ipexport.h: Fix global header define not to contain
12133         trailing underscore. Change layout according to standard.
12134         * include/iphlpapi.h: Ditto.
12135         * include/ipifcons.h: Ditto.
12136         * include/iprtrmib.h: Ditto.
12137         * include/iptypes.h: Ditto.
12138         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12139         of inclusion of ntsecapi.h and subauth.h.
12140         * lib/secur32.def: New stub for secur32.dll.
12141
12142 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12143
12144         * include/ras.h: New file.
12145         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12146         RasEnumDevicesW.
12147
12148 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12149
12150         * include/ntdef.h: Add define for NTAPI.
12151
12152 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12153
12154         * include/ipexport.h: Add missing `extern "C"' directives.
12155         * include/iphlpapi.h: Ditto.
12156         * include/iprtrmib.h: Ditto.
12157         * include/iptypes.h: Ditto.
12158
12159 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12160
12161         * include/ipifcons.h: New header file.
12162         * include/iprtrmib.h: Move operational states to ipifcons.h.
12163         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12164         declaration.
12165
12166 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12167
12168         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12169
12170 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12171
12172         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12173         * include/iptypes.h: New header file.
12174         * include/ipexport.h: Ditto.
12175         * include/iphlpapi.h: Ditto.
12176         * include/iprtrmib.h: Ditto.
12177
12178 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12179
12180         * include/ntdef.h: New file.
12181
12182 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12183
12184         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12185         to TOKEN_INFORMATION_CLASS type.
12186         Add QUOTA_LIMITS type.
12187
12188 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12189
12190         * include/userenv.h: New header file.
12191         * lib/userenv.def: New stub for userenv.dll.
12192
12193 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12194
12195         * include/winuser.h: Correct PCWPSTRUCT typo.
12196         (discovered by Axel Riese)
12197
12198 2000-07-27  DJ Delorie  <dj@redhat.com>
12199
12200         * include/windows.h: optimize non-inclusion of repeat headers
12201
12202 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12203
12204         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12205         LPTOKEN_SOURCE.
12206
12207 2000-07-11  DJ Delorie  <dj@cygnus.com>
12208
12209         * include/shlobj.h: add CSIDL_COMMON_*
12210
12211 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12212
12213         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12214         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12215         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12216         FILE_FLAG_OPEN_NO_RECALL.
12217         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12218         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12219         * winnt.h: Add typedef for GUID.
12220         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12221         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12222         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12223         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12224         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12225         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12226         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12227         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12228         * lib/psapi.def: New file.
12229
12230 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12231
12232         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12233         previously defined.
12234         * windef.h : Ditto.
12235
12236 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12237
12238         * include/winnt.h: Add some missing defines related to locale
12239         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12240
12241 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12242
12243         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12244
12245 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12246
12247         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12248
12249 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12250
12251         * include/wininet.h: Add another "INTERNET_OPTIONS".
12252
12253 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12254
12255         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12256
12257 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12258
12259         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12260         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12261         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12262         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12263
12264 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12265
12266         * include/winbase.h: Change first argument of ENUMRES* types to
12267         coincide with Microsoft usage.
12268
12269 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12270
12271         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12272
12273 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12274
12275         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12276         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12277         * include/winnt.h (SEC_*): Add macros.
12278         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12279         * include/ole.h: Workaround for C++ parser bug.
12280         * include/rpcdcep.h: Likewise.
12281         * include/winsock.h: Likewise.
12282
12283 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12284
12285         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12286
12287 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12288
12289         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12290         * include/wtypes.h (PBLOB, LPBLOB): Define.
12291         * include/winsock2.h: Much more complete version.
12292         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12293
12294         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12295         * include/winsock.h (FD_CLR): Add missing ')'.
12296         (timercmp): Fix macro to handle all 6 comparison operators.
12297         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12298         (AF_MAX): Update.
12299         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12300
12301         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12302         namespace pollution.
12303         * include/rpcndr.h: Likewise.
12304         * include/winnt.h: Likewise.
12305         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12306         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12307         * lib/ole32.def: Add missing exports.
12308         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12309         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12310         (NT_TIB): Define.
12311         * include/tlhelp32.h: New file.
12312
12313 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12314
12315         * include/rapi.h: New file.
12316         * lib/rapi.def: New file.
12317
12318 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12319
12320         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12321
12322 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12323
12324         * Snapshot 2000-02-03.
12325
12326 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12327
12328         * include/winnt.h: Add ARM support.
12329
12330 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12331
12332         From Greg Primes <gregory.l.priem@intel.com>:
12333         * include/oaidl.h (DESCKIND): Define macro.
12334         (ITypeComp): Define interface.
12335         (ITypeComp): Likewise.
12336         * rpcndr.h (DECLSPEC_UUID): Define macro.
12337         (MIDL_INTERFACE): Likewise.
12338
12339         * include/psapi.h: New file.
12340         * include/imagehlp.h: New file.
12341         * lib/imagehlp.def: New file.
12342
12343         * include/oaidl.h (tagVARIANT): Update fields.
12344
12345         From Craig Lanning <CraigL@DyCon.com>:
12346         * include/commctrl.h: Add some TCS_* macros.
12347         * include/winnls.h (IsValidLocale): Add prototype.
12348
12349 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12350
12351         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12352         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12353         * include/objbase.h: Likewise.
12354         * include/objidl.h: Likewise.
12355         * include/ocidl.h: New file.
12356         * include/oleauto.h: Likewise.
12357         * include/wtypes.h: Likewise.
12358         * lib/oleaut32.def: Likewise.
12359
12360         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12361         Thanks to "Jon Leichter" <jon@symas.com>.
12362         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12363         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12364         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12365         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12366         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12367         Dorsselaer" <frans@bia-bv.demon.nl>.
12368         * include/httpext.h: New file. Thanks to Jan Nijtmans
12369         <j.nijtmans@chello.nl>.
12370         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12371         redefinition of LPCWAVEFORMATEX in DirectX headers.
12372         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12373         <krzych00@priv7.onet.pl>.
12374         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12375         * include/windef.h (HRESULT): Guard definition to avoid
12376         redefinition in DirectX headers.
12377         * include/winnt.h: Add target macros from windows.h.
12378         * include/windows.h: Update synch comment for target macros.
12379         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12380         (_ANONYMOUS_UNION): Likewise.
12381         * include/wingdi.h (AbortPrinter): Move from here ...
12382         * include/winspool.h (AbortPrinter): to here and fix linkage.
12383         (MONITOR_INFO_2{A,W}): Define.
12384         * include/winsock.h (htons): Fix argument.
12385         (htonl): Likewise.
12386         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12387         (GROUP): Define.
12388         (GUID): Define conditionally.
12389         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12390         (WSASocket*): Declare.
12391         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12392
12393         * lib/dsetup.def: Remove leading underscore.
12394         * lib/dsound.def: Likewise.
12395         * lib/ws2_32.def: Likewise.
12396
12397 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12398
12399         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12400         handles.
12401
12402         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12403         * lib/dinput.c: Include windows.h for GCC.
12404         * lib/dxguid.c: Likewise.
12405         (INITGUID): Define macro.
12406
12407         * include/objidl.h (ISequentialStream): Define interface.
12408         (IStream): Derive from ISequentialStream.
12409
12410         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12411         Clone}): Mark as PURE.
12412         (IDataObject::EnumDAdvise): Likewise.
12413         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12414         (IViewObject::Unfreeze): Likewise.
12415         (IViewObject2::Unfreeze): Likewise.
12416
12417         * include/objidl.h: Add various IID_ declarations.
12418         * include/olectl.h: Likewise.
12419         * include/oleidl.h: Likewise.
12420
12421 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12422
12423         * Snapshot 1999-12-21.
12424
12425         * include/winbase.h (CancelIO): Rename to CancelIo.
12426         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12427         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12428
12429         * Merge with winsup-19991218.
12430         * include/winnt.h: Add defines for W2K ACL control flags.
12431
12432         * Merge with Anders Norlander's 19991130 snapshot.
12433
12434         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12435         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12436
12437         Patch from Harold Weissfield
12438         * include/shellapi.h: Added some ABN_* defines.
12439
12440         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12441         * lib/comctl32.def (_TrackMouseEvent): Import.
12442         * include/winuser.h: Misc. fixes from Sang Cho
12443         <sangcho@alpha94.chongju.ac.kr>.
12444         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12445         value of _WIN32_WINNT.
12446         * include/winuser.h: Reorganize SM_* defines in numerical order.
12447
12448 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12449
12450         * include/windef.h: Make RECTL a distinct type from RECT.
12451         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12452         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12453         (COMPAREITEMSTRUCT): Fix fields.
12454         (SERIALKEYSA): Likewise.
12455         (SERIALKEYSW): Likewise..
12456         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12457         (WIN32_FIND_DATAA): Likewise.
12458         (WIN32_FIND_DATAW): Likewise.
12459         * include/commdlg.h (SNDMSG): Define.
12460         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12461         (SO_CONNECT_TIME): Likewise.
12462         (AcceptEx): Declare.
12463         (GetAcceptExSockaddrs): Likewise.
12464         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12465         * include/winspool.h: Add RC_INVOKED guard.
12466         * lib/wsock32.def (AcceptEx@32): Export.
12467         (GetAcceptExSockaddrs@32): Likewise.
12468
12469 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12470
12471         * Snapshot 1999-11-18.
12472
12473         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12474         Octopod C++ IDE (and MSVC compatibility).
12475         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12476         * include/shellapi.h (ShellAbout*): Fix typo.
12477         * wingdi.h (FW_ULTRABOLD): Likewise.
12478         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12479         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12480         Add packing directives for various structures. All structure
12481         sizes now conform to MSVC.
12482
12483 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12484
12485         Released 1999-11-07.
12486
12487 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12488
12489         * include/winsock2.h: New file. Mostly a stub for now.
12490         * include/winbase.h (DllMain): Delete prototype.
12491         * include/commctrl.h (Header_SetItem): Fix macro.
12492         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12493         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12494         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12495
12496         Merge in changes from wxWindows.
12497         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12498         * include/oaidl.h (DISPID_*): Add macros.
12499         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12500         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12501         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12502         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12503
12504         Merge in changes from Octopod C++ IDE group.
12505         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12506         (Header_InsertItem): Fix macro.
12507         * include/oaidl.h (IID_IDispatch): Declare.
12508         (IID_ISupportErrorInfo): Likewise.
12509         (IDispatch): Rename Invoked to Invoke.
12510         * include/objidl.h (IPersist): Fix GetClassID.
12511         * include/oleauto.h (VectorFromBstr): Declare.
12512         (BstrFromVector): Likewise.
12513         * include/olectl.h (OLEMISC_*): Update.
12514         * include/olectlid.h (IID_IDispatch): Declare.
12515         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12516         (IOleInPlaceFrame): Fix.
12517         (ISupportErrorInfo): Define.
12518         (IErrorInfo): Define.
12519         * include/winuser.h (SIF_TRACKPOS): Define.
12520
12521 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12522
12523         Fix Merge errors:
12524         * include/winnt.h (PSID): Uncomment definition.
12525         (PISID): Rename from PSID.
12526         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12527         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12528
12529         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12530         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12531         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12532         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12533         include/shellapi.h, include/winbase.h, include/wingdi.h,
12534         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12535
12536 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12537
12538         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12539         Marius Kjeldahl <kjeldahl@hotmail.com>.
12540
12541 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12542
12543         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12544         (ERROR_SEVERITY_*): Likewise.
12545
12546 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12547
12548         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12549         (DllMain): Fix prototype.
12550
12551 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12552
12553         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12554         (cderr.h): Don't include.
12555         * include/winuser.h: Fix macro definitions.
12556
12557 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12558
12559         Merge with winsup 1999-07-29:
12560         * include/wincon.h (MOUSE_WHEELED): Define.
12561         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12562         (SECURITY_DESCRIPTOR): Add struct type.
12563         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12564         is equal to PVOID in the Platform SDK! So don't depend on accessing
12565         members through ->.
12566
12567 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12568
12569         * lib/Makefile.in (install-headers): Don't @ commands.
12570         (install-libraries): Ditto.
12571
12572 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12573
12574         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12575
12576 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12577
12578         Patch from Mumit Khan:
12579         * include/windows.h: Fix typo in winsock.h include guard and add
12580         _UWIN to the list.
12581         * include/winnt.h (__int64): Undefine first.
12582         (struct _SID): Declare.
12583
12584 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12585
12586         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12587
12588 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12589
12590         Patch from Mumit Khan:
12591         * Makefile.in: Do the right thing when cross-compiling.
12592         * include/windef.h: Don't define _export and __export if already
12593         defined.
12594
12595 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12596
12597         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12598         (DECLARE_INTERFACE_): Ditto.
12599
12600 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12601
12602         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12603
12604         Reported by Brad Porter
12605         * include/wingdi.h (FW_ULTRALIGHT): Add.
12606         (FW_DEMIBOLD): Add.
12607         (FW_ULTRABOLD): Add.
12608         (FW_BLACK): Add.
12609         (JOHAB_CHARSET): Add.
12610         (VIETNAMESE_CHARSET): Add.
12611
12612
12613 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12614
12615         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12616         * lib/Makefile.in (Makefile): Regenerate.
12617         * include/pshpack[1248].h: New files, if a program would use any of
12618         them.
12619         * include/poppack.h: Ditto.
12620         * include/windef.h (_WIN32_WINNT): Define
12621         * include/windows.h: Remove DUMMYUNIONNAME[45].
12622         * include/windows.h: Correctly define _M_IX86 to reflect the target
12623         processor.
12624         * include/windows.h: Add preliminary support for other architectures.
12625         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12626         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12627         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12628         issue with LARGE_INTEGER.
12629         (ANSI_NULL): Define.
12630         (PSZ): Define.
12631         (ACL_REVISION[1234]): Define.
12632         (MIN/MAX_ACL_REVISION): Define.
12633         (PTCHAR): Define.
12634         (LANG_USER_DEFAULT): Define.
12635         (LANG_SYSTEM_DEFAULT): Define.
12636         (LOCALE_NEUTRAL): Define.
12637         (SORTVERSIONFROMLCID): Define.
12638         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12639         (UNREFERENCED_LOCAL_VARIABLE): Define.
12640         (DBG_UNREFERENCED_PARAMETER): Define.
12641         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12642         * lib/mswsock.def: New file. Imports for mswsock.dll.
12643         * include/custcntl.h: New file. Necessary to compile some SDK
12644         samples.
12645         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12646         (WM_MOUSEWHEEL): Define.
12647         (WHEEL_DELTA): Define.
12648         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12649         (WM_NEXTMENU): Define.
12650         (CharNextA): Fix prototype.
12651         (CharNextW): Ditto.
12652
12653 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12654
12655         * include/winsock.h: Enclose in extern "C" if C++, huh?
12656         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12657
12658 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12659
12660         * include/windef.h (NULL): Define only ifndef
12661         (TRUE): Ditto, was previously only defined ifndef FALSE
12662         (PASCAL): Define as _pascal
12663         (__pascal): Define
12664         (WINAPIV): Define
12665         (min,max): Define only ifndef NOMINMAX
12666
12667 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12668
12669         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12670         You must define _WIN32_IE if you want support for it.
12671         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12672
12673 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12674
12675         * include/wincon.h: Add some ButtonState flags and EventFlags.
12676
12677 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12678
12679         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12680         interface define causes mayhem.
12681         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12682         defined.
12683         * include/windows.h: Undefine BOOL if __OBJC__ defined
12684
12685 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12686
12687         * include/winnls.h: Define additional code pages.
12688
12689 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12690
12691         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12692         order, corrected.
12693         (RtlZeroMemory): Use RtlFillMemory
12694
12695 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12696
12697         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12698         to get the correct size when used in some structs.
12699         (ULARGE_INTEGER): Ditto.
12700         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12701         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12702
12703 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12704
12705         * include/wininet.h: Enclose in extern "C" if c++
12706         (INTERNET_BUFFERSA/W): Define struct
12707         * include/wininet.h: Add some HSR_* defines
12708
12709 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12710
12711         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12712         * include/winnt.h (UNALIGNED): Define
12713         * include/windef.h (DECLSPEC_NORETURN): Define
12714
12715         * include/wininet.h (INTERNET_MAX_NAME): Remove
12716         (INTERNET_MAX_SCHEME_LENGTH): Define
12717         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12718         * include/wininet.def: Completely redone, it was losing badly.
12719
12720 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12721
12722         * lib/dplayx.def: Remove '_' prefixes
12723         * lib/shell32.def: Remove imports for IID_ContextMenu
12724
12725 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12726
12727         * Makefile.in (dist): Support dist target
12728         * lib/Makefile.in (dist): Likewise
12729         * lib/Makefile.in (uninstall-headers): Fix command
12730         * Makefile.in (bindist): Target to build a prebuilt dist
12731
12732         * lib/ws2_32.def: Winsock2 implib
12733
12734         * include/largeint.h: New header
12735         * include/largeint.c: Large integer support library
12736         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12737         (EXTRA_OBJS): Add largeint.o
12738
12739         * include/Makefile: Remove
12740         * lib/Makefile: Remove
12741         * Makefile: Remove
12742         * configure.in: New autoconf script
12743         * configure: generated configure script
12744         * Makefile.in: autoconf makefile template
12745         * lib/Makefile.in: Ditto
12746         * include/test.c: mv to lib/test.c
12747         * include/res.rc: mv to lib/res.rc
12748         * include/TODO: mv to .
12749         * include/Notes: mv to ./NOTES
12750
12751 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12752
12753         * include/zmouse.h (WHEEL_DELTA): Define
12754
12755 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12756
12757         * include/ddeml.h (HSZPAIR): Declare.
12758         * include/zmouse.h: New file.
12759
12760 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12761
12762         * lib/d3dim.def: New implib
12763         * lib/d3drm.def: Ditto
12764         * lib/d3dxof.def: Ditto
12765         * lib/ddraw.def: Ditto
12766         * lib/dinput.def: Ditto
12767         * lib/dplayx.def: Ditto
12768         * lib/dsetup.def: Ditto
12769         * lib/dsound.def: Ditto
12770         * lib/dinput.c: Guid library for DirectInput
12771         * lib/dxguid.c: Guid library for DirectX
12772
12773 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12774
12775         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12776         by Ron Aaron).
12777         * include/windowsx.h (GET_Y_LPARAM): Also missing
12778         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12779         by Mumit Khan).
12780
12781 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12782
12783         * include/scrnsave.h: New header file for screen saver library
12784         * lib/scrnsave.c: New file: screen saver library
12785
12786 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12787
12788         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12789         works well in when UNICODE is defined
12790
12791 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12792
12793         * include/winuser.h(STYLESTRUCT): New struct
12794         * include/wingdi.h:(GOBJENUMPROC): This function type should
12795         return void.
12796
12797 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12798
12799         * include/basetyps.h (LPGUID): New typedef
12800         * lib/glut.def: Import library defintions for glut.dll
12801         * lib/glu32.def: Ditto for glut32.dll
12802         * include/winnt.h: Fixed handling of wchar_t typedef
12803         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12804         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12805
12806 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12807
12808         * include/winbase.h(AbnormalTermination): Define as FALSE
12809         * include/commctrl.h: Support for new progress bar messages/styles
12810
12811 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
12812
12813         * include/commdlg.h(PageSetupDlg): New define
12814         * include/richedit.h: Missing SCF_* defines
12815         * include/winnt.h: Lots o' defines
12816         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
12817
12818 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
12819
12820         * include/commdlg.h: Removed pack pragma
12821         * lib/comctl32.def(InitCommonControlsEx@4): Added import
12822
12823 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
12824
12825         * Makefile: Set version to 0.1.5
12826         * lib/Makefile (clean): Fix typo
12827
12828         * include/commctrl.h: Removed pack pragma
12829         * include/cpl.h: Likewise
12830         * include/dbt.h: Likewise
12831         * include/dde.h: Likewise
12832         * include/nddeapi.h: Likewise
12833         * include/shellapi.h: Likewise
12834         * include/wincrypt.h: Likewise
12835         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
12836
12837         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
12838         (servent): Likewise
12839         (protoent): Likewise
12840
12841         * include/windows.h: Prevent inclusion of winsock.h if we are
12842         using or compiling cygwin. Define Win32_Winsock to force inclusion.
12843
12844 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
12845
12846         * include/winbase.h (CREATE_FORCEDOS): New define
12847
12848 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
12849
12850         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
12851         (COORD): Likewise
12852         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
12853         * include/windows.h: Added DUMMYUNIONNAME4 and 5
12854         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
12855         (PLUID_AND_ATTRIBUTES_ARRAY): New type
12856
12857         * include/ddeml.h: Removed unnecessary `#pragma pack'
12858         * include/imm.h: Likewise
12859         * include/nddeapi.h: Likewise
12860         * include/nspapi.h: Likewise
12861         * include/regstr.h: Likewise
12862         * include/wincon.h: Likewise
12863         * include/windef.h: Likewise
12864         * include/winioctl.h: Likewise
12865         * include/winnls.h: Likewise
12866         * include/winsvc.h: Likewise
12867         * include/winuser.h: Likewise
12868         * include/winver.h: Likewise
12869         * include/wtypes.h: Likewise
12870
12871 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
12872
12873         * Makefile (VERSION): Set to 0.1.4
12874         * include/basetyps.h: Check for NOCOMOBJECT
12875         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
12876         on comobject attribute.
12877         * lib/kernel32.def: Added a few functions
12878         * include/windef.h (DWORD): Changed back to unsigned long
12879
12880         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
12881         winresrc.h in turn includes the necessary headers. This makes things
12882         much simpler, no need to protect blocks of code in headers that
12883         should not be seen by the resource compiler.
12884
12885 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
12886
12887         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
12888         * include/wincon.h: Added console event type flags
12889         * include/winnt.h (FILE_SHARE_DELETE): Added
12890           (SECURITY_DESCRIPTOR): typedef as DWORD
12891
12892         * include/winuser.h (WM_PENWINFIRST): Fixed typo
12893         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
12894         define u_* types only if _SYS_TYPES_H is not defined.
12895
12896 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
12897
12898         * COPYING.LIB: Deleted
12899         * README: Updated to reflect license changes
12900         * include/shlobj.h: Remove extra comma on some enums
12901         * include/windef.h: Changed DWORD typedef from unsigned long to
12902         unsigned int in order to avoid warnings on bit fields that
12903         use DWORD.
12904         * include/Makefile (test): Compile with all warnings
12905         * include/unknwn.h: Include objfwd.h
12906         * include/winsock.h: Added missing copyright notices.
12907
12908 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
12909
12910         * lib/winmm.def: Corrected LIBRARY statement
12911         * include/mmsystem.h: Define mmioSeek codes if not already defined
12912         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
12913         (CreateStatusWindowW): Likewise
12914
12915         * include/winresrc.h: Include only files necessary instead of windows.h
12916         * include/dde.h: Allow inclusion in resource scripts.
12917         * include/winnt.h: Likewise
12918         * include/commctrl.h: Likewise
12919         * include/prsht.h: Likewise
12920         * README: Updated
12921
12922 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
12923
12924         * include/sqltypes.h (SQLHANDLE): Added this type
12925         (SQLHDESC): Likewise
12926         * include/sql.h (SQLFreeHandle): Added this prototype
12927         (SQLAllocHandle): Likewise
12928
12929 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
12930
12931         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
12932         conflicts with cygwin headers.
12933
12934 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
12935
12936         * Makefile: Changed VERSION to 0.1.3
12937         * Makefile (dist-lib): New target to make import library only
12938         distribution
12939         * Makefile (dist-hdr): New target to make headers only distribution
12940         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
12941         building one single distribution file.
12942         * dist.mak: Deleted
12943
12944         * include/lm.h: New file
12945         * include/lmcons.h: New file
12946         * include/lmalert.h: New file
12947         * include/lmaudit.h: New file
12948         * include/lmconfig.h: New file
12949         * include/lmapibuf.h: New file
12950         * include/lmaccess.h: New file
12951         * include/lmchdev.h: New file
12952         * include/lmremutl.h: New file
12953         * include/lmrepl.h: New file
12954         * include/lmerrlog.h: New file
12955         * include/lmat.h: New file
12956         * include/lmuse.h: New file
12957         * include/lmuseflg.h: New file
12958         * include/lmserver.h: New file
12959         * include/lmerr.h: New file
12960         * include/lmsname.h: New file
12961         * include/lmstats.h: New file
12962         * include/lmsvc.h: New file
12963         * include/lmwksta.h: New file
12964         * include/lmbrowsr.h: New file
12965
12966 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
12967
12968         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
12969         * include/unknwn.h: Added extern declaration for IID_IClassFactory
12970
12971         * include/initguid.h: New file
12972
12973         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
12974         int not supported
12975
12976         * include/winnt.h: Added USN
12977         * include/winnt.h: Changed handling of 64 bit int support
12978
12979         * include/windows.h: Added support for BC,LCC and MSVC
12980
12981         * include/windows.h: Changed handling machine architecture defines
12982
12983         * include/olectl.h: New file
12984
12985 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
12986
12987         * include/oleidl.h: Added IViewObject and IViewObject2
12988
12989         * include/objidl: Corrected prototype for IStorage::DestroyElement and
12990         IStorage::MoveElement
12991
12992         * include/oledlg.h: New file
12993
12994         * include/winresrc.h: New file
12995
12996         * include/wingdi.h: Added LPDOCINFO
12997
12998         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
12999         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13000         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13001         TabCtrl_SetImageList and TabCtrl_GetItemCount
13002         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13003
13004         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13005
13006         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13007         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13008
13009         * include/commdlg.h: Added LPDEVNAMES
13010
13011         * include/windows.h: Include excpt.h
13012
13013         * include/excpt.h: New file. This file just contains some
13014         stubs for SEH that do nothing.
13015
13016         * include/commctrl.h: Added general WM_NOTIFY codes
13017
13018         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13019         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13020         not be in the headers.
13021         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13022         * include/winuser.h: Added old WM_SIZE parameter names so
13023         wxWindows compiles.
13024         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13025         * include/winuser.h: Added LPDLGITEMTEMPLATE
13026         * include/winuser.h: HTCAPTION was missing value
13027         * include/winuser.h: Added WM_ACTIVE flags
13028
13029         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13030         _fxx defines for memmove, memset and memcmp
13031
13032         * include/windef.h: Changed _export and __export to empty defines
13033
13034         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13035         String parameters were not const and ExtractAssociatedIcon takes
13036         a WORD pointer not DWORD pointer as last parameter.
13037
13038         * Makefile: Changed VERSION to 0.1.2
13039
13040         * include/ole2ver.h: New file
13041
13042         * Makefile: Removed all dependencies on GLUT
13043
13044         * include/GL/glut.h: Removed file because of decision to remove
13045         files that are not part of the library.
13046         * lib/glut.def: Likewise
13047         * lib/glut32.def: Likewise
13048
13049         * include/windows.h: Include winperf.h
13050
13051         * include/winperf.h: New file
13052
13053         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13054
13055         * include/winnls.h: Added calendar types
13056         * include/winnls.h: Added country codes
13057
13058 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13059
13060         * include/windef.h: Added PROC and NEARPROC
13061
13062         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13063         * include/wingdi.h: Added OpenGL types and prototypes
13064         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13065         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13066         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13067         * include/wingdi.h: Added truetype character outline types
13068         * include/wingdi.h: Added DEVMODE initialization flags
13069         * include/wingdi.h: Added panose codes
13070         * include/wingdi.h: Added missing character sets
13071         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13072         NONANTIALIASED_QUALITY
13073         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13074         * include/wingdi.h: Added pointer types for EXTLOGPEN
13075         * include/wingdi.h: Added PATTERN type
13076         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13077         * include/wingdi.h: Added new text metric flags
13078         * include/wingdi.h: Added pitch and family flags
13079         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13080         * include/wingdi.h: Added METAHEADER
13081         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13082         * include/wingdi.h: Added TA_MASK
13083         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13084         * include/wingdi.h: Added error codes
13085
13086         * include/winuser.h: Added missing winhelp structures
13087         * include/winuser.h: Added dialog flags/styles/messages
13088         * include/winuser.h: Added EM_SETMARGIN codes
13089         * include/winuser.h: Made it possiblie to use IDI_XX values
13090         in resource files.
13091         * include/winuser.h: Added missing LoadImage load flags
13092         * include/winuser.h: Added missing message box flags
13093         * include/winuser.h: Added ScrollWindow codes
13094         * include/winuser.h: Added DT_WORD_ELLIPSIS
13095         * include/winuser.h: Added drag and drop support
13096         * include/winuser.h: Added WM_MENUCHAR return codes
13097         * include/winuser.h: Added DLGWINDOWEXTRA
13098         * include/winuser.h: Added missing SetWindowPos flags.
13099         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13100         * include/winuser.h: Added IDHOT_xx defines
13101         * include/winuser.h: Added MOD_WIN
13102         * include/winuser.h: Added missing defines and structs for owner draw
13103         controls.
13104         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13105         WPF_SETMINPOSITION
13106         * include/winuser.h: Added DrawAnimatedRects flags
13107         * include/winuser.h: Added WM_PRINT codes
13108         * include/winuser.h: Added CS_IME class style
13109         * include/winuser.h: Added WM_SIZE codes
13110         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13111         * include/winuser.h: Added WM_NCHITTEST return codes
13112         * include/winuser.h: Added WM_SIZING parameters
13113         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13114         * include/winuser.h: Added menu loop codes.
13115         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13116         NF_REQUERY
13117         * include/winuser.h: Added WM_POWER flags
13118         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13119         * include/winuser.h: Added missing message filter codes
13120         * include/winuser.h: Added WM_KEYXX message flags
13121         * include/winuser.h: Added WM_SHOWMESSAGE flags
13122         * include/winuser.h: Added old ShowWindow commands
13123         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13124         structures.
13125
13126         * include/mciavi.h: New file for the MCI AVI driver that for some
13127         reason is not in mmsystem.h.
13128
13129         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13130         * include/winbase.h: Added SECURITY_xx for CreateFile
13131         * include/winbase.h: Added RTS and DTS control values
13132         * include/winbase.h: Fixed SYSTEM_INFO structure
13133         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13134         * include/winbase.h: Added FILE_TYPE_REMOTE
13135         * include/winbase.h: Added modem status flags
13136         * include/winbase.h: Added HINSTANCE_ERROR
13137         * include/winbase.h: Added DefineDosDevice defines
13138         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13139         * include/winbase.h: Added STARTF_XX flags
13140         * include/winbase.h: Fixed typo on _lcreat prototype.
13141         * include/winbase.h: Moved DBG_XX to winnt.h
13142         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13143         winnt.h
13144
13145         * include/unknwn.h: Added extern declaration of IID_IUnknown
13146
13147         * include/windowsx.h: Added hmemcpy.
13148
13149         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13150         * include/winnt.h: Added PACCESS_TOKEN
13151         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13152         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13153         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13154         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13155         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13156         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13157
13158         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13159         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13160         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13161
13162         * include/winsvc.h: Removed conflicting defines which were supposed
13163         to be in winnt.h
13164
13165         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13166         and SERVICE_ERROR_TYPE.
13167
13168         * include/winnt.h: Added SERVICE_XX defines.
13169         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13170         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13171
13172         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13173         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13174         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13175         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13176
13177 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13178
13179         * include/winbase.h: Corrected prototype for CreateProcessA
13180
13181         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13182         driver extensions.
13183
13184         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13185         be LPSHELLFOLDER* not LPSHELLFOLDER.
13186
13187         * include/windows.h: Include commdlg.h
13188
13189         * include/winuser.h: Added MDICREATESTRUCT
13190
13191         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13192         CB_ERRSPACE, and CB_OKAY
13193
13194         * include/wingdi.h: Added LPBITMAPINFOHEADER
13195
13196         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13197         are meaningless.
13198         * include/rpcdce2.h: Likewise.
13199
13200         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13201
13202         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13203         * include/olectlid.h: Likewise
13204         * include/shlguid.h: Likewise
13205
13206         * include/coguid.h: Delete file since it was for 16 bit windows only.
13207
13208         * lib/*.def: Appended .dll to library name where needed.
13209
13210         * include/windef.h: Define _stdcall and __stdcall only if not
13211         previously defined instead of undefining first.
13212
13213         * include/dlgs.h: Put RC_INVOKED around structure defs
13214
13215         * include/intshcut.h: New file
13216         * include/isguids.h: New file
13217
13218         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13219
13220 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13221
13222         * include/winnt.h: Added check if _T is defined before defining it
13223
13224         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13225
13226         * include/dlgs.h: New file
13227
13228         * include/winbase.h: Removed DllEntryPoint define
13229
13230         * include/winbase.h: Added SetupComm prototype
13231
13232         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13233         supported anyway.
13234
13235         * include/basetyps.h: Removed use of COMOBJECT define, instead
13236         DECLARE_INTERFACE directly uses comobject attribute when GCC
13237         is used.
13238
13239         * include/wtypes.h: STGC enum was missing typedef
13240
13241         * include/objidl.h: ADVC enum was missing typedef
13242
13243         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13244         they are nested within the VOID definition.
13245
13246         * include/winbase.h: Added stream ids and attributes
13247
13248         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13249         to an ANYSIZE_ARRAY array.
13250
13251 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13252
13253         * include/windef.h: defined _declspec as __declspec since
13254         some programs (like VWCL) use _declspec instead of __declspec
13255
13256         * include/winnt.h: added COMPRESS_FORMAT defines
13257
13258         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13259
13260         * include/winnt.h: added HEAP_XXXX defines
13261
13262         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13263
13264         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13265         specification.
13266
13267         * include/winnt.h: added NTAPI define
13268
13269 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13270
13271         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13272         instead of CHAR or WCHAR.
13273
13274         * include/winnt.h: added _T define
13275
13276         * include/winnt.h: added test for _TCHAR_DEFINED
13277
13278         * include/winnt.h: included string.h for memory macros
13279
13280         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13281
13282         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13283
13284         * include/prsht.h: added PropSheet_XXX macros
13285
13286
13287 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13288
13289         * include/winspool.h: Changed DeletePrinterProcessor and
13290         DeletePrinterProvidor to DeletePrintXX.
13291
13292         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13293         LOGCOLORSPACEW.
13294
13295         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13296         variants
13297
13298         * include/wingdi.h: Likewise for GetLogColorSpace
13299
13300         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13301
13302         * include/richedit.h: Added missing defines and structures
13303
13304         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13305
13306         * include/winuser.h: Added HWND_DESKTOP
13307
13308 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13309
13310         * Makefile: Include ChangeLog when building source
13311         distribution (srcdist)
13312
13313         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13314         are always defined as STDAPI and STDAPI_
13315
13316         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13317         are always defined as STDAPI and STDAPI_
13318
13319         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13320
13321         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13322
13323         * ChangeLog started