OSDN Git Service

Provide default definition for _WIN32_IE feature test macro.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2017-12-16  Keith Marshall  <keith@users.osdn.me>
2
3         Provide default definition for _WIN32_IE feature test macro.
4
5         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
6         (_WIN32_IE_IE50): ...this default value.
7
8         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
9         a conflicting proposal for the default value.
10
11 2017-12-06  Keith Marshall  <keith@users.osdn.me>
12
13         Prepare and publish MinGW.org WSL-5.0.2 release.
14
15         * All files (wsl-5.0.2-release): Tag assigned.
16
17 2017-11-28  Keith Marshall  <keith@users.osdn.me>
18
19         Make <wsnetbs.h> header effectively self-contained.
20
21         * include/wsnetbs.h: Assert copyright; tidy layout; include
22         "_winsock.h", so making this header effectively self-contained, and
23         thus relieving the user of a responsibility for ensuring that some
24         other appropriate WinSock header has been included first.
25
26 2017-11-28  Keith Marshall  <keith@users.osdn.me>
27
28         Factor <winsock.h> duplicate content out of <winsock2.h>
29
30         * include/winsock2.h: Remove all declarations and definitions which
31         are identically specified in <winsock.h>, but keep them in scope by...
32         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
33         declarations and definitions therefrom, which introduce conflicts.
34         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
35         definitions and declarations.
36
37         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
38         WinSock v1.1 and WinSock v2, the latter of which will override when
39         correctly included by <winsock2.h>
40
41 2017-11-24  Keith Marshall  <keith@users.osdn.me>
42
43         Make <winsock.h> and <winsock2.h> duplicate code congruent.
44
45         * include/winsock.h (SOMAXCONN): Move definition into...
46         [!__INSIDE_MSYS__]: ...this guarded scope.
47
48         * include/winsock2.h: Rearrange as necessary.
49         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
50         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
51         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
52         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
53         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
54         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
55         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
56         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
57         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
58         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
59         [!defined __INSIDE_MSYS__]: ...as this, throughout.
60         (gethostname): Update function prototype, adding...
61         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
62
63         * include/ws2spi.h: Tidy layout; assert copyright.
64         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
65         (LPFD_SET): Delete all type references; use...
66         (fd_set *): ...this instead.
67
68 2017-11-14  Keith Marshall  <keith@users.osdn.me>
69
70         Establish default selection for WinSock API declaration.
71
72         * include/windows.h include/nspapi.h: Include...
73         * include/_winsock.h: ...this new system private header; it selects...
74         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
75         provided by conditional inclusion of <winsock2.h>, otherwise...
76         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
77         as provided by inclusion of <winsock.h>
78
79         * tests/headers.at <_winsock.h>: Add reference.
80
81 2017-11-14  Keith Marshall  <keith@users.osdn.me>
82
83         Update gethostname() declaration; drop Cygwin specificity.
84
85         * include/winsock.h (gethostname): Declare unconditionally; add...
86         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
87         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
88         [!defined __INSIDE_MSYS__]: ...as this, throughout.
89
90 2017-11-09  Keith Marshall  <keith@users.osdn.me>
91
92         Normalize fd_set event macros for <winsock2.h> compatibility.
93
94         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
95         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
96         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
97         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
98         count to a bit flag with value of 1, in each case respectively.
99         [_WINSOCK2_H]: Extend shift count enumeration, to include...
100         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
101         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
102         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
103         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
104         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
105         of 1 greater than the offset of the last defined flag; hence...
106         (FD_ALL_EVENTS): ...derive this mask for all event flags.
107
108 2017-11-09  Keith Marshall  <keith@users.osdn.me>
109
110         Filter potential WinSock v2 conflicts out of <winsock.h>
111
112         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
113         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
114         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
115         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
116         not define any of these; they are not compatible with WinSock v2.
117         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
118         appropiately in <winsock2.h>
119
120 2017-11-09  Keith Marshall  <keith@users.osdn.me>
121
122         Filter out <winsock.h> typedef anomalies.
123
124         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
125         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
126         them as type definitions, but warn of potential conflict with...
127         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
128         function; declare its prototype.
129
130 2017-11-08  Keith Marshall  <keith@users.osdn.me>
131
132         Overhaul WinSock fd_set content management macros.
133
134         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
135         original implementations of each of these macros, redirecting to...
136         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
137         inline functions, respectively; these are more robust, and correct a
138         defect in the original FD_SET macro implementation, whereby duplicate
139         descriptors could be added to an fd_set array, but would not then be
140         removed by the corresponding FD_CLR macro.
141
142         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
143         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
144         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
145         function, which is implemented in each of these libraries.
146
147 2017-11-07  Keith Marshall  <keith@users.osdn.me>
148
149         Identify features which have been deprecated in WinSock v2.
150
151         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
152         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
153         (__MINGW_ATTRIB_DEPRECATED): ...to this.
154
155         * include/winsock.h include/winsock2.h: Qualify...
156         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
157         (WSACancelBlockingCall): ...each of these function prototypes, with...
158         (__WINSOCK2_DEPRECATED): ...this attribute.
159
160 2017-11-07  Keith Marshall  <keith@users.osdn.me>
161
162         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
163
164         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
165         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
166         with preferred convention for system feature test macros.
167
168 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
169
170         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
171
172         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
173         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
174         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
175         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
176         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
177         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
178         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
179         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
180         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
181         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
182         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
183
184         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
185         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
186
187 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
188
189         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
190
191         * include/wtypes.h: Tidy layout; assert copyright.
192         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
193         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
194         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
195         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
196         (__BLOB_T_DEFINED): ...this; do not define...
197         (_WTYPES_H): ...this external guard.
198
199         * include/nspapi.h: Tidy layout; assert copyright.
200         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
201         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
202         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
203         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
204         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
205         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
206         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
207         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
208         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
209         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
210         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
211         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
212         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
213         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
214         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
215         (__AW_ALIAS__): ...this, for definition of each of...
216         (SERVICE_INFO, LPSERVICE_INFO): ...these.
217
218         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
219         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
220         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
221         include nspapi.h selectively, to acquire them.
222
223 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
224
225         Factor <winerror.h> duplicate content out of winsock headers.
226
227         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
228         conditional block, and all of its content; selectively include...
229         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
230         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
231         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
232         define them, to segregate WSA error messages applicable to WinSock v2
233         only, from those applicable to both WinSock v1.1 and WinSock v2.
234         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
235         codes, except WSABASEERR, relative to WSABASEERR itself.
236
237 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
238
239         Factor <sys/time.h> duplicate content out of winsock headers.
240
241         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
242         conditional block, and all its content; include <sys/time.h> instead.
243         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
244         processing this header, such that only selected content from other
245         internally referenced headers is exposed.
246
247 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
248
249         Source BSD non-standard type definitions from mingwrt header.
250
251         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
252         conditional block, and its entire type definition content; include...
253         * include/sys/bsdtypes.h: ...this common file instead; it defines...
254         (u_char, u_int, u_long, u_short): ...these non-standard data types.
255
256 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
257
258         Correct misuse of __INSIDE_MSYS__ feature test.
259
260         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
261         omits "defined" operator; it should be expressed consistently as...
262         [! defined __INSIDE_MSYS__]: ...this; correct it.
263
264 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
265
266         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
267
268         * include/winsock.h: Tidy layout; assert copyright.
269         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
270
271         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
272         sections, which are common with <winsock.h>, are laid out congruently.
273         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
274         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
275         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
276         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
277         [UNICODE]: ...alternative typedefs, and function name aliases...
278         [!UNICODE]: ...versus this case.
279
280 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
281
282         Resolve secondary issue arising from MinGW-Bug [#2350]
283
284         * include/winuser.h (GetTitleBarInfo)
285         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
286         it conflicted with current MSDN documentation, so now falls within...
287         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
288
289 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
290
291         Resolve MinGW-Bug [#2350]
292
293         * include/winuser.h (GetTitleBarInfo): Move prototype after...
294         (PTITLEBARINFO): ...this type definition; it is used as a function
295         argument type, so must be defined beforehand.
296
297 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
298
299         Extend testsuite to cover winsock fd_set macro operations.
300
301         * tests/winsock.at: New file; it implements appropriate tests, and
302         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
303         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
304
305         * tests/testsuite.at.in (winsock.at): Integrate it.
306         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
307         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
308         default list of libraries, or resets the list to this initial default.
309         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
310         library specifications, to be used until subsequently reset.
311
312 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
313
314         Prepare and tag for release of MinGW.org WSL-5.0.1
315
316         * All files (wsl-5.0.1-release): Tag assigned.
317
318 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
319
320         Automate testsuite dependency generation.
321
322         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
323         enumerate all such wildcard matches as prerequisites, instead of...
324         (headers.at): ...this sole explicit dependency.
325
326 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
327
328         Make <winnt.h> header effectively self-contained.
329
330         * include/winnt.h (_WINNT_H): Defer definition unless included via...
331         (windef.h): ...this; include it, to enforce inclusion order, then...
332         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
333
334 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
335
336         Consolidate <winuser.h> version specific conditionals.
337
338         * include/winuser.h: Reorganize file content; group manifest constant
339         definitions into one nested collection of conditional blocks, with one
340         block per Windows version evolution; do likewise for type definitions
341         and function prototypes which are always exposed, and separately...
342         [! defined NOGDI]: ...for those which may be suppressed, when GDI
343         support is not required.
344
345 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
346
347         Make <winuser.h> header effectively self-contained.
348
349         * include/winuser.h (stdarg.h): Include it, in addition to...
350         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
351         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
352
353 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
354
355         Consolidate <wingdi.h> version specific conditionals.
356
357         * include/wingdi.h: Reorganize file content; group manifest constant
358         definitions into a single nested collection of conditional blocks, for
359         those definitions which are common to both Win9x and WinNT, with one
360         block per Windows version evolution, sorting alphabetically within
361         each block; do likewise for additional manifest constant definitions
362         which are specific to WinNT, and also for data type definitions and
363         function prototypes.
364
365 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
366
367         Tidy, and make <wingdi.h> header effectively self-contained.
368
369         * include/wingdi.h: Tidy layout; assert copyright.
370         (windef.h): Include it; this achieves self-containment.
371         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
372         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
373         (__AW_ALIAS__): ...this, when defining each of...
374         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
375         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
376         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
377         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
378         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
379         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
380         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
381         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
382         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
383         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
384         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
385         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
386         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
387         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
388         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
389         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
390         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
391         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
392         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
393         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
394         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
395         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
396         (wglUseFontOutlines, GetGlyphIndices): ...these.
397
398 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
399
400         Declare CONDITION_VARIABLE API, per feature request [#2314]
401
402         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
403         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
404         (InitializeConditionVariable, SleepConditionVariableCS)
405         (SleepConditionVariableSRW, WakeAllConditionVariable)
406         (WakeConditionVariable): ...declare prototypes.
407
408 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
409
410         Declare SRWLOCK API, to support feature request [#2314]
411
412         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
413         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
414         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
415         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
416         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
417         (TryAcquireSRWLockShared): Declare additional prototypes.
418
419 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
420
421         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
422
423         * include/winerror.h: Tidy layout; assert copyright.
424
425         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
426         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
427         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
428         both locations; it permitted inconsistency between the two.
429
430 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
431
432         Consolidate <winbase.h> version specific conditionals.
433
434         * include/winbase.h: Reorganize file content; group manifest constant
435         definitions into one nested collection of conditional blocks, with one
436         block per Windows version evolution, sorting alphabetically within each
437         block; do likewise for data type definitions and function prototypes.
438
439 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
440
441         Tidy, and make <winbase.h> header effectively self-contained.
442
443         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
444         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
445         (__AW_EXTENDED__): ...this; subsequently reimplement...
446         (__AW_ALIAS__): ...this, with original name, now encapsulating...
447         (__AW_SUFFIXED__): ...this.
448
449         * include/dbt.h (__AW_ALIAS__): Replace all references with...
450         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
451         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
452         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
453
454         * include/winbase.h: Tidy layout; assert copyright.
455         (stdarg.h, windef.h): Include them, to achieve self-containment.
456         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
457         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
458         [__AW_ALIAS__]: ...this, to correctly specify each of...
459         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
460         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
461         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
462         [__AW_SUFFIXED__]: ...this, to correctly map each of...
463         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
464         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
465         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
466         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
467         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
468         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
469         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
470         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
471         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
472         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
473         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
474         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
475         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
476         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
477         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
478         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
479         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
480         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
481         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
482         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
483         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
484         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
485         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
486         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
487         (GetPrivateProfileInt, GetPrivateProfileSection)
488         (GetPrivateProfileSectionNames, GetPrivateProfileString)
489         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
490         (GetProfileString, GetShortPathName, GetStartupInfo)
491         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
492         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
493         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
494         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
495         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
496         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
497         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
498         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
499         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
500         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
501         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
502         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
503         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
504         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
505         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
506         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
507         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
508         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
509         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
510         (WritePrivateProfileString, WritePrivateProfileStruct)
511         (WriteProfileSection, WriteProfileString): ...these, and add...
512         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
513         (GetFirmwareEnvironmentVariable): ...these previously missing generic
514         function name aliases.
515
516 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
517
518         Refactor mingwrt and w32api common makefile content.
519
520         * Makefile.in (w32api-srcdist-config-files): Rename it...
521         (w32api-srcdist-common-files): ...as this phoney build rule.
522         (shared_include_file): New macro; define it, and include named file.
523         (configure, config.status, Makefile, config.status.missing, _mingw.h)
524         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
525         out; relocate them to new file in common parent directory...
526         * ../Makefile.comm: ...here.
527
528 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
529
530         Correct a copyright notice update omission.
531
532         * configure.ac: Extend copyright date range to include 2017.  Also
533         clean up superfluous trailing whitespace.
534
535 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
536
537         Fix generated header file dependencies.
538
539         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
540         [VERSION.m4]: ...this; package version changes are no longer made...
541         [configure.ac]: ...here; delete associated prerequisite reference.
542         (distclean-local): Delete them.
543
544 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
545
546         Prepare and tag for release of w32api-5.0 package set.
547
548         * All files (wsl-5.0-release): Tag assigned.
549
550 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
551
552         Implement basic test suite infrastructure.
553
554         * tests: New subdirectory; it hosts...
555         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
556         * tests/headers.at: ...these new files; they implement the basic test
557         suite infrastructure, initially comprising header integrity checks.
558
559         * configure.ac (AC_PROG_CXX): Check it.
560         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
561         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
562         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
563         tests/Makefile.
564
565         * Makefile.in (check test tests): New rules; all are synonymous.
566         (check-recursive): New rule; invoked by each of the preceding three.
567         (w32api-srcdist-testsuite-files): New rule; implement and use it...
568         (w32api-srcdist-files): ...here.
569
570 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
571
572         Add missing constant definition, per issue [#2249].
573
574         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
575
576 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
577
578         Avoid unnecessary duplication of configuration files.
579
580         * Makefile.in (vpath install-sh): Define it; it matches...
581         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
582         rule for creating duplicate file reference links in $top_srcdir.
583         (configure): Add '-I ..' option, when running autoconf.
584         (w32api-srcdist-files): Rename it as...
585         (w32api-srcdist-package-files): ...this; remove dependencies on...
586         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
587         (w32api-srcdist-config-files): ...this new distributable files
588         enumeration goal; add it as one new prerequisite of...
589         (w32api-srcdist-files): ...this repurposed goal; also depends on...
590         (w32api-srcdist-package-files): ...this; populate it using...
591         (SRCDIST_ADD): ...this macro; redefine it accordingly.
592
593 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
594
595         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
596
597         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
598         it was previously transcribed incorrectly, as being equivalent to...
599         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
600         (FILE_DEVICE_DISK): ...this.
601
602 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
603
604         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
605
606         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
607         alternative generic symbol mapping definitions, and typedefs, with...
608         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
609         their respective ANSI and UNICODE specific references.
610
611 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
612
613         Deprecate obsolete <winable.h> and <pbt.h> headers.
614
615         * Makefile.in (%.h.in): Generalize vpath definition.
616         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
617         (w32api_generated_headers, replace_headers, macro_name): New macros.
618         (install-w32api-headers): Add dependency on w32api_dist_headers.
619         (%.h): New static pattern rule; it generates generic dependants of...
620         * include/obsolete.h.in: ...this new template for obsolete headers.
621
622         * include/winable.h include/pbt.h: Delete them; they are obsolete;
623         replace them by install-time generated generic stubs.
624
625 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
626
627         Update <winuser.h> and <dbt.h>; fix issue [#2317].
628
629         * include/winuser.h: Tidy layout; add copyright notice.
630         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
631         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
632         selective inclusion of content from other headers; delete when done.
633         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
634         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
635         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
636         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
637         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
638         them selectively from <dbt.h>, where they are properly defined.
639         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
640         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
641         formerly UINT, which doesn't match 64-bit size required for Win64.
642         (SetTimer): Likewise; also declare similar return type.
643         (WINEVENTPROC): Add missing CALLBACK attribute.
644         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
645
646         * include/w32api.h (__AW_ALIAS__): New macro; define it.
647         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
648
649         * include/dbt.h: Tidy layout; add copyright notice.
650         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
651         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
652         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
653         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
654         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
655         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
656         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
657         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
658         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
659         structure typedef names, and their respectively corresponding...
660         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
661         type names.
662
663 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
664
665         Fix a minor ISO-C++11 conformity issue.
666
667         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
668         by ISO-C++11, between concatenated string literal elements.
669         (GetFiberData, NtCurrentTeb): Likewise.
670
671 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
672
673         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
674
675         * include/ddk/winddk.h: Update per issue [#2307] resolution.
676         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
677
678 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
679
680         Prepare and tag all files for release of w32api-3.18.1
681
682         * configure.ac (AC_INIT): Increment patch level to 3.18.1
683
684 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
685
686         Resolve improper macro expansion issue [#2307].
687
688         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
689         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
690         dependent macro WITHIN the expansion of each of these; hence...
691
692         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
693         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
694         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
695         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
696         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
697         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
698         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
699         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
700         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
701         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
702         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
703         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
704         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
705         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
706         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
707         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
708         ...adjust these dependent macro definitions accordingly.
709
710         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
711         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
712         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
713         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
714         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
715         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
716         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
717         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
718         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
719         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
720
721 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
722
723         Update install-sh to match mingw.org/build-aux package.
724
725         * install-sh: Delete it; use version in parent directory instead,
726         recreating local copy, (as symlink, if supported), on demand.
727
728 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
729
730         Eliminate redundant configuration files.
731
732         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
733         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
734
735         * configure.ac (AC_PROG_LN_S): Add configuration check.
736
737 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
738
739         Discard redundant config.guess and config.sub files.
740
741         * config.guess config.sub: Delete them; they are no longer required.
742         * Makefile.in (SRCDIST_ADD): Remove related references.
743
744 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
745
746         Merge recent legacy branch updates to 5.0-active branch.
747
748         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
749         * include/sdkddkver.h include/setupapi.h include/windows.h
750         * include/winnt.h include/winuser.h include/winver.h
751         * include/wtsapi32.h lib/wtsapi32.def: Updated.
752
753 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
754
755         Prepare and tag all files for release of w32api-3.18.
756
757 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
758
759         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
760
761         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
762         references from $(MAKE) command lines; make passes them implicitly.
763
764 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
765
766         Backport MemoryBarrier() implementation from 4.0-dev branch.
767
768         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
769         Earnie's original inline implementation, but declared 'static' to fix
770         issue [#1661]; it is further modified, to avoid the broken pre-Vista
771         fallback identified by issue [#2131], and to remove references to...
772         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
773         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
774         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
775         back to inline assembly code when necessary.
776
777         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
778         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
779         code, for hosts which do not support the SSE2 'mfence' instruction.
780
781 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
782
783         Merge further W32API updates from Cygwin CVS.
784         Incorporated selected changes from 2012-08-01 to 2012-08-04.
785
786         * include/setupapi.h include/winuser.h include/winver.h
787         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
788
789 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
790
791         Update mapping of GCC to MSVC host identification macros.
792
793         * include/windows.h: Assert copyright; tidy layout.
794         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
795         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
796         [!_WINSVC_H]: Do not explicitly test these here; they are properly
797         managed implicitly, by GCC, when including the associated headers.
798
799         * include/winnt.h: Assert copyright; tidy layout.
800         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
801         (__aligned__, __always_inline__, __selectany__): Prefer these...
802         (aligned, always_inline, selectany): ...to these attribute forms.
803         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
804         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
805         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
806         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
807         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
808         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
809         (_M_IX86): ...also removing this, but relocate it to...
810         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
811         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
812         appropriate.
813
814         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
815         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
816
817 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
818
819         Merge W32API updates, from Cygwin CVS, into legacy branch.
820         Incorporate changes since release of w32api-3.17, until 2012-07-06.
821
822         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
823         2012-04-28 commit to Cygwin CVS.
824
825         * include/gdiplus/gdiplustypes.h include/imagehlp.h
826         * include/routprot.h include/shlwapi.h include/userenv.h
827         * include/winbase.h include/wincon.h include/windef.h
828         * include/winerror.h include/wingdi.h include/winnt.h
829         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
830         match Cygwin CVS state, as of 2012-07-06.
831
832         * include/wincrypt.h: Updated to remove duplicate manifest constant
833         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
834         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
835         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
836         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
837         copies of these further duplicated definitions, identified during
838         the merging operation.
839
840 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
841
842         Synchronize package version management with MinGW Runtime.
843
844         * VERSION.m4: New file; link it to keep in sync with identically named
845         file in top level composite package source directory; it defines...
846         (__VERSION__): ...this new composite package version macro.
847
848         * aclocal.m4: Link it, to keep in sync with identically named files in
849         top level composite source and sibling mingwrt sub-package directories.
850         (__VERSION__): New macro; include VERSION.m4 to define it.
851         (__BUG_REPORT_URL__): New macro; define it.
852
853         * configure.ac (AC_INIT): Assign package version and bug report URL...
854         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
855         automatic inclusion of aclocal.m4
856
857         * Makefile.in (configure): Add dependency on VERSION.m4
858
859 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
860
861         Eliminate redundant <parts/winioctl.h> header.
862
863         * include/parts/winioctl.h: Delete it; distribute its content...
864         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
865         ...among these, separating it into discrete sections based on...
866         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
867         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
868         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
869         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
870
871         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
872         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
873
874 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
875
876         Enforce consistent specification of package version.
877
878         * include/w32api.h: Rename as...
879         * include/w32api.h.in: ...this build-time template file.
880         (__W32API_VERSION): Redefine it, in terms of...
881         (%PACKAGE_VERSION_LONG%): ...this substitution template.
882         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
883         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
884         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
885         (%PACKAGE_VERSION_PATCH%): ...these.
886
887         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
888         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
889         mingwrt/include/_mingw.h.in file.
890
891         * Makefile.in (all-w32api-libs): Add dependency on...
892         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
893         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
894         they apply appropriate substitutions to the renamed template files.
895         (install-w32api-headers): Explicitly add w32api.h
896
897 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
898
899         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
900
901         * include/parts/winioctl.h: New file; it provides infrastructure for
902         sharing of common code between DDK headers and primary <winioctl.h>
903         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
904         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
905         macros; they facilitate more consise expression of factored out IOCTL
906         and FSCTL macros; define them.
907
908         * include/ddk/ntddk.h: Assert copyright; tidy layout.
909         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
910         (_DDK_NTDDK_H): ...this; it provides better indication of location.
911         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
912
913         * include/ddk/winddk.h: Assert copyright; tidy layout.
914         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
915         (_DDK_WINDDK_H): ...this; it provides better indication of location.
916         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
917         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
918         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
919         (METHOD_NEITHER): Redefine as enumeration; factor it out.
920         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
921         (FILE_WRITE_ACCESS): Likewise.
922         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
923         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
924         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
925         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
926         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
927         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
928         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
929         (PPARTITION_INFORMATION_MBR): Likewise.
930         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
931         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
932         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
933         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
934         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
935         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
936         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
937         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
938         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
939         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
940         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
941         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
942         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
943         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
944         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
945         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
946         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
947         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
948         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
949         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
950         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
951         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
952         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
953         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
954         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
955         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
956         was defined only when including this enumeration from winioctl.h
957         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
958         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
959         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
960         include parts/winioctl.h
961
962         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
963         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
964         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
965         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
966         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
967         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
968         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
969         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
970         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
971         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
972         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
973         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
974         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
975         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
976         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
977
978         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
979         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
980         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
981         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
982         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
983         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
984         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
985         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
986         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
987         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
988         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
989         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
990         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
991         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
992         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
993         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
994         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
995         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
996         these macros are now defined in parts/winioctl.h; include it.
997         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
998         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
999         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1000         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1001         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1002         (VALID_NTFT): Redefine as enumeration; factor it out.
1003         (IsRecognizedPartition, IsContainerPartition): Factor out.
1004         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1005         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1006         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1007         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1008         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1009         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1010         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1011         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1012         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1013         (struct _PARTITION_INFORMATION): Change field data types for...
1014         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1015         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1016         with Windows DDK convention, then factor out struct, together with...
1017         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1018         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1019         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1020         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1021         (struct _GET_LENGTH_INFORMATION)
1022         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1023         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1024         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1025         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1026         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1027         (PFORMAT_EX_PARAMETERS): Factor out.
1028         (struct _REASSIGN_BLOCKS): Change field data types for...
1029         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1030         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1031         convention, then factor out the struct definition, together with...
1032         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1033         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1034         (PSET_PARTITION_INFORMATION): Factor out.
1035         (struct _VERIFY_INFORMATION): Change field data type for...
1036         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1037         factor out the entire struct definition, together with...
1038         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1039         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1040         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1041         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1042         (PDISK_GROW_PARTITION): Factor out.
1043
1044         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1045         definitions from Windows DDK headers, by including parts/winioctl.h;
1046         delete duplicate definitions already identified as having been factored
1047         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1048         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1049         UCHAR, resulting in no significant changes, except that...
1050         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1051         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1052         (StorageManagerName): ...these previously missing fields, originally
1053         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1054         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1055
1056 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1057
1058         Windows application module version information API updates.
1059
1060         * include/winver.h: Assert copyright; tidy layout.
1061         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1062         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1063         having both ANSI and UTF-16LE specific alternative implementations.
1064         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1065         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1066         note that both are generic, with ANSI and UTF-16LE implementations,
1067         but the ANSI implementations are missing from MSVCRT.DLL when...
1068         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1069
1070         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1071         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1072
1073 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1074
1075         Revert a failed experimental macro construct.
1076
1077         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1078         code, and doesn't work in the C preprocessor conditional context where
1079         its associated constant definitions are most likely to be required.
1080         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1081         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1082         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1083         now in terms of their preferred equivalents from <sdkddkver.h>
1084
1085 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1086
1087         Code clean-up; fix MinGW-Bug [#2263].
1088
1089         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1090         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1091         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1092
1093         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1094         style comments, using ISO-C conforming style; remove all redundant
1095         parameter names from function prototype declarations, throughout.
1096         (pragma GCC system_header): Remove pointless conditional guard.
1097         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1098         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1099         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1100         alternatives, respectively; they offer improved self-documentation.
1101         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1102         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1103         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1104         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1105         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1106         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1107         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1108         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1109         from their __AW_STRING_A__ equivalent string constant definitions.
1110         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1111         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1112         a hexadecimal expression of the mask value over the former decimal.
1113         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1114         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1115         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1116         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1117         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1118         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1119         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1120         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1121         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1122         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1123         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1124         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1125         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1126         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1127         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1128         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1129         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1130         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1131         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1132         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1133         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1134         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1135         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1136         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1137         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1138         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1139         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1140         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1141         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1142         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1143         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1144         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1145         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1146         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1147         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1148         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1149         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1150         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1151         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1152         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1153         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1154         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1155         express them in hexadecimal, in preference to original decimal form.
1156         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1157         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1158         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1159         a string literal, but was missing delimiting quotes; insert them.
1160         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1161         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1162         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1163         aliases for each of the UNICODE/non-UNICODE cases respectively.
1164         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1165         was declared as type LPTSTR, but should be type LPSTR.
1166         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1167         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1168         type LPSTR, but should be type LPWSTR.
1169         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1170         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1171         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1172
1173 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1174
1175         Correct defect in build system compilation rule.
1176
1177         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1178         source file; it expands to also include prerequisite header files,
1179         which should not appear on the compilation command line.  Rewrite
1180         rule in static pattern format, and use $< instead.
1181
1182 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1183
1184         Build system corrections for GCC build time support.
1185
1186         * configure.ac (AC_PROG_CC): Don't use this; we need...
1187         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1188         building with only a stage 1 partially built GCC installation.
1189
1190         * Makefile.in (install-headers): New make objective; map it to...
1191         (install-w32api-headers): ...this, for which it is a logical alias.
1192
1193 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1194
1195         Overhaul and streamline build system configuration.
1196
1197         * configure.in: Delete obsolete file; replace with...
1198         * configure.ac: New file; rewritten per current autoconf conventions.
1199
1200         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1201         it now processes the entire build without using separate sub-makes.
1202
1203         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1204         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1205
1206 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1207
1208         Remove unused aclocal.m4 configuration file.
1209
1210         * aclocal.m4: Delete it; it provides no content used by this package.
1211
1212 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1213
1214         Adapt platform feature checks to NTDDI_VERSION conventions.
1215
1216         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1217         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1218         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1219         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1220         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1221
1222         * include/w32api.h: Assert copyright; include sdkddkver.h.
1223         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1224         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1225         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1226         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1227         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1228         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1229         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1230         macro definitions by long integer constants, and mark as deprecated.
1231         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1232         mingwrt/include/_mingw.h, whence we similarly relocate...
1233         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1234
1235         * include/windef.h: Assert copyright; include w32api.h, whence we
1236         infer default assignments, per included sdkddkver.h, for each of...
1237         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1238         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1239
1240 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1241
1242         Remove generated configure script from revision control.
1243
1244         * configure: Delete from SCM; maintainer must regenerate it, when
1245         required, as SCM will now ignore it.
1246
1247 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1248
1249         Cosmetic adjustment to match MSDN documentation.
1250
1251         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1252         of parameter #1 to be LPCVOID, in preference to formerly specified,
1253         and functionally equivalent, 'const LPVOID'.
1254
1255 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1256
1257         Correct typos, as identified by issue [#1534].
1258
1259         * include/setupapi.h (SetupCancelTemporary): Should be...
1260         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1261         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1262         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1263         (SetupQueryA, SetupQueryW): ...these respectively to...
1264         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1265         (SetupDiGetWizardage): Misspelled; correct it to...
1266         (SetupDiGetWizardPage): ...this.
1267
1268 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1269
1270         Declare WTSVirtualChannel API functions per issue [#1342].
1271
1272         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1273         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1274         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1275         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1276         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1277
1278         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1279
1280 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1281
1282         Correct MENUITEMINFO structure definition per issue [#1659].
1283
1284         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1285         field was defined as type DWORD; correct it to type ULONG_PTR.
1286
1287 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1288
1289         Extend visibility of winsock definitions when building Cygwin.
1290
1291         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1292         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1293         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1294         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1295         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1296         [__INSIDE_MSYS__]: ...keep them hidden.
1297
1298         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1299         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1300         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1301         [__INSIDE_MSYS__]: ...also keep them hidden.
1302
1303 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1304
1305         Correct version guard for WinXP minimum requirement.
1306
1307         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1308         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1309         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1310         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1311
1312 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1313
1314         Add missing <shobjidl.h> and associated UUID implementation.
1315
1316         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1317         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1318
1319 2012-03-19  Ben Greear  <greear@users.sf.net>
1320
1321         Adjust header file definition order, to fix issue [#1570].
1322
1323         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1324         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1325
1326 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1327
1328         Add missing return value, flagged by 'make test'.
1329
1330         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1331         Return NO_ERROR in virtual definition.
1332
1333 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1334
1335         Remove duplicate definitions, identified by 'make test'.
1336
1337         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1338         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1339         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1340         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1341         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1342         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1343
1344         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1345         correctly defined (per MSDN) in <wincrypt.h>
1346
1347 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1348
1349         Correct misuse of #ifdef, identified by 'make test'.
1350
1351         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1352         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1353
1354 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1355
1356         Replace more incorrectly named manifest constants.
1357
1358         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1359         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1360         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1361         definitions respectively; retain for backward compatibility only.
1362
1363 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1364
1365         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1366
1367         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1368
1369 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1370
1371         Add missing MAPVK manifest constant definitions.
1372
1373         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1374         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1375
1376 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1377
1378         Correct some misspelled manifest constant names.
1379
1380         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1381         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1382         alias to original misspelling, to maintain backward compatibility.
1383         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1384         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1385         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1386         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1387
1388 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1389
1390         Add a missing Win2K sockets IOCTL feature.
1391
1392         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1393
1394 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1395
1396         Fix an incorrectly typed structure member.
1397
1398         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1399         should be LPSTR; correct it.
1400
1401 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1402
1403         Add another missing manifest constant definition.
1404
1405         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1406
1407 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1408
1409         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1410
1411         * include/windef.h (PACKED): Delete macro definition; its name is not
1412         reserved, and may thus conflict with a user defined name; replace it...
1413         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1414         use __attribute__((packed)) directly instead.
1415
1416 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1417
1418         Fix bad typedef, per MinGW-Bug [#1529].
1419
1420         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1421         conform with MSDN reference, as identified by Safety0ff.
1422
1423 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1424
1425         Add a missing manifest constant definition.
1426
1427         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1428
1429 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1430
1431         Win2K and Vista userenv updates.
1432
1433         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1434         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1435         (ExpandEnvironmentStringsForUser): Define function aliases.
1436         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1437         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1438         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1439         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1440         (GetProfileType): Declare function prototypes.
1441         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1442         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1443         New manifest constants; define them.
1444
1445 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1446
1447         * Makefile.in: Increment CYGRELEASE to 2.
1448
1449 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1450
1451         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1452
1453 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1454
1455         * include/w32api.h: Increment version to 3.17.
1456         * Makefile.in: Ditto.
1457
1458 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1459
1460         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1461         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1462         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1463         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1464
1465 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1466
1467         * include/w32api.h: Increment version to 3.16.
1468         * Makefile.in: Ditto.
1469
1470 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1471
1472         * include/commctrl.h (NMTCKEYDOWN): Define.
1473
1474 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1475
1476         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1477         Define.
1478
1479 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1480
1481         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1482         PSAPI_WORKING_SET_INFORMATION): Define.
1483
1484 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1485
1486         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1487
1488 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1489
1490         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1491
1492 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1493
1494         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1495         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1496         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1497
1498 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1499
1500         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1501         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1502         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1503
1504 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1505
1506         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1507         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1508
1509 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1510
1511         * include/winbase.h (__MINGW_EXTENSION): Define.
1512         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1513         struct to correct issue with -std=c99.
1514
1515 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1516
1517         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1518         (TIMER_BASIC_INFORMATION): Define.
1519         (NtQueryTimer): Define.
1520         (ZwQueryTimer): Define.
1521
1522 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1523
1524         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1525
1526 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1527
1528         * include/winbase.h (GetComputerNameEx): Define.
1529
1530 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1531
1532         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1533
1534 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1535
1536         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1537         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1538         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1539         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1540         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1541         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1542         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1543         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1544         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1545
1546 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1547
1548         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1549         Add defines for backward compatibility.
1550
1551 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1552
1553         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1554         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1555         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1556         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1557         EnumResourceTypesW): Ditto.
1558         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1559
1560 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1561
1562         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1563
1564 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1565
1566         * include/bdatypes.h: Add missing semicolons.
1567
1568 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1569
1570         * include/w32api.h: Increment version to 3.15.
1571         * Makefile.in: Ditto.
1572
1573 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1574
1575         * Makefile.in: Update naming convention and compression format (lzma),
1576         leaving existing naming convention and compression format as is for Cygwin.
1577
1578 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1579
1580         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1581         STATE_SYSTEM_PROTECTED): Define.
1582
1583         Thank you to Marcus von Appen for reporting the issue.
1584
1585 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1586
1587         * include/winuser.h (CF_DIBV5): Define.
1588         (CF_MAX): Adjust accordingly.
1589
1590         Thank you to Lenard Lindstrom for reporting the issue.
1591
1592 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1593
1594         * include/sspi.h (QuerySecurityContextToken): Define.
1595         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1596
1597         Thank you to Magnus Hagander for reporting the issue.
1598
1599 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1600
1601         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1602
1603 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1604
1605         * include/shlwapi (ASSOCDATA): Update definition.
1606
1607         Thank you to Frederic Deschamps for reporting the issue.
1608
1609 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1610
1611         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1612         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1613         COPY_FILE_NO_BUFFERING): Define.
1614
1615         Thank you to Roland Schwingel for reporting the issue.
1616
1617 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1618
1619         * include/winuser.h (HHOOK): Move definition from here...
1620         * include/windef.h: ...to here, as per MSDN.
1621
1622         Thank you to Samuel Thibault for reporting the issue.
1623
1624 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1625
1626         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1627         MSDN, change return type to LPCH.
1628         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1629
1630         Thank you to Emmanuel Stapf for reporting the issue.
1631
1632 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1633
1634         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1635         * include/windowsx.h (SNDMSG): Ditto.
1636
1637 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1638
1639         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1640
1641         Thank you to Ozkan Sezer for reporting the issue.
1642
1643 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1644
1645         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1646
1647         Thank you to Chris Oldwood for reporting the issue.
1648
1649 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1650
1651         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1652
1653         Thank you to Rick Walsh for reporting the issue.
1654
1655 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1656
1657         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1658
1659 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1660
1661         * include/winbase.h (OVERLAPPED): Correct definition.
1662
1663 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1664
1665         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1666         definition.
1667
1668         Thank you to Pasi Ruokola for reporting the issue.
1669
1670 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1671
1672         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1673
1674         Thank you to cheznonnon for reporting the issue.
1675
1676 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1677
1678         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1679
1680 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1681
1682         * winnt.h: Fix several SUBLANG ID errors (ref:
1683         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1684         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1685         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1686         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1687         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1688         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1689         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1690         (SUBLANG_LAO_LAO): ... this.
1691         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1692         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1693         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1694         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1695         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1696         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1697         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1698         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1699         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1700         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1701         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1702
1703 2010-08-24  LRN  <lrn1986@gmail.com>
1704
1705         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1706         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1707         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1708         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1709         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1710         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1711         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1712         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1713         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1714         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1715         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1716         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1717         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1718         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1719         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1720         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1721         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1722         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1723         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1724         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1725         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1726         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1727         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1728         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1729         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1730         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1731         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1732         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1733         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1734         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1735         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1736         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1737         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1738         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1739         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1740         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1741         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1742         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1743         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1744         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1745         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1746         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1747         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1748         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1749         WAVE_FORMAT_DTS2): Define.
1750         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1751         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1752         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1753         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1754         Define.
1755
1756 2010-08-23  LRN  <lrn1986@gmail.com>
1757
1758         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1759         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
1760         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
1761         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
1762         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
1763         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
1764         GetFinalPathNameByHandleW): Define.
1765
1766 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1767
1768         * lib/CheckConflicts.sh: New file.
1769
1770 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1771
1772         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
1773         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
1774         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
1775         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
1776         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
1777         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
1778         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
1779         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
1780         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
1781         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
1782         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
1783         conflicting definition.
1784         * lib/th32.def: Remove.
1785         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
1786         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
1787         definition.
1788
1789 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1790
1791         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
1792
1793 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1794
1795         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
1796
1797 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
1798
1799         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
1800         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
1801         * include/ddk/winddk.h: Ditto.
1802
1803 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
1804
1805         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
1806         CreateSymbolicLinkA, CreateSymbolicLink): Define
1807
1808 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1809
1810         * lib/kernel32.def(FatalExit): Correct definiton.
1811
1812 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1813
1814         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
1815         from 2010-07-17 since it breaks several applications.
1816
1817 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1818
1819         * lib/kernel32.def: Regenerate using gendef.
1820
1821 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
1822
1823         * include/commctrl.h (LVIF_GROUPID): Fix definition.
1824
1825 2010-07-20  Michael James  <james.me@gmail.com>
1826
1827         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
1828
1829 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1830
1831         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
1832         definition.
1833         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
1834         NdrMarshSCtxtHdl): Ditto.
1835         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
1836         definition in favour of typedef definition.
1837
1838         Thank you to Yuta Tomino for reporting the issues.
1839
1840 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
1841
1842         * include/gdiplus.h: New file.
1843         * include/gdiplus/gdiplus.h: New file.
1844         * include/gdiplus/gdiplusbase.h: New file.
1845         * include/gdiplus/gdiplusbrush.h: New file.
1846         * include/gdiplus/gdipluscolor.h: New file.
1847         * include/gdiplus/gdipluscolormatrix.h: New file.
1848         * include/gdiplus/gdipluseffects.h: New file.
1849         * include/gdiplus/gdiplusenums.h: New file.
1850         * include/gdiplus/gdiplusflat.h: New file.
1851         * include/gdiplus/gdiplusgpstubs.h: New file.
1852         * include/gdiplus/gdiplusgraphics.h: New file.
1853         * include/gdiplus/gdiplusheaders.h: New file.
1854         * include/gdiplus/gdiplusimageattributes.h: New file.
1855         * include/gdiplus/gdiplusimagecodec.h: New file.
1856         * include/gdiplus/gdiplusimaging.h: New file.
1857         * include/gdiplus/gdiplusimpl.h: New file.
1858         * include/gdiplus/gdiplusinit.h: New file.
1859         * include/gdiplus/gdipluslinecaps.h: New file.
1860         * include/gdiplus/gdiplusmatrix.h: New file.
1861         * include/gdiplus/gdiplusmem.h: New file.
1862         * include/gdiplus/gdiplusmetafile.h: New file.
1863         * include/gdiplus/gdiplusmetaheader.h: New file.
1864         * include/gdiplus/gdipluspath.h: New file.
1865         * include/gdiplus/gdipluspen.h: New file.
1866         * include/gdiplus/gdipluspixelformats.h: New file.
1867         * include/gdiplus/gdiplusstringformat.h: New file.
1868         * include/gdiplus/gdiplustypes.h: New file.
1869         * lib/gdiplus.c: New file containing GDI+ variable definitions
1870         and GUIDs.
1871         * lib/gdiplus.def: New file.
1872         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
1873         add gdiplus.c to SOURCES.
1874         * lib/test.c: Include gdiplus.h.
1875
1876 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
1877
1878         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
1879         GetPerformanceInfo): Define.
1880         * lib/psapi.def (GetPerformanceInfo): Define.
1881         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
1882         CryptEnumProviders): Define.
1883
1884 2010-02-17  LRN  <lrn1986@gmail.com>
1885
1886         * include/shlguid.h (IID_IFolderView): Define.
1887         * include/shlobj.h (IFolderView interface): Define.
1888         * lib/shell32.c (IID_IFolderView): Export.
1889
1890 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1891
1892         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
1893         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
1894
1895 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1896
1897         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
1898
1899 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1900
1901         * include/shlobj.h (SHParseDisplayName): Fix definition.
1902
1903 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1904
1905         * include/w32api.h: Increment version to 3.14.
1906         * Makefile.in: Ditto.
1907
1908 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1909
1910         * include/shlobj.h (SHParseDisplayName): Define.
1911
1912         Thanks to James Roberts-Thomson for the report.
1913
1914 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1915
1916         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
1917
1918         Thanks to Alexander Vassilev for the report.
1919
1920 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1921
1922         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
1923
1924         Thanks to Thomas Denk for the report.
1925
1926 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1927
1928         * include/winbase.h (UnmapViewOfFile): Correct definition.
1929
1930         Thanks to Dimitry Sibiryakov for the report.
1931
1932 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
1933
1934         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
1935
1936 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
1937
1938         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
1939         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
1940
1941 2009-20-10  Michael James  <james.me@gmail.com>
1942
1943         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
1944         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
1945         >= 0x0501.
1946         (WM_UNICHAR,UNICODE_NOCHAR): Define.
1947         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
1948         RemoveWindowSubclass@12): Add exports.
1949         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
1950
1951 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
1952
1953         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
1954         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
1955         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
1956         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
1957         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
1958         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1959         RegisterTouchWindow, UnregisterTouchWindow): Define.
1960         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1961         RegisterTouchWindow, UnregisterTouchWindow): Define.
1962
1963 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
1964
1965         * include/winver.h (VerQueryValue[AW]): Correct definition.
1966
1967 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1968
1969         * include/shlobj.h (SHARD): Add enum.
1970         (SHARD_PATH): Define based on UNICODE.
1971
1972         Thanks to Jacek Caban for the report.
1973
1974 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1975
1976         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
1977
1978         Thanks to Bruno Martinez for the report.
1979
1980 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1981
1982         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
1983         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
1984         SHGetIconOverlayIndex): Define.
1985
1986         Thanks to Tim Kosse for the report.
1987
1988 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1989
1990         * include/wincon.h (AttachConsole): Correct guard.
1991
1992         Thanks to Alexander Shaduri for the report.
1993
1994 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
1995
1996         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
1997         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
1998
1999 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2000
2001         * include/winerror.h: Fix typos in macro names.
2002
2003 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2004
2005         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2006         definition.
2007
2008 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2009
2010         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2011
2012 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2013
2014         Honor DESTDIR for winsup/mingw and winsup/w32api.
2015         Detect and report error if installation paths are win32
2016         format, but DESTDIR is non-empty.
2017
2018         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2019         when invoking make in subdirs.
2020         * lib/Makefile.in (DESTDIR): Honor per convention.
2021         (need-DESTDIR-compatibility): New macro; define it and a
2022         corresponding rule.
2023         (fail-DESTDIR-compatibility): New dependency goal.
2024         (install-libraries, install-headers, uninstall-libraries,
2025         uninstall-headers): Require need-DESTDIR-compatibility.
2026         * lib/ddk/Makefile.in: Ditto.
2027         * lib/directx/Makefile.in: Ditto.
2028
2029 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2030
2031         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2032         _WIN32_WINNT >= 0x0500.
2033         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2034         WRITE_RESTRICTED): Define.
2035         (IsTokenRestricted): Declare for >= Win 2000.
2036
2037 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2038
2039         * include/wtsapi32.h (WTSQuerySessionInformationA,
2040         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2041         Moved to (_WIN32_WINNT >= 0x0500) guard.
2042         (thanks to Pierre Ossman)
2043
2044 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2045
2046         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2047         IS_SURROGATE_PAIR): Define.
2048
2049 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2050
2051         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2052         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2053         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2054         * include/ddk/ntifs.h: Ditto.
2055         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2056
2057 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2058
2059         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2060         from here...
2061         * lib/gdo32.dll: ...to here.
2062
2063 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2064
2065         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2066         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2067         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2068         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2069         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2070         entry points.
2071
2072 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2073
2074         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2075         WTSEnumerateSessionsA): Add function prototypes.
2076         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2077         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2078         defines dependent on UNICODE setting.
2079
2080 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2081
2082         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2083         and vice versa.
2084         * include/ddk/ntifs.h: Ditto.
2085         * include/ddk/winddk.h: Ditto.
2086         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2087         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2088         in header, but missing in lib.  Omit NT4-only entry points.
2089
2090 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2091
2092         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2093         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2094         * lib/shell32.def (SHGetImageList): Define.
2095
2096 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2097
2098         * winnt.h: Add Vista token security extensions.
2099         (SID_HASH_SIZE): Define.
2100         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2101         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2102         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2103         (SID_HASH_ENTRY): Define.
2104         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2105         (struct _TOKEN_LINKED_TOKEN): Define.
2106         (struct _TOKEN_MANDATORY_LABEL): Define.
2107         (struct _TOKEN_MANDATORY_POLICY): Define.
2108         (struct _TOKEN_ELEVATION): Define.
2109         (struct _TOKEN_ACCESS_INFORMATION): Define.
2110         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2111         information enumeration values.
2112
2113 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2114
2115         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2116         from ddk/ntifs.h.
2117
2118 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2119
2120         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2121
2122 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2123
2124         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2125
2126 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2127
2128         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2129         NtSetEaFile.
2130
2131 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2132
2133         * include/winbase.h (SCS_64BIT_BINARY): Define.
2134
2135 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2136
2137         * include/w32api.h: Increment version to 3.13.
2138         * Makefile.in: Ditto.
2139
2140 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2141
2142         * lib/glut.def: remove.
2143         * lib/glut32.def: ditto.
2144
2145 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2146
2147         * include/winbase.h (PROCESS_DEP_ENABLE,
2148         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2149         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2150         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2151
2152 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2153
2154         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2155
2156 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2157
2158         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2159
2160 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2161
2162         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2163
2164 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2165
2166         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2167         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2168         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2169         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2170         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2171         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2172         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2173         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2174         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2175         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2176         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2177         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2178         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2179         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2180         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2181         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2182         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2183         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2184         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2185         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2186         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2187         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2188         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2189         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2190         (capSendMessage): Don't undef.
2191
2192 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2193
2194         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2195         undefined.
2196
2197 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2198
2199         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2200         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2201         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2202         SUBLANG_ROMANIAN_MOLDOVA): Define.
2203
2204 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2205
2206         * include/shlwapi.h (ASSOCSTR): Update enum.
2207
2208 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2209
2210         * include/w32api.h: Increment version to 3.12.
2211         * Makefile.in: Ditto.
2212
2213 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2214
2215         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2216
2217 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2218
2219         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2220
2221 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2222
2223         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2224         Thanks to Richard Hughes for report.
2225
2226 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2227
2228         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2229         naming standard for Cygwin.
2230
2231 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2232
2233         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2234
2235 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2236
2237         * include/ddk/scsi.h: Define READ_TOC formats.
2238         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2239
2240 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2241
2242         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2243         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2244         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2245         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2246         NdisMCancelTimer): Define.
2247         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2248         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2249         eliminate warnings.
2250         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2251         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2252         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2253         Export.
2254
2255 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2256
2257         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2258         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2259
2260 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2261
2262         * include/ddk/winddk.h (KeRaiseIrql): Define.
2263         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2264
2265 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2266
2267         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2268         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2269         (InterlockedIncrement, InterlockedDecrement): fix warning.
2270         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2271         (KeNumberProcessors): Export.
2272
2273 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2274
2275         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2276         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2277         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2278         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2279         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2280
2281 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2282
2283         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2284
2285         Thanks to Tim Kosse <botg at users dot sf dot net>.
2286
2287 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2288
2289         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2290         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2291         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2292         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2293         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2294         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2295         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2296
2297 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2298
2299         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2300         WTSQuerySessionInformation, WTSFreeMemory): Define.
2301
2302 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2303
2304         * lib/gdi32.def (SetLayout): Export.
2305
2306 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2307
2308         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2309         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2310         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2311         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2312         CertSetCertificateContextProperty, CertCompareCertificateName,
2313         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2314         CryptGetDefaultProviderW and many corresponding macroes): Define.
2315         * lib/crypt32.def (Export the above 11 functions): Export.
2316         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2317         macroes): Define.
2318
2319
2320 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2321
2322         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2323         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2324
2325 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2326
2327         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2328
2329 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2330
2331         * include/lmaccess.h (struct _USER_INFO_4): Define.
2332         (struct _USER_INFO_23): Define.
2333         (struct _GROUP_INFO_3): Define.
2334
2335 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2336
2337         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2338         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2339         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2340         MIB_TCP6TABLE_OWNER_PID): Define.
2341         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2342
2343 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2344
2345         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2346         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2347         of 0x0502.
2348         Bug reported by Thomas Denk.
2349
2350 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2351
2352         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2353         InterlockedCompareExchange, InterlockedExchange,
2354         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2355         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2356         Bug reported by Erik Blake.
2357
2358 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2359
2360         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2361         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2362         Bug reported by Brian Hawley.
2363
2364 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2365
2366         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2367         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2368         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2369         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2370         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2371         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2372         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2373         (DsGetDcNameW, DsGetDcNameA): Declare.
2374         (DsGetDcName): Define.
2375         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2376
2377 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2378
2379         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2380
2381         Thanks to Tim Kosse <botg at users dot sf dot net>.
2382
2383 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2384
2385         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2386
2387         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2388
2389 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2390
2391         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2392         (FILE_SUPPORTS_TRANSACTIONS): Define.
2393
2394 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2395
2396         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2397         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2398
2399 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2400
2401         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2402         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2403         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2404         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2405         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2406         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2407         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2408         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2409         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2410         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2411         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2412         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2413         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2414         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2415         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2416         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2417         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2418         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2419         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2420         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2421         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2422         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2423         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2424         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2425         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2426         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2427         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2428         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2429         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2430         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2431         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2432         capDriverConnect, capDriverDisconnect, capDriverGetName,
2433         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2434         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2435         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2436         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2437         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2438         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2439         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2440         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2441         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2442         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2443         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2444         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2445         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2446         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2447         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2448
2449 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2450
2451         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2452         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2453         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2454         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2455         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2456         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2457         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2458         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2459         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2460         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2461         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2462         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2463         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2464         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2465         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2466         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2467         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2468         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2469         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2470         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2471         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2472         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2473         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2474         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2475         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2476         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2477         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2478         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2479         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2480         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2481         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2482         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2483         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2484         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2485         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2486         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2487         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2488         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2489         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2490         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2491         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2492         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2493         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2494         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2495         *SpUserModeInitializeFn): Define.
2496         * include/sspi.h (SECURITY_STRING): Define.
2497
2498 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2499
2500         * include/specstrings.h: Add more dummy defines.
2501
2502 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2503
2504         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2505         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2506         (SECURITY_MANDATORY_LOW_RID): Define.
2507         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2508         (SECURITY_MANDATORY_HIGH_RID): Define.
2509         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2510         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2511         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2512         (SE_GROUP_INTEGRITY): Define.
2513         (SE_GROUP_INTEGRITY_ENABLED): Define.
2514
2515 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2516
2517         * include/sddl.h (ConvertStringSidToSidA): Declare.
2518         (ConvertStringSidToSidW): Declare.
2519         (ConvertStringSidToSid): Define.
2520
2521 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2522
2523         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2524         and MPR_INTERFACE_3 structure since they are available only in Windows
2525         Server 2008
2526
2527         Thanks to crackedmind  <crackedmind at sf dot net>.
2528
2529 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2530
2531         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2532         definitions.
2533         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2534
2535 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2536
2537         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2538
2539 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2540
2541         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2542         * include/windef.h (IN, OUT, OPTIONAL): Define.
2543
2544 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2545
2546         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2547         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2548         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2549         __out_bcount_opt): Move to specstrings.h.
2550
2551 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2552
2553         * lib/bthprops.def: new file, bluetooth imports.
2554
2555 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2556
2557         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2558         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2559         __out_bcount_opt): Defined additional pseudo-modifiers.
2560
2561 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2562         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2563         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2564         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2565         dwRedialPause.
2566
2567 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2568
2569         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2570         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2571         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2572         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2573         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2574         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2575         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2576         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2577         * include/winuser.h (RegisterPowerSettingNotification,
2578         UnregisterPowerSettingNotification): Add prototypes.
2579         * lib/user32.def: Added imports for the above prototypes.
2580         * lib/Makefile.in: Added build support for power-uuid.c.
2581         * lib/power-uuid.c: New file containing power GUID definitions.
2582
2583 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2584
2585         * include/ras.h (RAS_MaxDnsSuffix): define.
2586
2587 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2588
2589         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2590         Add prototypes.
2591         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2592         Add exports.
2593
2594 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2595
2596         * include/w32api.h: Increment version to 3.11.
2597         * Makefile.in: Ditto.
2598
2599 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2600
2601         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2602         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2603
2604 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2605
2606         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2607
2608 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2609
2610         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2611         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2612
2613 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2614
2615         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2616
2617 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2618
2619         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2620         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2621         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2622         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2623         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2624         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2625         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2626         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2627         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2628         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2629         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2630         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2631         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2632         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2633         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2634         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2635         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2636         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2637         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2638         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2639         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2640         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2641         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2642         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2643         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2644         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2645         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2646         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2647         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2648         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2649         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2650         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2651         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2652         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2653         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2654         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2655         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2656         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2657         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2658         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2659         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2660         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2661         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2662         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2663         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2664         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2665         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2666         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2667         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2668         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2669         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2670         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2671         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2672         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2673         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2674         CryptEncodeObjectEx): define.
2675
2676 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2677
2678         * include/winbase.h (CheckTokenMembership): define.
2679
2680 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2681
2682         * include/rpcndr.h: Missing NdrClientCall2 entry.
2683         * lib/rpcrt4.def: Ditto.
2684
2685 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2686         * lib/scnsave.c: Multi-monitor support.
2687
2688 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2689
2690         * include/w32api.h: Increment version to 3.10.
2691         * Makefile.in: Ditto.
2692
2693 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2694
2695         * include/winbase.h (ReOpenFile): Add prototype.
2696         * lib/kernel32.def (ReOpenFile@16): Add export.
2697
2698 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2699
2700         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2701
2702 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2703
2704         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2705         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2706
2707 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2708
2709         * include/wtypes.h (LPDECIMAL): Define.
2710         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2711
2712 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2713
2714         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2715
2716 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2717
2718         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2719         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2720
2721 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2722
2723         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2724         Define.
2725
2726 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2727
2728         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2729         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2730         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2731         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2732         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2733         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2734         Sync with include/pbt.h.
2735
2736 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2737
2738         [mingw-Bugs-1751518]
2739         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2740         get_URL.
2741
2742         [mingw-Bugs-1751565]
2743         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2744
2745         [mingw-Bugs-1751595]
2746         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2747         methods.
2748
2749         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2750
2751 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2752
2753         [mingw-Bugs-1750898]
2754         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2755         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2756
2757 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2758
2759         [mingw-Bugs-1749305]
2760         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
2761
2762 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
2763
2764         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
2765
2766 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
2767
2768         * include/oaidl.h: Include windows.h and ole2.h,
2769         unless COM_NO_WINDOWS_H.
2770
2771         [mingw-Bugs-1742130]
2772         * include/oaidl.h (struct tagVARIANT): Add union members
2773         LONGLONG  * pllVal and ULONGLONG * pullVal.
2774
2775 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
2776
2777         * include/ws2tcpip.h (s6_addr32): Correct definition.
2778         Thanks to Alfred E. Heggestad <aeh at db dot org>
2779
2780 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2781
2782         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
2783
2784         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
2785         supplying the information.
2786
2787 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2788
2789         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
2790
2791 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2792
2793         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
2794         Vista.
2795
2796 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
2797
2798          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
2799         CRYPTPROTECT_LOCAL_MACHINE): Define.
2800
2801 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
2802
2803         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
2804         Define.
2805
2806 2007-03-30  Brian Dessent  <brian@dessent.net>
2807
2808         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
2809
2810 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2811
2812         * include/w32api.h: Increment version to 3.9.
2813         * Makefile.in: Ditto.
2814
2815 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
2816
2817         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
2818
2819 2007-03-23  Matthew Gregan  <kinetik@flim.org>
2820
2821         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
2822
2823 2007-03-06  Brandon Sneed  <brandon@oqo.com>
2824
2825         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
2826         Added SetupConfigureWmiFromInfSectionW
2827         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
2828
2829         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
2830
2831         * include/winuser.h: Added PBT_APMQUERYSUSPEND
2832         Added PBT_APMQUERYSTANDBY
2833         Added PBT_APMQUERYSUSPENDFAILED
2834         Added PBT_APMQUERYSTANDBYFAILED
2835         Added PBT_APMSUSPEND
2836         Added PBT_APMSTANDBY
2837         Added PBT_APMRESUMECRITICAL
2838         Added PBT_APMRESUMESUSPEND
2839         Added PBT_APMRESUMESTANDBY
2840         Added PBT_APMBATTERYLOW
2841         Added PBT_APMPOWERSTATUSCHANGE
2842         Added PBT_APMOEMEVENT
2843         Added PBT_APMRESUMEAUTOMATIC
2844
2845         * include/wtsapi32.h: New file
2846
2847         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
2848
2849 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2850
2851         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
2852         argument to constant.
2853
2854 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
2855
2856         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
2857         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
2858         Add prototypes.
2859         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
2860
2861 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
2862
2863         * lib/user32.def (InternalGetWindowText): Add stub.
2864
2865 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
2866
2867         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
2868         LANG_BOSNIAN_NEUTRAL): Define.
2869
2870 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
2871
2872         * include/winuser.h: Add guards around TITLEBARINFO and
2873         GetTitleBarInfo().
2874
2875 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
2876
2877         * include/winbase.h (struct _OVERLAPPED): Change type of
2878         Internal, InternalHigh members to ULONG_PTR.
2879         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
2880         (CreateIoCompletionPort): Likewise.
2881         (PostQueuedCompletionStatus): Likewise.
2882         (QueueUserAPC): Likewise.
2883
2884 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
2885
2886         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
2887         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
2888         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
2889         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
2890         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
2891         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
2892         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
2893         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
2894         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
2895         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
2896
2897 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
2898
2899         * Makefile.in: Add aclocal.m4 to source release.
2900
2901 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2902
2903         * include/w32api.h: Increment version to 3.8.
2904         * Makefile.in: Ditto.
2905
2906 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
2907
2908         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
2909         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
2910
2911         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
2912
2913 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
2914
2915         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
2916
2917         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
2918         inline static.
2919         (GetFiberData): Likewise.
2920         * lib/kernel32.c: Remove.
2921         * lib/Makefile.in: Remove reference to kernel32.[co].
2922
2923 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2924
2925         * include/winnt.h (SE_RELABEL_NAME): Define.
2926         (SE_INCREASE_WORKING_SET_NAME): Define.
2927         (SE_TIME_ZONE_NAME): Define.
2928         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
2929
2930 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2931
2932         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
2933         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
2934         SymbolicLinkReparseBuffer substructure.
2935
2936 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
2937
2938         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
2939
2940 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2941
2942         * lib/Makefile.in: Fix order for 'all' rule.
2943
2944 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
2945
2946         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
2947
2948 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
2949
2950         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
2951         mappings.
2952         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
2953         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
2954
2955 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2956
2957         * include/rpc.h: Add whitespace.
2958         * include/winnt.h (C_ASSERT): Define.
2959
2960 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2961
2962         [mingw-Bugs-1568067]
2963         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
2964         * include/wingdi.h: (DM_POSITION): Define.
2965
2966 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
2967
2968         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
2969         * lib/user32.def: Likewise.
2970
2971 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2972
2973         * lib/Makefile.in: fix typo.
2974         * lib/ddk/Makefile.in: fix typo.
2975         * lib/directx/Makefile.in: fix typo.
2976
2977         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
2978         for pointing it out.
2979
2980 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2981
2982         * Makefile.in: Remove files from lib directory with distclean target
2983
2984 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2985
2986         * include/winuser.h (CS_DROPSHADOW): Define.
2987
2988 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
2989
2990         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
2991         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
2992         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
2993         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
2994
2995         Increase each constant by 1.
2996
2997 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2998
2999         [mingw-Bugs-1553275]
3000         * include/wingdi.h (SetLayout): Add prototype.
3001         (GetLayout): Likewise.
3002
3003 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3004
3005         [mingw-Bugs-1550139]
3006         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3007         Tanks to:  Samit Basu <samitbasu at sf dot net>
3008         (GetRecordInfoFromGuids): Add prototype.
3009
3010 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3011
3012         * include/winbase.h: Add comment about 'missing' SEM flag.
3013
3014 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3015
3016         * configure.in: Substitute with_cross_host in depending files.
3017         * configure: Regenerate.
3018         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3019         Set installation directories accordingly.
3020         * lib/ddk/Makefile.in: Ditto.
3021         * lib/directx/Makefile.in: Ditto.
3022
3023 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3024
3025         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3026         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3027         Bug reported by: <macleone at users dot sf dot net>
3028
3029 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3030
3031         Update some more IMAGE relocation type indicators
3032         to PECOFF v8 (May, 2006) specs.
3033
3034         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3035         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3036         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3037         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3038         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3039         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3040         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3041         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3042         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3043         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3044         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3045         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3046         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3047         IMAGE_REL_SHM_NOMODE): Add defines.
3048
3049         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3050         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3051         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3052         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3053         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3054         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3055         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3056         IMAGE_REL_M32R_TOKEN): Add defines.
3057
3058         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3059
3060 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3061
3062         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3063         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3064         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3065         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3066         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3067         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3068         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3069         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3070         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3071         Add defines.
3072
3073         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3074         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3075         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3076         Add defines.
3077
3078         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3079
3080         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3081         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3082         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3083         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3084         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3085         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3086
3087         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3088
3089         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3090         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3091         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3092         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3093         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3094         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3095         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3096         Add defines.
3097
3098         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3099         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3100         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3101         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3102         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3103         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3104         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3105         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3106         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3107         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3108         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3109         IMAGE_REL_IA64_ADDEND): Add defines.
3110
3111         (IMAGE_SCN_GPREL): Add define.
3112
3113 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3114
3115         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3116         * include/basetyps.h:  Likewise.
3117         (_COM_interface): New define.
3118         (interface): Define to _COM_interface, conditional on !__OBJC__.
3119         Replace 'interface' with '_COM_interface', throughout.
3120         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3121         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3122         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3123         * include/mshtml.h: Likewise.
3124         * include/oaidl.h: Likewise.
3125         * include/objfwd.h: Likewise.
3126         * include/objidl.h: Likewise.
3127         * include/ocidl.h: Likwise.
3128         * include/olectl.h: Likewise.
3129         * include/oleidl.h: Likewise.
3130         * include/shlobj.h: Likewise.
3131         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3132         * include/vfw.h: Likewise.
3133         * include/windows.h. Likewise. Add comment.
3134         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3135         throughout.
3136
3137         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3138         Add test for conflict with '@interface'
3139
3140 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3141
3142         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3143         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3144         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3145         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3146         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3147         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3148         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3149         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3150         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3151         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3152         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3153         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3154         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3155         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3156         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3157         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3158         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3159         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3160         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3161         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3162         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3163         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3164         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3165         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3166         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3167         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3168         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3169         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3170         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3171         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3172         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3173         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3174         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3175         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3176         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3177         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3178         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3179         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3180         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3181         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3182         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3183         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3184         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3185         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3186         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3187         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3188         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3189         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3190         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3191         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3192         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3193         CertDeleteCertificateFromStore): Define.
3194         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3195         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3196         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3197         CertAddCertificateContextToStore, CertCompareCertificate,
3198         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3199         Define.
3200
3201 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3202
3203         * lib/uuid.c: Remove.
3204
3205 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3206
3207         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3208         declarations. They were extracted from the registry with a script.
3209         * lib/devguid.c: Add new file with the implementation of the
3210         missing GUIDs.
3211         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3212
3213 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3214
3215         * include/winuser.h (WM_INPUT): Add missing Raw Input
3216         notification define.
3217         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3218         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3219
3220 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3221
3222         [mingw-Bugs-1525021]
3223         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3224         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3225         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3226         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3227         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3228         (IP_ADAPTER_ADDRESSES): Likewise.
3229
3230 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3231
3232         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3233         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3234         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3235         extras-uuid.c.
3236         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3237         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3238         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3239         * lib/hlguids-uuid.c: State source of CLSIDs.
3240
3241 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3242
3243         * lib/Makefile.in: Added extras-uuid as an object and source.
3244         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3245         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3246         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3247         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3248         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3249         * lib/extras-uuid.c: New file.
3250         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3251         net).
3252
3253 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3254
3255         [mingw-Bugs-1424461]
3256         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3257         throughout.
3258         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3259         _NO_W32_PSEUDO_MODIFIERS.
3260         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3261         throughout.
3262         *include/rpcnsip.h: Likewise.
3263         *include/windef.h: Don't define IN, OUT or OPTIONAL
3264         if _NO_W32_PSEUDO_MODIFIERS.
3265         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3266         throughout.
3267         *include/ddk/cfgmgr32.h: Likewise.
3268         *include/ddk/ddkmapi.h: Likewise.
3269         *include/ddk/hidclass.h: Likewise.
3270         *include/ddk/hidpi.h: Likewise.
3271         *include/ddk/kbdmou.h: Likewise.
3272         *include/ddk/mcd.h: Likewise.
3273         *include/ddk/miniport.h: Likewise.
3274         *include/ddk/minitape.h: Likewise.
3275         *include/ddk/ndis.h: Likewise.
3276         *include/ddk/ndistapi.h: Likewise.
3277         *include/ddk/ndiswan.h: Likewise.
3278         *include/ddk/ntapi.h: Likewise.
3279         *include/ddk/ntdd8042.h: Likewise.
3280         *include/ddk/ntddpcm.h: Likewise.
3281         *include/ddk/ntifs.h: Likewise.
3282         *include/ddk/ntpoapi.h: Likewise.
3283         *include/ddk/parallel.h: Likewise.
3284         *include/ddk/pfhook.h: Likewise.
3285         *include/ddk/scsiwmi.h: Likewise.
3286         *include/ddk/smbus.h: Likewise.
3287         *include/ddk/srb.h: Likewise.
3288         *include/ddk/storport.h: Likewise.
3289         *include/ddk/tdikrnl.h: Likewise.
3290         *include/ddk/upssvc.h: Likewise.
3291         *include/ddk/usbcamdi.h: Likewise.
3292         *include/ddk/usbscan.h: Likewise.
3293         *include/ddk/video.h: Likewise.
3294         *include/ddk/videoagp.h: Likewise.
3295         *include/ddk/win2k.h: Likewise.
3296         *include/ddk/winddi.h: Likewise.
3297         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3298         if _NO_W32_PSEUDO_MODIFIERS.
3299         Comment out IN, OUT and OPTIONAL, throughout.
3300         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3301         throughout.
3302         *include/ddk/ws2san.h: Likewise.
3303
3304 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3305
3306         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3307
3308 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3309
3310         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3311         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3312         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3313         * lib/hlguids-uuid.c: New file.
3314         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3315         net).
3316
3317 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3318
3319         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3320         objects.
3321         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3322         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3323         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3324         IID_IHlinkTarget): Remove.  Moved to new files.
3325         * lib/urlmon-uuid.c: New file.
3326         * lib/hlink-uuid.c: New file.
3327
3328 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3329
3330         * lib/Makefile.in: Added ativscp-uuid as source and object.
3331         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3332         IID_IActiveScriptParse, IID_IActiveScriptSite,
3333         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3334         * lib/ativscp-uuid.c: New file.
3335
3336 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3337
3338         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3339         Remove.  Moved to objidl-uuid.c
3340         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3341         IID_IServerSecurity): Defined.
3342
3343 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3344
3345         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3346         objects.
3347         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3348         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3349         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3350         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3351         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3352         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3353         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3354         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3355         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3356         files.
3357         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3358         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3359         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3360         * lib/cguid-uuid.c: New file.
3361         * lib/olectlid-uuid.c: New file.
3362
3363 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3364
3365         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3366         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3367         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3368         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3369         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3370         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3371         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3372         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3373         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3374         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3375         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3376         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3377         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3378         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3379         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3380         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3381         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3382         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3383         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3384         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3385         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3386         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3387         * lib/comcat-uuid.c: New file.
3388         * lib/docobj-uuid.c: New File.
3389         * lib/exdisp-uuid.c: New file.
3390         * lib/mlang-uuid.c: New file.
3391         * lib/oaidl-uuid.c: New file.
3392         * lib/objidl-uuid.c: New file.
3393         * lib/objsafe-uuid.c: New file.
3394
3395 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3396
3397         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3398         objects.
3399         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3400         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3401         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3402         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3403         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3404         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3405         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3406         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3407         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3408         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3409         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3410         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3411         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3412         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3413         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3414         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3415         * lib/oleidl-uuid.c: New file.
3416         * lib/oleacc-uuid.c: New file.
3417         * lib/ocidl-uuid.c: New file.
3418
3419 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3420
3421         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3422         objects.
3423         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3424         Remove.  Moved to unknwn-uuid and servprov-uuid.
3425         * lib/unknwn-uuid.c: New file.
3426         * lib/servprov-uuid.c: New file.
3427
3428 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3429
3430         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3431         enum.
3432
3433 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3434
3435         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3436
3437 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3438
3439         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3440         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3441         wingdi.h defines.
3442
3443 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3444
3445         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3446         duplicate defines.
3447
3448         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3449         removal.
3450         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3451
3452 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3453
3454         * configure.in: Update to newer autoconf.
3455         (thanks to Steve Ellcey)
3456         * configure: Regenerate.
3457         * aclocal.m4: New file.
3458
3459 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3460
3461         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3462
3463 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3464
3465         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3466         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3467         as macros.
3468         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3469
3470 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3471
3472         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3473         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3474         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3475         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3476         (MprAdminMIBSetTrapInfo): Declare functions.
3477         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3478         (MIB_SERVER_HANDLE): New typedef.
3479         (MprConfigTransportSetInfo): Declare function.
3480         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3481         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3482
3483 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3484
3485         * lib/rtutils.def: New file. Generated on Windows XP.
3486         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3487         * include/rtutils.h: New file.
3488         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3489         Commented out, they're missing from rtutils.def.
3490
3491 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3492
3493         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3494         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3495         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3496         (MprInfoRemoveAll): Declare functions.
3497
3498 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3499
3500         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3501         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3502         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3503         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3504         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3505         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3506         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3507         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3508         (MprConfigServerConnect,MprConfigServerDisconnect)
3509         (MprConfigServerGetInfo,MprConfigServerInstall)
3510         (MprConfigServerRestore,MprConfigTransportCreate)
3511         (MprConfigTransportDelete,MprConfigTransportEnum)
3512         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3513         (MprConfigTransportSetInfo): Declare functions.
3514
3515 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3516
3517         * include/mprapi.h (MprAdminBufferFree)
3518         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3519         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3520         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3521         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3522         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3523         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3524         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3525         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3526         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3527         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3528         (MprAdminInterfaceTransportSetInfo)
3529         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3530         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3531         (MprAdminServerConnect,MprAdminServerDisconnect)
3532         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3533         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3534         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3535
3536 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3537
3538         * include/ipxtfflt.h: New file.
3539
3540 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3541
3542         * include/mprapi.h: Fix header guard. Cleanup.
3543         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3544         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3545         (MprAdminConnectionHangupNotification)
3546         (MprAdminConnectionHangupNotification2)
3547         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3548         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3549         (MprAdminReleaseIpAddress): Declare functions.
3550         * lib/mprapi.def: Regenerate on Windows XP.
3551
3552 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3553
3554         * include/ipifcons.h: Cleanup.
3555         * include/ipxconst.h: Fix header guard.
3556         * include/ipxrtdef.h: include <ipxconst.h>.
3557
3558 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3559
3560         * include/ipxrtdef.h: Cleanup.
3561         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3562         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3563         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3564         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3565         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3566         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3567         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3568         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3569         * include/routprot.h: Cleanup.
3570         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3571         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3572         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3573         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3574         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3575         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3576         * include/fltdefs.h: New file.
3577         * include/ipinfoid.h: New file.
3578
3579 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3580
3581         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3582         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3583         (IAMCertifiedOutputProtection): Add interfaces.
3584         * include/adsprop.h: New file.
3585         * include/cmnquery.h: New file.
3586         * include/dsadmin.h: New file.
3587         * include/dsclient.h: New file.
3588         * include/dsgetdc.h: New file.
3589         * include/dsquery.h: New file.
3590         * include/dsrole.h: New file.
3591         * include/ntdsapi.h: New file.
3592         * include/ntdsbcli.h: New file.
3593         * include/objsel.h: New file.
3594
3595 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3596
3597         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3598         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3599         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3600         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3601         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3602         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3603         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3604         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3605
3606 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3607
3608         * include/qedit.h: New file.
3609         * include/errors.h: Cleanup.
3610
3611 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3612
3613         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3614         avoid dependency on <string.h>.
3615         There's no Win32 equivalent for memcmp:
3616         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3617
3618 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3619
3620         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3621         instead of memset to avoid dependency on <string.h>.
3622         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3623         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3624         (AM_WST_STYLE): Add enums.
3625         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3626         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3627         structures.
3628         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3629         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3630         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3631         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3632         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3633         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3634         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3635         (VFW_E_DVD_NO_RESUME_INFORMATION)
3636         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3637         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3638         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3639         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3640         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3641         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3642         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3643         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3644         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3645         * include/strmif.h: ... to here. New file.
3646         * include/aviriff.h: New file.
3647         * include/bdatypes.h: New file.
3648         * include/control.h: New file.
3649         * include/dvdmedia.h: New file.
3650         * include/il21dec.h: New file.
3651         * include/ks.h: New file.
3652         * include/ksmedia.h: New file.
3653         * include/mmreg.h: New file.
3654         * include/mpegtype.h: New file.
3655         * include/vidcap.h: New file.
3656         * include/vmr9.h: New file.
3657         * include/vptype.h: New file.
3658         * include/xprtdefs.h: New file.
3659
3660 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3661
3662         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3663         Documented as defined on Windows 2000 or later.
3664         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3665         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3666         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3667         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3668         but values unknown, Windows Vista or later.
3669         (CAL_UMALQURA): Cleanup.
3670         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3671         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3672         (CAL_SSHORTESTDAYNAME7): Cleanup.
3673         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3674         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3675
3676 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3677
3678         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3679         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3680         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3681         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3682         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3683         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3684         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3685         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3686         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3687         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3688         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3689         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3690         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3691         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3692         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3693         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3694         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3695         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3696         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3697         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3698         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3699         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3700         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3701         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3702         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3703         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3704         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3705         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3706         (DMDFO_CENTER): Define.
3707         (GetDCBrushColor,GetDCPenColor): Declare.
3708         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3709
3710 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3711
3712         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3713         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3714         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3715         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3716         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3717         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3718         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3719         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3720         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3721         (LANG_DARI,LANG_MALAGASY)
3722         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3723         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3724         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3725         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3726         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3727         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3728         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3729         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3730         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3731         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3732         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3733         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3734         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3735         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3736         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3737         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3738         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3739         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3740         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3741         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3742         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3743         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3744         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3745         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3746         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3747         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3748         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3749         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3750         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3751         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3752         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3753         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3754         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3755         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3756         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3757         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3758         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3759         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
3760         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
3761         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
3762         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
3763         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
3764         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
3765         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
3766         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
3767         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
3768         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3769         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
3770         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
3771         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
3772         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
3773         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
3774         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
3775         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
3776         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
3777         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
3778         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
3779         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
3780         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
3781         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
3782         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
3783         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
3784         (SUBLANG_MARATHI_INDIA): Defined twice by error.
3785
3786 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3787
3788         * lib/directx/Makefile.in: Remove reference to libquartz.a since
3789         it was moved.
3790
3791 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
3792
3793         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
3794         SPI_SETSCREENSAVERUNNING.
3795         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
3796
3797 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3798
3799         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
3800         It had been removed because it's no documented, but Cygwin needs it.
3801
3802 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3803
3804         * include/amvideo.h (IFullScreenVideo): Define.
3805         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
3806         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
3807
3808 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3809
3810         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
3811         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
3812         as available on Windows 98 and better.
3813         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3814         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3815         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
3816
3817 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3818
3819         * include/amvideo.h: New file.
3820         * include/dshow.h: Include <amvideo.h>.
3821
3822 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3823
3824         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
3825         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
3826         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
3827         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
3828         (HWND_BROADCAST): Cleanup.
3829         (HWND_MESSAGE): Windows 2000 only.
3830         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
3831         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
3832         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
3833         (SIF_ALL): Cleanup.
3834         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
3835         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
3836         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
3837         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
3838         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
3839         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
3840         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
3841         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
3842         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
3843         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
3844         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
3845         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3846         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3847         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3848         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3849         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3850         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3851         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
3852         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
3853         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
3854         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
3855         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
3856         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
3857         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
3858         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
3859         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
3860         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
3861         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
3862         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
3863         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
3864         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
3865         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
3866         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
3867         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
3868         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
3869         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
3870         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
3871         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
3872         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
3873         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
3874         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
3875         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
3876         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
3877         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
3878         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
3879         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
3880         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
3881         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
3882         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
3883         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
3884         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
3885         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
3886         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
3887         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
3888         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
3889         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
3890         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
3891         (SPI_SCREENSAVERRUNNING): Removed.
3892         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
3893         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
3894         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
3895         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
3896
3897 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3898
3899         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
3900         (MprAdminGetPDCServer): Add prototype.
3901         (MprAdminSendUserMessage): Add prototype.
3902         (MprAdminUserGetInfo): Add prototype.
3903         (MprAdminUserSetInfo): Add prototype.
3904         * lib/mprapi.def: Add stubs for above functions.
3905
3906 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3907
3908         * lib/directx/quartz.def: Move from here...
3909         * lib/quartz.def: ... to here.
3910
3911 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3912
3913         * include/amaudio.h: New file.
3914         * include/dshow.h: Include <amaudio.h>.
3915
3916 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3917
3918         * include/errors.h: New file.
3919         * include/dshow.h: Include <errors.h>.
3920
3921 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3922
3923         * include/dshow.h: New file.
3924         * include/evcode.h: New file.
3925         * include/audevcod.h: New file.
3926         * include/dvdevcod.h: New file.
3927
3928 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3929
3930         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
3931         (MprAdminConnectionClearStats): Add prototype.
3932         (MprAdminConnectionEnum): Add  prototype.
3933         (MprAdminConnectionGetInfo): Add prototype.
3934         (MprAdminConnectionRemoveQuarantine): Add prototype.
3935         (MprAdminPortClearStats): Add prototype.
3936         (MprAdminPortDisconnect): Add prototype.
3937         (MprAdminPortEnum): Add prototype.
3938         (MprAdminPortGetInfo): Add prototype.
3939         (MprAdminPortReset): Add prototype.
3940         * lib/mprapi.def: New file.
3941
3942 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3943
3944         *  include/mprapi.h: #include <lmcons.h>
3945         (MAX_DEVICETYPE_NAME): Add define.
3946         (MAX_PHONE_NUMBER_LEN): Add define.
3947         (ATADDRESSLEN): Add define.
3948         (IPADDRESSLEN): Add define.
3949         (IPXADDRESSLEN): Add define.
3950         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
3951         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
3952         (RAS_FLAGS_PPP_CONNECTION): Add define.
3953         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
3954         (RAS_FLAGS_RAS_CONNECTION): Add define.
3955         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
3956         (RASCCPCA_STAC): Add define.
3957         (RASCCPCA_MPPC): Add define.
3958         (PPP_CCP_COMPRESSION): Add define.
3959         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
3960         (PPP_CCP_ENCRYPTION40BIT): Add define.
3961         (PPP_CCP_ENCRYPTION128BIT): Add define.
3962         (PPP_CCP_ENCRYPTION56BIT): Add define.
3963         (PPP_CCP_HISTORYLESS): Add define.
3964         (RASPRIV_NoCallback): Add define.
3965         (RASPRIV_AdminSetCallback): Add define.
3966         (RASPRIV_CallerSetCallback): Add define.
3967         (RASPRIV_DialinPrivilege): Add define.
3968         (RASPRIV_CallbackType): Add define.
3969         (RASPRIV2_DialinPolicy): Add define.
3970         (PPP_LCP_PAP): Add define.
3971         (PPP_LCP_SPAP): Add define.
3972         (PPP_LCP_CHAP): Add define.
3973         (PPP_LCP_EAP): Add define.
3974         (PPP_LCP_CHAP_MD5): Add define.
3975         (PPP_LCP_CHAP_MS): Add define.
3976         (PPP_LCP_CHAP_MSV2): Add define.
3977         (PPP_LCP_MULTILINK_FRAMING): Add define.
3978         (enum _RAS_HARDWARE_CONDITION): Add.
3979         (enum _RAS_PORT_CONDITION): Add.
3980         (struct _PPP_ATCP_INFO): Add.
3981         (struct _PPP_ATCP_INFO): Add.
3982         (struct _PPP_IPCP_INFO): Add.
3983         (struct _PPP_IPCP_INFO2): Add.
3984         (struct _PPP_IPXCP_INFO): Add.
3985         (struct _PPP_LCP_INFO): Add.
3986         (struct _PPP_NBFCP_INFO): Add.
3987         (struct _PPP_INFO): Add.
3988         (struct _PPP_INFO_2): Add.
3989         (struct _RAS_CONNECTION_0): Add.
3990         (struct RAS_CONNECTION_1): Add.
3991         (struct _RAS_CONNECTION_2): Add.
3992         (struct RAS_PORT_0): Add.
3993         (struct _RAS_PORT_1): Add.
3994         (struct _RAS_USER_0): Add.
3995         (struct _RAS_USER_1): Add.
3996
3997 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3998
3999         * include/mprapi.h: New file.
4000         * include/routprot.h: New file.
4001         * include/ipxrtdef.h: New file.
4002         * include/ipxconst.h: New file.
4003         * include/stm.h: New file.
4004
4005 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4006
4007         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4008         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4009
4010 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4011
4012         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4013         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4014         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4015         versions.
4016         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4017
4018 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4019
4020         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4021         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4022
4023 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4024
4025         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4026
4027 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4028
4029         * include/basetyps.h (REFFMTID): Define properly.
4030
4031 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4032
4033         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4034         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4035
4036 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4037
4038         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4039         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4040         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4041         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4042         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4043         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4044         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4045         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4046         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4047         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4048         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4049         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4050         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4051         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4052         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4053         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4054         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4055         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4056         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4057         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4058         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4059         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4060         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4061         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4062         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4063         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4064         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4065         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4066         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4067         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4068         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4069         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4070         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4071         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4072         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4073         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4074         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4075         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4076         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4077         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4078         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4079         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4080         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4081         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4082         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4083         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4084         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4085         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4086         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4087         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4088         (IF_OPER_STATUS_OPERATIONAL): Define.
4089         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4090         Add function declaration.
4091         * include/mgm.h: New file.
4092         * lib/rtm.def: New file.
4093         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4094
4095 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4096
4097         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4098         This function cannot be made thread-safe, the API would have to be
4099         changed for that, just like strerror() -> strerror_r() and similar
4100         ISO C or POSIX functions...
4101
4102 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4103
4104         * include/edevdefs.h: New file.
4105
4106 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4107
4108         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4109         Use as guard for the WAVEFORMATEX structure instead of
4110         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4111         _WAVEFORMATEX_ for compatibility.
4112         Thanks to:    Andrew Jones <guln at sf dot net>
4113
4114 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4115
4116         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4117         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4118         Thanks to:    David Golub <david_golub at sf dot net>
4119
4120 2006-04-18  Eric House  <ehouse@eehouse.org>
4121
4122         PocketPC support.
4123         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4124         functions for using aygshell on PocketPC:
4125         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4126         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4127
4128         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4129         command bar API on PocketPC:
4130         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4131         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4132         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4133         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4134         CommandBar_InsertButton, CommandBar_Destroy.
4135
4136         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4137         fields not present on PocketPC.
4138         (GetCurrentThreadId): Conditionally declare as extern function
4139         without dllimport attribute on PocketPC.
4140         (ResetEvent): Likwise.
4141         (SetEvent): Likewise.
4142
4143         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4144         Conditionally declare as extern function without dllimport
4145          attribute on PocketPC.
4146         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4147         declare as extern function without dllimport attribute on PocketPC.
4148
4149 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4150
4151         * lib/test.c: Include icm.h.
4152
4153 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4154
4155         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4156         (CreateColorSpace): Add UNICODE mappings.
4157         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4158         * include/icm.h: New file.
4159         * lib/mscms.def: New file.
4160         * lib/icmui.def: New file.
4161
4162 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4163
4164         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4165         (IMAGE_FILE_MACHINE_AMD64): New define.
4166         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4167         New defines.
4168         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4169         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4170         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4171         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4172         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4173         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4174         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4175         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4176         New defines.
4177         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4178         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4179         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4180         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4181         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4182         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4183         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4184         definitions and typedefs.
4185         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4186         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4187         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4188         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4189         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4190         New structure definition and typedefs.
4191         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4192         Likewise.
4193         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4194
4195 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4196
4197         * lib/test.c: Fix typo in #inlcude.
4198         * include/aclui.h: INTERFACE should not remain
4199         defined at the end of the header.
4200         * include/servprov.h: Ditto.
4201
4202 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4203
4204         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4205
4206 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4207
4208         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4209
4210 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4211
4212         * include/wsahelp.h (system_header): Add pragma.
4213         * include/ws2spi.h (system_header): Add pragma.
4214         * include/rasdlg.h (system_header): Add pragma.
4215         * include/rasdlg.h (_RASDLG_H): Define.
4216         Define instead of _RASDLG_H_, this is the w32api standard.
4217         * include/mlang.h (_MLANG_H): Define.
4218         Define instead of _MLANG_H_, this is the w32api standard.
4219         * include/setupapi.h (_SETUPAPI_H): Define.
4220         Define instead of _SETUPAPI_H_, this is the w32api standard.
4221
4222 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4223
4224         * include/rpcndr.h (boolean): Add typedef.
4225         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4226         * include/rpcndr.h (_RPCNDR_H): Define.
4227         Define in addition to __RPCNDR_H__, this is the w32api standard.
4228
4229 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4230
4231         * include/w32api.h: Increment version to 3.7.
4232         * Makefile.in: Ditto.
4233
4234 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4235
4236         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4237         GET_MODULE_HANDLE_EX_FLAG_PIN,
4238         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4239         Thanks to:    Brandon Sneed <brandon at redf dot net>
4240
4241 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4242
4243         * include/secext.h: Enclose function declarations in extern "C"
4244         if __cplusplus.
4245
4246 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4247
4248         * include/comcat.h: INTERFACE should not remain defined
4249         at the end of the header.
4250         * include/docobj.h: Ditto.
4251         * include/exdisp.h: Ditto.
4252         * include/intshcut.h: Ditto.
4253         * include/mlang.h: Ditto.
4254         * include/mshtml.h: Ditto.
4255         * include/oaidl.h: Ditto.
4256         * include/objidl.h: Ditto.
4257         * include/objsafe.h: Ditto.
4258         * include/ocidl.h: Ditto.
4259         * include/oleacc.h: Ditto.
4260         * include/oledlg.h: Ditto.
4261         * include/oleidl.h: Ditto.
4262         * include/richole.h: Ditto.
4263         * include/shldisp.h: Ditto.
4264         * include/shlobj.h: Ditto.
4265         * include/unknwn.h: Ditto.
4266         * include/vfw.h: Ditto.
4267         Thanks to:    Brandon Sneed <brandon at redf dot net>
4268
4269 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4270
4271         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4272         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4273         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4274
4275 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4276
4277         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4278         here also.
4279
4280 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4281
4282         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4283         We should probably remove PROV_MS_MAIL but I'm keeping it for
4284         now for compatibility reasons.
4285         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4286
4287 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4288
4289         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4290         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4291         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4292
4293 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4294
4295         * include/wingdi.h [WINVER >= 0x0410]
4296         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4297         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4298
4299 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4300
4301         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4302         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4303         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4304         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4305         (L_MAX_URL_LENGTH): Define.
4306         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4307         Thanks to:    Brandon Sneed <brandon at redf dot net>
4308
4309 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4310
4311         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4312
4313 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4314
4315         * include/w32api.h (_W32API_H): Define.
4316         Define in addition to _W32API_H_, this is the w32api standard.
4317
4318 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4319
4320         * include/w32api.h (WindowsVista): Define.
4321
4322 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4323
4324         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4325         on SOCKET_ADDRESS only if winsock2.h has already been included.
4326
4327 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4328
4329         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4330
4331 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4332
4333         * include/iphlpapi.h (GAA_FLAG_*): Define.
4334         (GetAdaptersAddresses): Add function declaration.
4335         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4336         Thanks to:    ross <rossboulet at users dot sf dot net>
4337
4338 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4339
4340         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4341         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4342         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4343         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4344         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4345         SCOPE_LEVEL): Add enums.
4346         (IP_ADAPTER_*): Define.
4347
4348 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4349
4350         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4351         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4352
4353 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4354
4355         * include/objidl.h (PIDSI_*): Define.
4356         (PRSPEC_*): Define.
4357         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4358
4359 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4360
4361         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4362         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4363         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4364         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4365         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4366
4367 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4368
4369         * include/mq.h: New file.
4370         * lib/mqrt.def (MQ*): Define a few missing functions.
4371
4372 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4373
4374         * lib/mqrt.def: New file.
4375         Needs the mq.h file to work properly, working on it.
4376         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4377
4378 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4379
4380         * include/winerror.h (STG_E_*):  Define.
4381         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4382         * include/winerror.h (STG_S_*): Define.
4383         (CO_S_MACHINENAMENOTFOUND): Define.
4384         (RPC_E_*): Define.
4385         (NTE_*): Define.
4386
4387 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4388
4389         * include/commctrl.h (ListView_*):  Define and correct.
4390         (LVM_*): Define.
4391
4392 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4393
4394         * include/winuser.h (WM_IME_*): Define (DWORD type).
4395         (EM_*IMESTATUS): Define.
4396         (WM_*): Define.
4397         (XBUTTON*): Define.
4398         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4399
4400 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4401
4402         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4403         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4404
4405 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4406
4407         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4408         version conditional.
4409
4410 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4411
4412         * include/winspool.h (JOB_INFO_3): Add structure.
4413         (PROVIDOR_INFO_*{AW}): Add structure.
4414         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4415         (PRINTER_ENUM_VALUES{AW}): Add structure.
4416         (PRINTPROCESSOR_CAPS): Add structure.
4417
4418 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4419
4420         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4421         (PRINTER_INFO_7A): Correct definition.
4422
4423 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4424
4425         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4426         (DRIVER_INFO_*{AW}): Add structure.
4427         (PRINTER_INFO_*{AW}): Add structure.
4428         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4429
4430 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4431
4432         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4433         (DRIVER_*MODE): Define (DWORD type).
4434         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4435
4436 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4437
4438         * include/wincon.h (GetConsoleProcessList): Declare.
4439
4440 2006-03-27  Hansres Engel  <engel@node.ch>
4441
4442         * include/mlang.h: New file.
4443
4444 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4445
4446         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4447
4448 2006-03-26  Hansres Engel  <engel@node.ch>
4449
4450          Add Uniscribe API for typography and for complex scripts.
4451         * include/usp10.h: New file.
4452         * lib/usp10.def: New file.
4453
4454         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4455
4456         * include/imm.h (IMECHARPOSITION): Add structure.
4457         (RECONVERTSTRING): Likwise.
4458
4459         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4460
4461         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4462         (IMLangFontLink2): Likewise.
4463         (IMultiLanguage): Likewise.
4464
4465 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4466
4467         * include/wincon.h  (ENABLE_*): Add more defines.
4468
4469 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4470
4471         * include/winnt.h (INHERITED_ACE): Define.
4472         (VALID_INHERIT_FLAGS): Correct definition.
4473
4474 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4475
4476          * lib/wtsapi32.def: New file.
4477
4478 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4479
4480         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4481         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4482
4483 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4484
4485         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4486         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4487         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4488         (DSPRINT_*): Define (DWORD type).
4489         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4490
4491 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4492
4493         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4494         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4495
4496 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4497
4498         * include/shellapi.h [_WIN32_IE >= 0x0600]
4499         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4500         Windows XP SP1 and Windows XP respectively.
4501
4502 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4503
4504         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4505         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4506         * include/shellapi.h [_WIN32_IE >= 0x0500]
4507         (NIS_*): Introduced in Version 5.0.
4508
4509 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4510
4511         * include/wingdi.h (CS_*): Correct WINVER guard on
4512         Image Color Matching colour definitions.
4513
4514 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4515
4516         * include/shlobj.h (SFGAO_ISSLOW): Define.
4517         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4518         attribute constants.
4519
4520 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4521
4522         * include/wingdi.h [WINVER >= 0x0500]
4523         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4524         Thanks to: David A. Capello <dacap at users dot sf dot net>
4525
4526 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4527
4528         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4529         (INTERNET_STATE_*): Define flags.
4530         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4531
4532 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4533
4534         * include/sddl.h: New file.
4535
4536 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4537
4538         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4539         last change.
4540         Remove file level #pragma pack(push,4)/#pragma pop.
4541
4542 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4543
4544         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4545         value to force correct alignment.
4546
4547 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4548
4549         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4550         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4551         (PNM_CACHEHINT): Add backward compatibilty define.
4552         (LPNM_CACHEHINT): Likewise.
4553
4554 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4555
4556         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4557
4558 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4559
4560         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4561         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4562         * lib/shell32.def (PathResolve): Define.
4563
4564 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4565
4566         * include/shlobj.h (PathResolve): Fix typo.
4567
4568 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4569
4570         * include/shlobj.h (PathResolve): Define.
4571         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4572         PRF_DONTFINDLNK): Ditto.
4573         * lib/shell32.def (PathResolve): Define.
4574
4575 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4576
4577         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4578
4579 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4580
4581         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4582         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4583         (NotifyRouteChange@8): Define.
4584
4585 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4586
4587         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4588         prototypes.
4589
4590 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4591
4592         * include/winnt.h (FORCEINLINE): Define.
4593
4594 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4595
4596         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4597
4598 2006-01-26  Filip Navara  <xnavara@volny.cz>
4599
4600         * include/winnt.h (DECLSPEC_ALIGN): Define.
4601
4602 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4603
4604         * include/commctrl.h: Correct spelling of 'compatibility' in
4605         comments.
4606         * include/setupapi.h: Likewise.
4607         * include/ws2tcpip.h: Likewise.
4608
4609 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4610
4611         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4612
4613 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4614
4615         WATCOM compatibility changes.
4616         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4617         rather than __attribute__.
4618         (DECL_EXPORT): Likewise.
4619         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4620         (DDKFASTAPI): Likewise.
4621         (DDKCDECLAPI): Likwise.
4622         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4623
4624 2006-01-23  Brandon Sneed  <brandon@redf.net>
4625
4626         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4627         to exports.
4628
4629 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4630
4631         * include/w32api.h: Increment version to 3.6.
4632         * Makefile.in: Ditto.
4633
4634 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4635
4636         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4637         advapi32.dll functions.
4638
4639 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4640
4641         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4642         names for padding size constants.
4643
4644 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4645
4646         * include/aclapi.h (WINADVAPI): Add to prototypes.
4647         * include/winreg.h (WINADVAPI): Likewise.
4648         * include/winsvc.h (WINADVAPI): Likewise.
4649
4650 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4651
4652         * include/winbase.h (WINADVAPI): Define.
4653
4654 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4655
4656         * include/winuser.h (CreateWindowStation): Correctly identify first
4657         argument as constant.
4658         (CreateWindowStation@): Ditto.
4659
4660 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4661
4662         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4663         (TMT_*, BT_*): Add constants.
4664
4665 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4666
4667         * include/winsock2.h: Don't define struct sockaddr_storage when
4668         building Cygwin.
4669
4670 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4671
4672         * lib/ws2_32.c: New file, defining IPv6 constants.
4673         * lib/Makefile.in (SOURCES): Add ws2_32.c
4674         (EXTRA_OBJS): Add ws2_32.o.
4675
4676 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4677
4678         * lib/user32.def (PrivateExtractIconsA@32,
4679         PrivateExtractIconsW@32): Define.
4680         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4681
4682 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4683
4684         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4685
4686 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4687
4688         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4689
4690 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4691             Danny Smith <dannysmith@users.sourceforge.net>
4692
4693         * lib/msxml-uuid.c: New file to generate UUIDs for
4694         MSXML interfaces.
4695         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4696
4697 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4698
4699         * include/winbase.h (GetDevicePowerState): Add prototype.
4700         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4701
4702 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4703
4704         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4705         Define as macro if !_WIN64.
4706         (SetClassLongPtr{AW}): Likewise.
4707         (GCLP_*): Add GetClassLongPtr defines.
4708         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4709         (SetClassLongPtr{AW}): Likewise.
4710
4711 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4712
4713         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4714         (SetClassLongPtr{AW}): Likewise.
4715         (GCLP_*): Add GetClassLongPtr defines.
4716         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4717         (SetClassLongPtr{AW}): Likewise.
4718
4719 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4720
4721         * include/commdlg.h (OPENFILENAMEW): Add members for
4722         _WIN32_WINNT >= 0x0500.
4723         Thanks to Ricardo Dalcorsso Fodra.
4724         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4725
4726 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4727
4728         * include/wingdi.h (GetICMProfileA): Correct prototype.
4729         (GetICMProfileW): Likewise.
4730         Thanks to: Paul J Lucas
4731
4732 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4733
4734         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4735
4736 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4737
4738         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4739         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4740         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4741         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4742
4743 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4744
4745         * include/objbase.h: Fix typo.
4746         * include/w32api.h: Increment version to 3.5.
4747         * Makefile.in: Ditto.
4748
4749 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4750
4751         * include/w32api.h: Increment version to 3.4.
4752         * Makefile.in: Ditto.
4753
4754 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4755
4756         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4757         Use _WIN32_WINNT >= 0x0501 guard.
4758
4759 2005-10-11  Christopher Faylor  <cgf@timesys.com>
4760
4761         * include/winbase.h (GetProcessId): Declare.
4762
4763 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4764
4765         * lib/ddk/newdev.def: Added.
4766         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
4767
4768 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4769
4770         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
4771         component.
4772         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
4773
4774 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4775
4776         * lib/shell32.def (SHILCreateFromPath): Add stub.
4777         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
4778
4779 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4780
4781         * include/winbase.h (RegisterWaitForSingleObject,
4782         RegisterWaitForSingleObjectEx): Define.
4783         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
4784         (RegisterWaitForSingleObject@16): Changed to
4785         RegisterWaitForSingleObject@24.
4786         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
4787
4788 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
4789
4790         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
4791         Thanks to: Gisle Vanem  <giva at bgnett dot no>
4792
4793 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4794
4795         * include/reason.h [_WIN32_WINNT >= 0x0501]
4796         (SHTDN_REASON_*): New file.
4797         * include/objbase.h: Avoid double header guard.
4798
4799 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
4800
4801         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
4802         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
4803         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
4804
4805 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4806
4807         * include/shlobj.h (IContextMenu3): Define.
4808         * include/shlguid.h (IID_IContextMenu3): Declare.
4809         * lib/shell32.c (IID_IContextMenu3): Define.
4810
4811 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4812
4813         * include/shlobj.h (SHFormatDrive): Declaration of function
4814         and associated constants.
4815
4816 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4817
4818         * include/ddk/hidsdi.h:  New file.
4819         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
4820         functions declared in hidsdi.h.
4821         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
4822
4823 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4824
4825         * lib/imm32.def (ImmDisableIME): Add stub.
4826         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
4827
4828 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4829
4830         * include/w32api.h: Increment version to 3.3.
4831         * Makefile.in: Ditto.
4832
4833 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
4834
4835         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
4836         Correct their values.
4837         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
4838
4839 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4840
4841         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
4842
4843 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4844
4845         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
4846         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
4847
4848 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4849
4850         * include/richedit.h (SETTEXTEX): Define structure and
4851         associated constants.
4852         (GT_SELECTION): Define GETTEXTEX flag constant.
4853
4854 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4855
4856         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
4857
4858 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4859
4860         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
4861         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
4862         prototypes.
4863
4864 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4865
4866         * include/commctrl.h (RBBS_USECHEVRON): Define.
4867         (RBBS_*): Use hex notation, group together.
4868
4869 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4870
4871         * lib/kernel32.def (GetUserGeoID): Correct suffix.
4872         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
4873
4874 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4875
4876         * include/commctrl.h (TreeView_SetItemState): Initilise
4877         _tvi.hItem.
4878         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
4879
4880 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
4881
4882         * include/commctrl.h (NMLVFINDITEM): Add structure.
4883
4884 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4885
4886         * include/wininet.h (WININET_API_FLAG_*): Add defines.
4887
4888 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
4889
4890         * include/winnt.h (VER_SET_CONDITION): Define.
4891
4892 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4893
4894         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
4895         (ATTACH_PARENT_PROCESS): Define.
4896         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
4897         documentation.
4898
4899 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4900
4901         * include/winbase.h (QueueUserWorkItem): Add prototype.
4902
4903 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4904
4905         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
4906         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
4907         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
4908         CM_CMYK_COLOR): Define.
4909
4910 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
4911
4912         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
4913         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
4914         Thanks to: Christian  <chhd at users dot sf dot net>
4915
4916 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4917
4918         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
4919         field.
4920         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
4921
4922 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4923
4924         * include/winbase.h (GlobalDiscard): Define as macro.
4925         Thanks to: David Golub  <david_golub  at users dot sf dot net>
4926
4927 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
4928
4929         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
4930         (WNetGetResourceParentW): Ditto.
4931         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
4932         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
4933
4934 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
4935
4936         * include/wininet.h (FtpGetFileSize): Add prototype.
4937         (FtpCommand[AW]): Correct prototypes.
4938         Reported by: <siger at users dot sf dot net>
4939
4940 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
4941
4942         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
4943         (capGetDriverDescription[AW]): Likewise.
4944
4945 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
4946
4947         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
4948         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
4949         (SE_IMPERSONATE_NAME TEXT): Ditto.
4950         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
4951         (SE_SYNC_AGENT_NAME TEXT): Ditto.
4952
4953 2005-03-16  Christopher Faylor  <cgf@timesys.com>
4954
4955         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
4956         change.
4957
4958 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
4959
4960         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
4961         Thanks to:
4962         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
4963
4964 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4965
4966         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
4967         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
4968         (gai_strerror[AW]): Put into #if 0 block.
4969
4970 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4971
4972         * include/basetyps.h (__int16): Correct define.
4973
4974 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
4975             Danny Smith  <dannysmith@users.sourceforge.net>
4976
4977         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
4978         define for Open Watcom portability.
4979         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
4980         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
4981         of local c_rgodfDI* objects. Replace .rdata section attribute
4982         with 'const' keyword in definition of global c_dfDI* objects.
4983
4984 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
4985
4986         * include/winioctl.h (IOCTL_VOLUME_BASE,
4987         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
4988         Copy defines from include/ddk/ntdddvol.h.
4989         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
4990
4991 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
4992
4993         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
4994
4995 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4996
4997         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
4998         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
4999
5000 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5001
5002         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5003
5004 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5005
5006         * lib/user32.def (MonitorFromPoint): Correct suffix.
5007
5008 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5009
5010         * include/wininet.h (InternetCheckConnectionA,
5011         InternetCheckConnectionW) Add prototypes.
5012         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5013         INTERNET_CONNECTION_CONFIGURED): Add defines.
5014
5015 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5016
5017         * include/commctrl.h (ComboBox_SetMinVisible,
5018         ComboBox_GetMinVisible): Added Macros.
5019         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5020         Added definitions.
5021
5022 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5023
5024         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5025         assembly code conditional on _X86_.
5026
5027 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5028
5029         * include/w32api.h: Increment version to 3.2.
5030         * Makefile.in: Ditto.
5031         * include/afxres.h: Remove the \r from the line ending.
5032         * include/errorrep.h: Ditto.
5033         * include/shldisp.h: Ditto.
5034         * include/tschema.h: Ditto.
5035         * lib/dhcpcsvc.def: Ditto.
5036         * lib/uxtheme.def: Ditto.
5037         * lib/wldap32.def: Ditto.
5038
5039 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5040
5041         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5042         Correct typo.
5043         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5044
5045 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5046
5047         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5048         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5049         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5050         SPI_GETFOREGROUNDLOCKTIMEOUT,
5051         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5052         *include/imm.h (WM_IME_REQUEST): Added definition.
5053         *include/shlobj.h (SLGP_RAWPATH,
5054         SLGP_UNCPRIORITY): Added definition.
5055
5056 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5057
5058         *include/winuser.h (HSHELL_FLASH): Added definition.
5059
5060 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5061
5062         * include/shldisp.h (IAutoComplete): Added interface definiton.
5063         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5064         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5065         * include/shlobj.h (IObjMgr): Added interface definiton.
5066         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5067         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5068         CLSID_ACListISF, IID_IACList): Added GUIDs.
5069         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5070         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5071         CLSID_ACListISF, IID_IACList): Added GUIDs.
5072
5073 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5074
5075         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5076         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5077         (CDRF_*): Use hex notation for constants.
5078
5079 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5080
5081         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5082         Reported by Eric Sharkey <sharkey at netrics dot com>
5083
5084 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5085
5086         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5087         TokenGroupsAndPrivileges, TokenSessionReference,
5088         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5089         Reformat.
5090         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5091         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5092
5093 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5094
5095         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5096         ImageList_Duplicate): Add stubs.
5097
5098 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5099
5100         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5101         Thanks to "Pete" <pross@xvid.org>
5102
5103 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5104
5105         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5106         AC_DST_NO_ALPHA, ...): Add defines.
5107         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5108         ULW_OPAQUE): Add defines.
5109
5110 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5111
5112         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5113         guard.
5114         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5115         suffix.
5116         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5117
5118 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5119
5120         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5121         (CreateProcessWithLogonW): Declare.
5122         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5123         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5124
5125 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5126
5127         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5128         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5129
5130 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5131
5132         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5133         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5134
5135 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5136
5137         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5138
5139 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5140
5141         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5142         Add defines.
5143         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5144
5145 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5146
5147         * include/shellapi.h (NIF_GUID): Add another define.
5148
5149 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5150
5151         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5152         Changed it twice due to inconsistent MSDN documentation.
5153         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5154
5155 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5156
5157         * include/shlobj.h (SHGFP_TYPE): Add enum.
5158
5159 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5160
5161         * include/winuser.h (WM_THEMECHANGED): Add define.
5162
5163 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5164
5165         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5166         ExFreeToPagedLookasideList): Guard inline versions with
5167         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5168         external functions for earlier _WIN32_WINNT.
5169
5170 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5171
5172         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5173
5174 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5175
5176         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5177         if  undefined and __W32API_USE_DLLIMPORT__.
5178         Add WINBASEAPI token to prototypes, throughout.
5179
5180 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5181
5182         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5183         (GetFiberData): Likewise.
5184         (NtCurrentTeb): Likewise.
5185
5186 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5187
5188         * include/shellapi.h (NIF_INFO): Add define.
5189         (NIIF_*) Add defines..
5190         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5191         (NIF_*): Convert constants to hex.
5192
5193 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5194
5195         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5196         GetGlyphIndicesW): Declare.
5197         (GGI_MARK_NONEXISTING_GLYPHS): Define
5198         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5199         GetGlyphIndicesW): Add stubs.
5200
5201 2004-10-24  Dan Aloni  <da-x@colinux.org>
5202
5203         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5204         ZwQueryFullAttributesFile): Declare.
5205         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5206         Declare.
5207         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5208         ZwQueryVolumeInformationFile): Add stubs.
5209
5210 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5211
5212         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5213         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5214
5215 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5216             Danny Smith  <dannysmith@users.sourceforge.net>
5217
5218         * include/winbase.h (InitializeSListHead, Interlocked*):
5219         Guard with !__USE_NTOSKRNL__.
5220
5221         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5222         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5223         Guard with  __USE_NTOSKRNL__.
5224         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5225         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5226         && _WIN32_WINNT >= 0x0501
5227         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5228         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5229         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5230         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5231
5232         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5233         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5234         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5235         ExWindowStationObjectType, IoAdapterObjectType,
5236         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5237         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5238         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5239         Uncomment stubs.
5240
5241 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5242
5243         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5244         definition
5245         (IoReleaseRemoveLock): Add definition.
5246
5247 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5248
5249         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5250         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5251         Add prototypes.
5252         * include/winddk.h (ExInterlockedAddUlong,
5253         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5254         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5255         ExInterlockedPushEntryList): Change calling convention to
5256         DDKAPI.
5257         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5258         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5259         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5260         Add prototypes for DDKFASTAPI versions.
5261         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5262         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5263         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5264         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5265         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5266         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5267         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5268         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5269         Add fastcall stubs.
5270         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5271         Exi386InterlockedIncrementLong); Add stdcall stubs.
5272
5273 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5274
5275         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5276          if __W32API_USE_DLLIMPORT__ is defined.
5277         * include/winuser.h (WINUSERAPI): Likewise.
5278
5279 2004-09-29  Filip Navara  <xnavara@volny.cz>
5280
5281         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5282         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5283         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5284         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5285         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5286         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5287         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5288         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5289         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5290         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5291         winnt4.h, ws2san.h): Fixed packing.
5292         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5293         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5294         HID_INTERFACE_NOTIFY_PNP): Likewise.
5295         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5296         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5297         <ayerkes@speakeasy.net>.
5298         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5299         declaration.
5300         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5301         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5302         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5303         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5304         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5305         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5306         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5307         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5308         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5309         (SYNCH_LEVEL): Added definition.
5310         (KPCR, KPCR_TIB): Fixed declaration.
5311         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5312         included and _WIN32_WINNT >= 0x0501.
5313         (RtlEqualLuid): Fixed macro definition.
5314         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5315         KeRaiseIrql on i386 architectures.
5316
5317 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5318
5319         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5320         declaration.
5321         (IHTMLSelectionObject): Correct get_type declaration.
5322         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5323         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5324         IHTMLBodyElement2): Add interfaces.
5325         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5326         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5327         typedefs.
5328         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5329         Add IIDs.
5330
5331 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5332
5333         * include/w32api.h: Increment version to 3.1.
5334         * Makefile.in: Ditto.
5335
5336 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5337
5338         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5339         MonitorFromWindow): Add prototypes.
5340         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5341         MonitorFromWindowMonitorFromWindow): Add stubs.
5342         * include/shellapi.h (DuplicateIcon): Add prototype.
5343
5344 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5345
5346         * include/winuser.h (WINUSERAPI): New define.
5347         Use it to mark user32.dll imports, throughout.
5348
5349 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5350
5351         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5352         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5353         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5354         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5355         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5356         HidD_GetPreparsedData, HidD_GetProductString,
5357         HidD_GetSerialNumberString, HidD_SetConfiguration,
5358         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5359         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5360
5361 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5362
5363         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5364         Add XP defines.
5365         (PCOORD): Add typedef.
5366         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5367
5368 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5369
5370         * include/winldap.h: Don't check value of UNICODE.
5371         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5372
5373 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5374
5375         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5376
5377 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5378
5379         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5380         guard.
5381
5382 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5383
5384         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5385
5386 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5387
5388         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5389
5390 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5391
5392         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5393
5394 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5395
5396         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5397
5398 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5399
5400         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5401         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5402         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5403         Add defines.
5404         (CALG_SHA1): Add define.
5405         (HP_HMAC_INFO): Add define.
5406         (HMAC_INFO): Add struct.
5407         (BLOBHEADER): Add typedef.
5408
5409 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5410
5411         * include/commctrl.h (TreeView_SetItemState): Define macro.
5412
5413 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5414
5415         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5416         macros together.
5417
5418 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5419
5420         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5421         (FILEGROUPDESCRIPTOR): LIkewise.
5422
5423 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5424
5425         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5426
5427 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5428
5429         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5430         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5431         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5432         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5433         (IMAGE_ORDINAL): Map to ...
5434         (IMAGE_ORDINAL{32,64}: New defines.
5435         (IMAGE_THUNK_DATA):  Map to ...
5436         (IMAGE_THUNK_DATA{32,64}: New structures.
5437         (IMAGE_THUNK_DATA): Map to ...
5438         (IMAGE_THUNK_DATA{32,64}: New structures.
5439         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5440         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5441         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5442         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5443
5444 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5445
5446         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5447         _WIN32_WINNT >= 0x0500.
5448
5449 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5450
5451         * include/winbase.h (GetWriteWatch): Correct prototype.
5452         (WRITE_WATCH_FLAG_RESET): Define.
5453         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5454
5455 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5456
5457         * include/commctrl.h (Animate_OpenEx): Define.
5458         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5459         (ListView_GetNumberOfWorkAreas): Correct macro.
5460         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5461         ListView_SetItemCountEx, ListView_GetISearchString,
5462         TreeView_GetLastVisible, Header_CreateDragImage,
5463         Header_SetImageList, Header_GetImageList): Define.
5464         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5465         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5466         TBSTATE_ELLIPSES): Define.
5467         (MonthCal_SetRange): Correct macro.
5468         (ImageList_Duplicate): Declare.
5469
5470 2004-05-29  Filip Navara  <xnavara@volny.cz>
5471
5472         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5473
5474 2004-05-25  Al Slater  <al.slater@scluk.com>
5475
5476         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5477         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5478
5479 2004-05-15  Filip Navara  <xnavara@volny.cz>
5480
5481         * include/ddk/kbdmou.h: New file.
5482         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5483         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5484         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5485         _vsnwprintf, sprintf, swprintf): Export.
5486
5487 2004-05-15  Filip Navara  <xnavara@volny.cz>
5488
5489         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5490         headers.
5491
5492 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5493
5494         * include/wingdi.h: Correct non-unicode typedefs of
5495         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5496
5497 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5498
5499         * include/winsock.h (IN_CLASSA): Fix macro.
5500         * include/winsock2.h (IN_CLASSA): Fix macro.
5501
5502 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5503
5504         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5505         * include/aclui.h: Remove '\r', throughout.
5506         * include/msacm.h: Likewise.
5507         * lib/aclui.def: Likewise.
5508
5509 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5510
5511         * lib/comctl32.def (SetWindowSubclass): Add stub.
5512         Thanks to Eugene <egladysh@users.sourceforge.net>.
5513
5514 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5515
5516         * include/winbase.h (EXECUTION_STATE): Add typedef.
5517         (SetThreadExecutionState): Declare.
5518         * include/wingdi.h (_WINGDI_): Define.
5519         * include/objbase.h (_OBJBASE_H_): Define.
5520
5521 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5522
5523         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5524         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5525         (SM_CMETRICS): Adjust value.
5526         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5527         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5528         Add defines.
5529         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5530
5531 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5532
5533         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5534         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5535         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5536         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5537         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5538         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5539
5540 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5541
5542         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5543         DNSREC_ADDITIONAL): Add defines.
5544
5545 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5546
5547         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5548
5549 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5550
5551         * include/aclui.h: New file.
5552         * lib/aclui.def: New file.
5553         * lib/test.c: Add aclui.h to includes.
5554
5555 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5556
5557         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5558         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5559         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5560
5561 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5562
5563         * include/wingdi.h: Protect non-unicode case of below.
5564
5565 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5566
5567         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5568         LPENUMLOGFONTEXDV with appropriate version check.
5569
5570 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5571
5572         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5573         DSPROPSETID_DirectSoundDevice): Add defines.
5574
5575 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5576
5577         * include/msacm.h: New file.
5578
5579 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5580
5581         * include/objbase.h (STGFMT): Declare enum.
5582         (STGOPTIONS): Declare structure.
5583         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5584         (STGOPTIONS_VERSION): Define.
5585         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5586
5587 2004-04-13  Filip Navara  <xnavara@volny.cz>
5588
5589         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5590         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5591         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5592         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5593         HELP_SETWINPOS): Define.
5594         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5595         (SPI_*): Add new definitions for WINVER >= 0x500.
5596         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5597         (InternalGetWindowText, SetWindowsHookW): Declare.
5598         * include/winbase.h (InitializeSListHead): Avoid conflicting
5599         definition with DDK headers.
5600
5601 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5602
5603         * include/winuser.h (GetLastError): Move from here...
5604         * include/winbase.h: ... to here.
5605
5606 2004-04-13  Filip Navara  <xnavara@volny.cz>
5607
5608         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5609
5610 2004-04-13  Filip Navara  <xnavara@volny.cz>
5611
5612         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5613         WINVER >= 0x400.
5614         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5615         (ENUMLOGFONTEXW): Fix definition.
5616         (ENUMLOGFONTEXDV[AW]): Declare.
5617
5618 2004-04-13  Filip Navara  <xnavara@volny.cz>
5619
5620         * include/wingdi.h: Declare the DirectDraw structures only if
5621         the DirectDraw kernel mode headers aren't included.
5622         (EMFINFO): Declare.
5623         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5624         STROBJ_bEnumPositionsOnly): Correct prototypes.
5625
5626 2004-04-13  Filip Navara  <xnavara@volny.cz>
5627
5628         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5629         * include/rpc.h (RPCRTAPI): Define.
5630         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5631         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5632         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5633         (I_RpcBindingSetAsync): Correct prototype.
5634         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5635         to w2kReserved.
5636         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5637         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5638         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5639         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5640         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5641         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5642         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5643         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5644         NdrUserMarshalFree): Declare.
5645         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5646         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5647
5648 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5649
5650         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5651         LPC_MESSAGE_BASE_SIZE): Define.
5652         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5653
5654 2004-04-13  Filip Navara  <xnavara@volny.cz>
5655
5656         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5657         Declare.
5658
5659 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5660
5661         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5662         MONITORINFO when compiling as C++.
5663
5664 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5665
5666         * README.w32api: List separate copyright conditions for some headers.
5667         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5668
5669 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5670
5671         * include/wingdi.h (RGB): Correct macro.
5672
5673 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5674
5675         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5676
5677 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5678
5679         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5680
5681 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5682
5683         * lib/Makefile.in: Add directx to .PHONY target.
5684         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5685         Don't include stdio.h or tchar.h.
5686         Replace _T() macro with TEXT() macro, throughout.
5687         Replace _stprintf with wsprintf, throughout.
5688
5689 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5690
5691         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5692         Add define.
5693         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5694         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5695         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5696
5697 2004-03-27  Filip Navara  <xnavara@volny.cz>
5698
5699         * include/directx: New subdir.
5700         * lib/directx: Ditto.
5701         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5702         dxerr9.h): New files.
5703         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5704         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5705         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5706         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5707         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5708         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5709         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5710         strmiids.c, test.c): Ditto.
5711         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5712         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5713
5714 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5715
5716         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5717         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5718         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5719
5720 2004-03-24  Filip Navara  <xnavara@volny.cz>
5721
5722         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5723         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5724
5725 2004-03-24  Filip Navara  <xnavara@volny.cz>
5726
5727         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5728         TaggedQueueing to TaggedQueuing.
5729         (_HW_INITIALIZATION_DATA): Likewise.
5730
5731 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5732
5733         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5734         prototype.
5735         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5736
5737 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5738
5739         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5740         (MmMapIoSpace): Likewise.
5741         Thanks to Dan Aloni  <da-x@colinux.org>
5742
5743 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5744
5745         * include/shellapi.h (NIM_* NIS_*): Define constants for
5746         notification icons with _WIN32_IE >= 0x0500.
5747         (NOTIFYICONDATA): Add new structure members for notification
5748         icons with _WIN32_IE >= 0x0500.
5749
5750 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5751
5752         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5753         Add defines.
5754         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5755         (GROUPID) Add typedef.
5756         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5757         (CreateUrlCacheGroup): Add prototype.
5758         (DeleteUrlCacheGroup): Add prototype.
5759         (FindFirstUrlCacheGroup): Add prototype.
5760         (FindNextUrlCacheGroup): Add prototype.
5761         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
5762         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
5763
5764 2004-03-10  Al Slater  <al.slater@scluk.com>
5765
5766         * include/winsock2.h: Add missing LPFN_ typdefs for
5767         function pointers.
5768         Clean up whitespace.
5769
5770 2004-03-05  Filip Navara  <xnavara@volny.cz>
5771
5772         * include/ddk/scsi.h: Replace assert with ASSERT.
5773         * include/ddk/video.h: Ditto.
5774         * include/ddk/winddk.h: Ditto. Remove the assert macro.
5775         * include/ddk/tdi.h: Correct packing.
5776
5777 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
5778
5779         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
5780         NONAMELESSUNION case.
5781
5782 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
5783
5784         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
5785         __VARIANT_NAME_ constants.
5786
5787 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5788
5789         * include/uxtheme.h: Include <commctrl.h>
5790
5791 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5792
5793         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
5794
5795 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
5796
5797         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
5798         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
5799         together.
5800         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
5801         (V_I8, V_I8REF): Correct macros.
5802         (V_DECIMAL): Correct macro definitions.
5803         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
5804         constants.
5805         (VTBIT_*): Define constants.
5806         (UDATE): Add structure definition.
5807         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
5808         functions.
5809         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
5810         (SafeArrayCreateVectorEx): Declare function.
5811         (Var*): declare VARIANT manipulation functions.
5812         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
5813         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
5814         macros.
5815
5816 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
5817
5818         * include/oaidl.h (FADF_*): Define missing constants.
5819         (IDispatch_*): Define COBJ macros.
5820         (VARIANT): Add missing union members llVal and ullVal.
5821         (wireVARIANT): Likewise.
5822         (ITypeinfo_*): Define COBJ macros.
5823         * include/oleauto.h (Var*FromDisp): Correct parameter type from
5824         LPDISPATCH* to LPDISPATCH.
5825         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
5826         VAR_CALENDAR_*): Add missing constants.
5827         (SafeArray[Get/Set]*): Add prototypes.
5828         (Var*From*):  Add missing prototypes.
5829         (NUMPRS_*): Add defines.
5830         (NUMPARSE): Define structure.
5831         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
5832         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
5833         * include/winuser.h (COLOR_*): Define missing constants.
5834         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
5835         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
5836
5837 2004-02-23  Filip Navara  <xnavara@volny.cz>
5838
5839         * include/ddk/video.h: Corrected packing.
5840
5841 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5842
5843         * include/GL/glu.h (GLU_ERROR): Define.
5844         Thanks to Philip Lamb  <phil at rave dot co dot nz>
5845
5846 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5847
5848         * include/GL/glu.h: Include <stddef.h>.
5849         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
5850
5851 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
5852
5853         * include/w32api.h: Increment version to 3.0.
5854         * Makefile.in: Ditto.
5855         * README.win32api: Modify license to Public Domain per agreement as
5856         found in the mingw-dvlpr list archive.
5857
5858 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
5859
5860         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
5861         (DIRECTORY_TRAVERSE): Ditto.
5862         (DIRECTORY_CREATE_OBJECT): Ditto.
5863         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
5864         (DIRECTORY_ALL_ACCESS): Ditto.
5865         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
5866
5867 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
5868
5869         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
5870
5871         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
5872         Thanks to Mike Nordell <tamlin at algonet dot se>.
5873
5874 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5875
5876         * lib/dnsapi.def: New file.
5877         * lib/test.c: Include windns.h.
5878
5879 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
5880
5881         * include/windns.h: New file.
5882
5883 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5884
5885         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
5886         defines.
5887         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
5888         (SQLSetDescFieldW): Correct prototype.
5889         (SQLSetDescFieldA): Add prototype.
5890         (SQLGetDescFieldW): Add prototype.
5891
5892 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
5893
5894         * include/winuser.h (DFC_POPUPMENU): Add define.
5895
5896 2004-02-07  Dan Aloni  <da-x@gmx.net>
5897
5898         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
5899         suffix.
5900
5901 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5902
5903         * include/oleacc.h (LIBID_Accessibility): Declare.
5904         * lib/uuid.c (LIBID_Accessibility): Define.
5905
5906 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5907
5908         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
5909         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
5910
5911 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5912
5913         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
5914         defines.
5915
5916 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
5917
5918         * include/winuser.h (RT_MANIFEST): Make conditional on
5919         RC_INVOKED.
5920         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
5921         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
5922         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
5923         defines.
5924
5925 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
5926
5927         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
5928
5929 2004-01-15  Filip Navara  <xnavara@volny.cz>
5930
5931         * include/ddk/mcd.h: Don't care about value of DBG define.
5932         * include/ddk/srb.h: Ditto.
5933         * include/ddk/storport.h: Ditto.
5934         * include/ddk/video.h: Ditto.
5935         * include/nspapi.h (SetServiceW, GetAddressByNameA,
5936         GetAddressByNameW): Correct protoype.
5937         * include/ntsecapi.h (PCUNICODE_STRING): Define.
5938
5939 2004-01-05  Filip Navara  <xnavara@volny.cz>
5940
5941         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
5942         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
5943         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
5944         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
5945         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
5946         FOF_NOCOPYSECURITYATTRIBS): Add defines.
5947         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
5948         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
5949         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
5950         SSF_*): Add defines.
5951         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
5952         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
5953         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
5954         Correct.
5955         (IEnumIDList): Add COBJMACROS.
5956         * include/winuser.h (MIM_*): Add define.
5957
5958 2004-01-04  Filip Navara  <xnavara@volny.cz>
5959
5960         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
5961         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
5962         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
5963         PERSIST_FOLDER_TARGET_INFO): Define structures.
5964         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
5965         IPersistFolder2, IPersistFolder3): Add COM interface
5966         definitions.
5967         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
5968         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
5969         Add COBJMACROS.
5970         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
5971         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
5972         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
5973
5974 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
5975
5976         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
5977         declarations.
5978         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
5979
5980 2004-01-03  Filip Navara  <xnavara@volny.cz>
5981
5982         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
5983         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
5984         declare IID's.
5985         (IErrorInfo): Add COBJMACROS.
5986         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
5987         (CoGetPSClsid): Add protototype,
5988         (CoRegisterPSClsid): Likewise.
5989         * include/objidl.h (IMarshal): Correct methods.
5990         (IMallocSpy): Likewise,
5991         (LPPSFACTORYBUFFER): Add typedef.
5992         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
5993         IID.
5994         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
5995         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
5996         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
5997         structures.
5998         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
5999         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6000         IQuickActivate): Define interfaces. Declare IID's.
6001         (IPersistPropertyBag2): Add COBJMACROS.
6002         (LPOLEUNDOMANAGER): Add typedef.
6003         (LPPROPERTYBAG2): Likewise.
6004         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6005         (BINDSPEED): Add definition.
6006         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6007         IDropTarget): Add COBJMACROS.
6008         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6009         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6010         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6011         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6012         Add IID definitions.
6013
6014 2004-01-02  Filip Navara  <xnavara@volny.cz>
6015
6016         * include/ddk/winddk.h: Don't care about value of
6017         DBG define.
6018
6019 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6020             Filip Navara  <xnavara@volny.cz>
6021
6022         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6023         _DDK_DUMMYUNION_N_MEMBER): New macros.
6024         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6025         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6026         Use them.
6027
6028 2004-01-01  Filip Navara  <xnavara@volny.cz>
6029
6030         * include/objbase.h: Don't care about value of DBG define.
6031         * include/objidl.h: Add some COBJMACROS.
6032         * include/ocidl.h: Ditto.
6033         * include/oleidl.h: Ditto.
6034         * include/servprov.h: Ditto.
6035         * include/shlobj.h: Ditto.
6036         * include/shlobj.h (IContextMenu2): Correct parent in
6037         DECLARE_INTERFACE.
6038         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6039         Define interfaces.
6040         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6041         Add new constants for _SETUPAPI_VER >= 0x501.
6042
6043 2004-01-01  Filip Navara  <xnavara@volny.cz>
6044
6045         * include/winnt.h (NtCurrentTeb): Add inline definition.
6046
6047 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6048
6049         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6050         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6051
6052 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6053
6054         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6055         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6056         * include/ddk/cfg.h (DN_*): Add defines.
6057
6058 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6059
6060         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6061
6062 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6063
6064         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6065         (NMTVGETINFOTIP): Add structure.
6066
6067 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6068
6069         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6070         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6071         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6072
6073 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6074
6075         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6076         Add macros.
6077         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6078         constants.
6079         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6080         (SHCOLUMNDAT): Likwise.
6081         (SHCOLUMNID): Likewise.
6082         (SHCOLUMNINFO): Likewise.
6083         (SHCOLSTATE): Add enum.
6084         (IColumnProvider): Add COM interface.
6085         (IQueryInfo): Likewise.
6086         (IShellIconOverlayIdentifier): Likewise.
6087         * include/shlguid.h (IID_IColumnProvider) Declare.
6088         (IID_IQueryInfo): Likweise.
6089         (IID_IShellIconOverlayIdentifier): Likwise.
6090         * lib/shell32.c (IID_IColumnProvider) Define.
6091         (IID_IQueryInfo): Likweise.
6092         (IID_IShellIconOverlayIdentifier): Likwise.
6093
6094 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6095
6096         * include/winuser.h (RT_MANIFEST): Add define.
6097
6098 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6099
6100         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6101
6102 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6103
6104         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6105         (GetFiberData): Likewise.
6106         (GetCurrentFiber): Change volatile to __volatile__.
6107         (GetFiberData): Likewise.
6108
6109 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6110
6111         * lib/Makefile.in: Use make function to locate .mri file to allow
6112         building in directory other than source directory.
6113
6114 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6115
6116         * lib/vfw32.def: Remove, replacing with ...
6117         * lib/msvfw32.def: New file.
6118         * lib/avicap32.def: New file.
6119         * lib/avifil32.def: New file.
6120         * lib/vfw32.mri: New file.
6121         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6122         import libs with multiple dll's.
6123         (LIBS): Add MIMPLIBS.
6124         (DISTFILES): Add MRI_FILES.
6125         (libvfw32.a): Build using mri script.
6126
6127 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6128
6129         * include/winnt.h (PAGE_*): Group defines together. Change
6130         constants to hex notation.
6131
6132 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6133
6134         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6135
6136 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6137
6138         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6139         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6140         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6141         Add prototypes.
6142         * lib/shell32.def: Add stubs.
6143
6144         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6145         compiler warnings.
6146
6147 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6148
6149         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6150
6151 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6152
6153         * include/windows.h (CopyCursor): Define as macro.
6154
6155 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6156
6157         * include/winnt.h (CONTAINING_RECORD): Add macro.
6158
6159 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6160
6161         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6162         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6163         defines.
6164
6165 2003-10-13  Filip Navara  <xnavara@volny.cz>
6166
6167         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6168         defines for Dynamic Storage Arrays.
6169         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6170         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6171         and defines for Flat ScrollBars.
6172         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6173         DefSubclassProc): Add prototypes for subclassing.
6174         (DrawShadowText): Add prototype.
6175         (COMCTL32_VERSION): Define.
6176
6177 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6178
6179         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6180         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6181
6182 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6183
6184         * include/winnt.h (SM_REMOTESESSION): Add define.
6185         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6186
6187 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6188
6189         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6190         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6191         duplicate definitions.
6192         (KP_X, KP_Y): Correct typos.
6193
6194 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6195
6196         * include/afxres.h: New file.
6197
6198         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6199         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6200         ENM_SCROLLEVENTS): Add constants.
6201
6202         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6203
6204 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6205
6206         * include/errorep.h: New file.
6207
6208         * lib/faultrep.def: New file.
6209
6210 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6211
6212         * include/winbase.h (AddVectoredExceptionHandler): Define if
6213         _WIN32_WINNT >= 0x0500.
6214
6215         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6216         _WIN32_WINNT >= 0x0500.
6217
6218 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6219
6220         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6221         _WIN32_WINNT >= 0x0501.
6222
6223 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6224
6225         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6226         UnregisterWaitEx): Add functions.
6227
6228         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6229         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6230         or guard function. The MSDN says it is available on Windows XP and
6231         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6232         Huh?
6233
6234         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6235         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6236         ZombifyActCtx, QueryActCtxW): Add functions.
6237
6238         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6239         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6240         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6241         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6242
6243         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6244         SetFirmwareEnvironmentVariable[AW]): Add functions.
6245
6246         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6247         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6248         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6249         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6250         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6251
6252         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6253         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6254
6255         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6256         (ACTIVATION_CONTEXT_INFO_CLASS,
6257         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6258         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6259         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6260         Add structures.
6261
6262         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6263         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6264         SetFileShortName[AW], SetFileValidData,
6265         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6266         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6267
6268 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6269
6270         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6271         ResetWriteWatch): Add function.
6272
6273         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6274         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6275         Add functions.
6276
6277         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6278         (GetSystemWow64Directory[AW], HeapQueryInformation,
6279         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6280         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6281         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6282         RemoveVectoredExceptionHandler): Add functions.
6283
6284         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6285         Add enumeration.
6286
6287         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6288         Add function.
6289
6290         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6291         Add function. The MSDN Magazine of June 2003 reads:
6292                 RestoreLastError is an enigma. It's code is identical to
6293                 SetLastError. It's unclear to me why it was made into a
6294                 separate API.
6295
6296         * lib/user32.def (GetSystemWindowsDirectory[AW],
6297         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6298         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6299         InterlockedFlushSList, InterlockedPopEntrySList,
6300         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6301         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6302         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6303         RestoreLastError): Add functions.
6304
6305 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6306
6307         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6308         GetProcessIoCounters): Add functions.
6309
6310         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6311         Move around, needed by GetComputerNameEx.
6312
6313         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6314         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6315         Add functions.
6316
6317         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6318         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6319
6320         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6321         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6322         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6323         Windows XP SP1 and better.
6324
6325         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6326         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6327         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6328         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6329         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6330         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6331         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6332         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6333         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6334
6335         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6336         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6337         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6338         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6339         Add functions.
6340
6341 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6342
6343         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6344         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6345         DebugSetProcessKillOnExit): Add functions.
6346
6347         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6348         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6349         DnsHostnameToComputerName[AW]): Add functions.
6350
6351         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6352         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6353         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6354
6355 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6356
6357         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6358         on Windows XP and later.
6359
6360 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6361
6362         * include/commctrl.h (TreeView_Select): Returns BOOL.
6363
6364 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6365
6366         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6367
6368         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6369         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6370
6371         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6372         CreateTimerQueueTimer): Add function.
6373
6374         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6375         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6376
6377         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6378         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6379
6380         * include/winnt.h (WT_*): Add constants.
6381
6382         * lib/user32.def (CancelDeviceWakeupRequest,
6383         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6384         DeactivateActCtx): Add functions.
6385
6386 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6387
6388         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6389         Add function. Sometimes I don't understand MSDN. This function is
6390         available on Windows XP and Server 2003, but the SDK is supposed to
6391         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6392         Mmmh...
6393
6394         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6395         Guard function. Same remark as above.
6396
6397         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6398         Add functions.
6399
6400 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6401
6402         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6403         Add constants.
6404
6405         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6406         structures.
6407
6408         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6409         function. MSDN says the first argument is HACTCTX but I'm not sure
6410         where such a specialized handle is defined, so use HANDLE instead.
6411
6412         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6413         CheckNameLegalDOS8Dot3[AW]): Add functions.
6414
6415         * lib/user32.def (ActivateActCtx, AttachConsole,
6416         CheckNameLegalDOS8Dot3[AW]): Add functions.
6417
6418         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6419         Unfortunately I don't know which header to put the declarations in.
6420
6421 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6422
6423         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6424         Add constants.
6425
6426         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6427         constants for National Language Support.
6428
6429         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6430         Language Support.
6431
6432         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6433         Language Support.
6434
6435         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6436         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6437         Add functions.
6438
6439         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6440         functions. Strange... I am unable to find which library contains
6441         these functions. Can't find anything with pexports. Any clue?
6442
6443         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6444         SetUserGeoID): Add functions.
6445
6446 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6447
6448         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6449         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6450
6451         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6452         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6453         value for constants.
6454
6455 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6456
6457         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6458         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6459         the algorithms.
6460
6461 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6462
6463         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6464
6465 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6466
6467         * include/wincrypt.h (KP_*): Add constants. Needed by
6468         CryptSetKeyParam() and other functions.
6469
6470 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6471
6472         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6473         Add constants, related to Console Accessibility.
6474
6475 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6476
6477         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6478         wrong value for constant.
6479
6480 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6481
6482         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6483
6484         * include/uxtheme.h: Cleanup.
6485         * include/tmschema.h: Cleanup.
6486
6487 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6488
6489         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6490         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6491
6492 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6493
6494         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6495
6496 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6497
6498         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6499         both winuser.h and dbt.h.
6500         * include/dbt.h (BSF_*, BSM_*): Likewise.
6501
6502         * include/winuser.h (struct tagRAWINPUT): Remove
6503         _ANONYMOUS_UNION tag from named union.
6504         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6505
6506 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6507
6508         * include/dhcpcdsk.h: New file.
6509         Note that MSDN is confused about whether it should start constant
6510         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6511         experience suggests it's DHCPCAPI with `C'.
6512
6513         * lib/dhcpcsvc.def: New file.
6514
6515 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6516
6517         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6518         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6519
6520         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6521         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6522         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6523         for use in RAWINPUTDEVICE.
6524
6525         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6526         (GetRawInputDeviceInfo[AW]): Ooops... there are
6527         ANSI/Unicode versions of this function.
6528
6529         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6530         are ANSI/Unicode versions of this function.
6531
6532 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6533
6534         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6535         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6536         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6537         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6538         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6539         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6540         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6541         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6542         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6543         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6544         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6545         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6546         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6547         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6548         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6549         RIDI_DEVICEINFO): Add constants.
6550
6551         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6552         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6553         RAWINPUTDEVICELIST): Add structures.
6554
6555         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6556         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6557         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6558
6559         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6560         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6561         GetRegisteredRawInputDevices): Add functions.
6562
6563 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6564
6565         * include/winable.h (BlockInput): Add function.
6566
6567         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6568         For use with WINDOWINFO structure.
6569
6570         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6571         Add function.
6572
6573         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6574         Add function.
6575
6576         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6577         Add function...
6578
6579         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6580         ...and duplicate.
6581
6582         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6583         Guard function...
6584
6585         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6586         ...and duplicate.
6587
6588         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6589         Guard function...
6590
6591         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6592         ...and duplicate.
6593
6594         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6595         HARDWAREINPUT, INPUT): Guard structures...
6596
6597         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6598         HARDWAREINPUT, INPUT): ...and duplicate.
6599
6600         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6601         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6602
6603         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6604         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6605
6606         * include/winuser.h: Move around some lines. Reformat according
6607         to recommended or dominant style. Remove FAR keyword.
6608
6609         * include/winable.h: Move around some lines.
6610
6611         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6612         LockWorkStation, UnhookWinEvent): Add functions.
6613
6614 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6615
6616         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6617         PW_CLIENTONLY): Add function and constant.
6618
6619         * lib/user32.def (PrintWindow): Add function.
6620
6621 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6622
6623         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6624
6625         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6626
6627 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6628
6629         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6630         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6631         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6632
6633         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6634
6635 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6636
6637         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6638         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6639         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6640
6641         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6642         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6643         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6644
6645         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6646         Add function.
6647
6648         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6649         Add functions.
6650
6651 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6652
6653         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6654         ACE_OBJECT_TYPE_PRESENT): Add constants.
6655         For use with OBJECTS_AND_NAME structure.
6656
6657 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6658
6659         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6660         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6661         void* instead.
6662
6663         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6664         PINHERITED_FROM[AW]): Add structures.
6665
6666         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6667
6668 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6669
6670         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6671
6672 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6673
6674         * lib/version.def (LIBRARY): Quote name.
6675
6676 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6677
6678         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6679         and constants.
6680
6681         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6682         GR_USEROBJECTS): Add functions and constants.
6683
6684         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6685         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6686
6687         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6688         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6689         constants.
6690
6691         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6692         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6693
6694 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6695
6696         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6697         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6698         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6699         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6700         BSF_RETURNHDESK): Add functions and constants.
6701
6702         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6703         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6704
6705         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6706         GetProcessDefaultLayout, SetProcessDefaultLayout,
6707         RealChildWindowFromPoint, SetProcessDefaultLayout,
6708         SwitchToThisWindow): Add functions.
6709
6710         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6711         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6712         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6713         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6714         RealChildWindowFromPoint, SetProcessDefaultLayout,
6715         SwitchToThisWindow): Add function.
6716
6717 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6718
6719         * include/winuser.h (DeregisterShellHookWindow): Add function.
6720
6721         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6722
6723         * lib/user32.def (EndTask): Add function.
6724
6725         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6726         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6727
6728         * include/winable.h: Reorder target macros.
6729
6730         * lib/*.def: Cleanup.
6731
6732 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6733
6734         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6735         function.
6736
6737         * lib/user32.def (AnimateWindow): Add function. By the way
6738         there are ~ 140 symbols missing from this file when comparing
6739         to user32.dll on Windows XP.
6740
6741 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6742
6743         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6744         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6745         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6746         AnimateWindow().
6747
6748 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6749
6750         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6751         LPGUITHREADINFO): Add function and associated typedef...
6752
6753         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6754         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6755         seems to be required on older versions of Windows.
6756
6757 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6758
6759         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
6760         function. MSDN suggests using gluErrorUnicodeStringWIN
6761         instead of gluErrorString, as it allows both ANSI and Unicode
6762         error strings.
6763
6764         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
6765         returned pointer const for consistency reasons.
6766
6767 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6768
6769         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
6770         Function exists in glu32.def but is undocumented on MSDN.
6771         A Google search came up with this declaration.
6772
6773 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6774
6775         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
6776         headers from OpenGL Sample Implementation. Windows ships with
6777         GLU 1.2 so some constants and functions were removed. Then some
6778         typedef's and function declarations were reworked to look like
6779         the previous GL/glu.h.
6780
6781 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6782
6783         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
6784         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
6785         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
6786
6787         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
6788         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
6789         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
6790         and `enum THEMESIZE'.
6791
6792 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6793
6794         * include/uxtheme.h: New file.
6795         * include/tmschema.h: New file.
6796         * include/uxtheme.def: New file.
6797         * lib/test.c: Include uxtheme.h, tmschema.h.
6798
6799 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6800
6801         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
6802         Add defines.
6803
6804 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6805
6806         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6807         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
6808         <winable.h> as seems to be required on older versions of
6809         Windows.
6810
6811 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6812
6813         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
6814         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6815         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
6816         Add defines, the last one only on Windows XP...
6817
6818         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
6819         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6820         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
6821         them in <winable.h> as seems to be required on older
6822         versions of Windows.
6823
6824 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6825
6826         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
6827         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6828         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6829         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
6830         back into <winuser.h>...
6831
6832         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
6833         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6834         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6835         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
6836         comment out in <winable.h>. MSDN may say <winable.h> but this
6837         breaks many programs. It seems it used to be <winable.h> on
6838         older versions of Windows.
6839
6840 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
6841
6842         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
6843         Thanks to Will Levine  <willll@users.sourceforge.net>
6844
6845 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6846
6847         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
6848         const struct sockaddr*.
6849         (LPWSPCONNECT): Likewise.
6850         (LPWSPJOINLEAF): Likewise.
6851         (LPWSPSENDTO): Likewise.
6852         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
6853
6854 2003-09-15  Filip Navara  <xnavara@volny.cz>
6855
6856         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
6857         Add definitions.
6858
6859 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
6860
6861         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
6862         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
6863         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
6864         DISPLAY_DEVICE_MODESPRUNED): Define constants.
6865         (ChangeDisplaySettingsEx[A,W]): Add prototype.
6866
6867         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
6868         (EnumDisplayDevices[A,W]): Likewise.
6869
6870 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6871
6872         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
6873         throughout.
6874
6875 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6876
6877         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6878         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6879         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6880         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6881         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
6882         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6883         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6884         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
6885         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6886         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6887         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6888         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6889         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
6890         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6891         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6892         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
6893         with documentation.
6894         * include/olectl.h: Do #include <ocidl.h>.
6895         * include/ocidl.h: Don't #include <olectl.h>.
6896
6897 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6898
6899         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
6900         Change guards to use numeric constants, throughout.
6901
6902 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
6903
6904         * include/w32api.h: Increment version to 2.5.
6905         * Makefile.in: Ditto.
6906
6907 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
6908
6909         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
6910         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
6911
6912 2003-09-08  Filip Navara  <xnavara@volny.cz>
6913
6914         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
6915         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
6916
6917 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
6918
6919         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
6920         * include/winbase.h (_NT5, etc): Ditto.
6921
6922 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
6923
6924         * lib/snmpapi.def (LIBRARY) Add library name.
6925         Remove '\r', throughout.
6926         * lib/wsnmp32.def: Remove '\r', throughout.
6927         * lib/igmpagnt.def: Likewise.
6928
6929 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
6930
6931         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
6932         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
6933         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
6934         (MWMO_*): Add flags.
6935
6936         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
6937         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
6938         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
6939         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
6940
6941 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6942
6943         * lib/test.c: Add vfw.h to includes.
6944         * include/mmsystem.h: Add #ifndef guard to definition of
6945         mmioFOURCC macro.
6946         * include/vfw.h: Protect __OBJC__ from COM declarations.
6947
6948 2003-08-26  Filip Navara  <xnavara@volny.cz>
6949
6950         * include/vfw.h: New file.
6951
6952 2003-08-26  Filip Navara  <xnavara@volny.cz>
6953
6954         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
6955         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
6956         PIO_COMPLETION_ROUTINE.
6957
6958 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6959
6960         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
6961         includes.
6962
6963 2003-08-26  Filip Navara  <xnavara@volny.cz>
6964
6965         * include/snmp.h: New file.
6966         * include/winsnmp.h: New file.
6967         * include/mgmtapi.h: New file.
6968         * lib/snmpapi.def: New file.
6969         * lib/wsnmp32.def: New file.
6970         * lib/igmpagnt.def: New file.
6971         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
6972         (SnmpMgrGetTrapEx): Ditto.
6973         (SnmpMgrMIB2Disk): Remove.
6974         (dbginit): Remove.
6975
6976 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
6977
6978         * include/ddk/ntifs.h: Change all C++ style comments to C.
6979         * include/GL/gl.h: Ditto.
6980
6981 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
6982
6983         * include/shlobj.h (SFGAO_GHOSTED): Correct.
6984         (SFGAO_HIDDEN): Add define.
6985
6986 2003-08-25  Filip Navara  <xnavara@volny.cz>
6987
6988         * include/commctrl.h (ILCF_*): Add defines.
6989         (ILD_*): Ditto.
6990         (HDS_*): Ditto.
6991         (IPN_FIRST, IPN_LAST): Cast to UINT.
6992         (SBN_FIRST, SBN_LAST): Add defines.
6993         (PGN_*): Ditto.
6994         (HDF_JUSTIFYMASK): Fix typo.
6995         (HDM_*): Add defines.
6996         (HICF_*): Ditto.
6997         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
6998         (TBSTATE_MARKED): Add define.
6999         (TBSTYLE_EX_*): Add defines.
7000         (TBCDRF_*): Ditto.
7001         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7002         (TB_*): Ditto.
7003         (TBN_*): Ditto.
7004         (TBNRF_*): Ditto.
7005         (TTF_*): Ditto.
7006         (TBCD_*): Ditto.
7007         (TBDDRET_*): Ditto.
7008         (TBIMHT_*): Ditto.
7009         (TTM_*): Ditto.
7010         (UDM_*): Ditto.
7011         (TBIF_BYINDEX): Define as hex constant.
7012         (CDIS_*): Add defines.
7013         (CDDS_SUBITEM): Add define.
7014         (LVIF_*): Add defines.
7015         (LVM_*): Ditto.
7016         (LVGIT_UNFOLDED): Add define.
7017         (TVM_): Add defines.
7018         (TVE_EXPANDPARTIAL): Add define.
7019         (TVGN_LASTVISIBLE): Ditto.
7020         (TVN_*): Add defines.
7021         (TVNRET_*): Add defines.
7022         (TCIF_STATE): Add define.
7023         (NM_TOOLTIPSCREATED): Ditto.
7024         (CCM_*): Add defines.
7025         (INFOTIPSIZE): Add numeric value.
7026         (ODT_LISTVIEW): Ditto.
7027         (MCM_GETMAXTODAYWIDTH): Ditto.
7028         (MCHT_*): Add defines.
7029         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7030         (PGF_*): Add defines.
7031         (PGM_*): Ditto.
7032         (TBINSERTMARK): Add structure.
7033         (LPIMAGEINFO) Add typedef.
7034         (LPHDHITTESTINFO): Ditto.
7035         (NMLVGETINFOTIP[AW]: Add structures.
7036         (NMTBCUSTOMDRAW): Add structure.
7037         (TTTOOLINFOA_V*_SIZE): Add macros.
7038         (TTTOOLINFOW_V1_SIZE): Ditto.
7039         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7040         (LVITEM[AW]: Ditto.
7041         (TCITEM[AW]):Ditto.
7042         (CCSIZEOF_STRUCT): Correct macro definition.
7043         (ListView_*): Add new macros.
7044         (HIMAGELIST): Correct typedef.
7045         (HTREEITEM): Ditto.
7046
7047 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7048
7049         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7050         TCHITTESTINFO for backward compatibility.
7051         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7052         compatibility.
7053
7054 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7055
7056         * include/objidl.h (COBJMACROS): Define macros only
7057         if using C interace.
7058         * include/unknwn.h: Ditto.
7059         * include/comcat.h: Ditto.
7060
7061 2003-08-24  Filip Navara  <xnavara@volny.cz>
7062
7063         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7064         PSH_NOCONTEXTHELP): Define.
7065         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7066         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7067         (LPDLGTEMPLATE[AW]): Add typedefs.
7068
7069 2003-08-22  Filip Navara  <xnavara@volny.cz>
7070
7071         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7072         Add prototypes.
7073         BuildImpersonateTrustee[AW]): Add prototypes.
7074         GetMultipleTrustee[AW]): Add prototypes.
7075         GetMultipleTrusteeOperation[AW]): Add prototypes.
7076
7077 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7078
7079         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7080
7081 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7082
7083         * include/shlobj.h (IPersistFolder::GetClassID):
7084         Correct declaration.
7085         (CMF_*) Add missing defines.
7086
7087 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7088
7089         * include/winuser.h (DC_BUTTONS): Add define.
7090
7091 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7092
7093         * include/winuser.h (DC_GRADIENT): Add define.
7094
7095 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7096
7097         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7098         older TBSTYLE_* constants.
7099
7100 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7101
7102         * include/commctrl.h (TB_*) Group defines together.
7103
7104 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7105
7106         * include/winuser.h (ICON_SMALL2): Define.
7107         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7108         Define.
7109         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7110         (IDragSourceHelper) Define interface.
7111         (IDropTargetHelper): Likewise.
7112         (IExtractIcon): Unicode it.
7113         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7114         OnStateChange and IncludeObject methods.
7115
7116 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7117
7118         * include/commctrl.h (TreeView_GetScrollTime,
7119         TreeView_SetScrollTime): Define macros.
7120         * include/winuser.h (GetShellWindow): Add prototype.
7121         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7122
7123 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7124
7125         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7126         IID_IDragSourceHelper): Declare.
7127         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7128         IID_IDragSourceHelper): Define.
7129
7130 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7131
7132         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7133         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7134         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7135
7136 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7137
7138         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7139         CGID_ShellServiceObject): Remove definitions.
7140         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7141
7142 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7143
7144         * include/shlobj.h (SHELLSTATE): Add structure.
7145         (SHGetSetSettings): Add prototype.
7146         (SHGetSettings): Add prototype.
7147         * lib/shell32.def (SHGetSetSettings): Add stub.
7148
7149 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7150
7151         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7152         (Header_OrderToIndex): Add macro.
7153         (Header_GetOrderArray): Add macro.
7154
7155         * include/commdlg.h (FR_MATCHALEFHAMZA,
7156         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7157
7158 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7159
7160         * include/commctrl.h (TVM_GETSCROLLTIME,
7161         TVM_SETSCROLLTIME): Add defines.
7162
7163 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7164
7165         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7166         (SHGetInstanceExplorer): Correct return type.
7167         (SHGetFolderPath[AW]): Likewise.
7168         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7169         for report.
7170
7171 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7172
7173         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7174
7175 2003-08-01  Filip Navara  <xnavara@volny.cz>
7176
7177         * include/winldap.h: New file.
7178         * include/ntldap.h: New file.
7179         * include/winber.h: New file.
7180         * lib/winldap32.def: New file.
7181
7182 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7183
7184         * include/ddk/atm.h: Remove stray '.';
7185
7186 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7187
7188         * include/ddk/winddk.h: Remove trailing ';' from macros,
7189         throughout. Add () around defines with cast returns, throughout.
7190
7191 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7192
7193         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7194         (SFGAOF, SHGDNF): Add typedef's.
7195         (SHCONTF): Extend enum.
7196
7197 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7198
7199         * include/shellapi.h: Include all structs within pshpack2.h/
7200         poppack.h block.
7201
7202 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7203
7204         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7205         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7206         _WIN32_WINDOWS, not WINVER.
7207         (AllowSetForegroundWindow,LockSetForegroundWindow,
7208         SetLayeredWindowAttributes): Likewise.
7209         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7210         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7211         Add stubs.
7212
7213 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7214
7215         * include/objidl.h (IMalloc): Fix typo.
7216
7217 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7218
7219         * include/dkk/ntifs.h: Fix typo in guard for
7220         #pragma GCC system_header.
7221
7222 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7223
7224         * include/objidl.h (PropVariant): Add CHAR cVal field
7225         to union.
7226         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7227         FMTID_UserDefinedProperties): Declare.
7228
7229 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7230
7231         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7232
7233 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7234
7235         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7236         DUPLICATE_SAME_ACCESS): Remove defines.
7237         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7238         ddk/ntapi.h defines.
7239         (SEM_*) : Likewise.
7240         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7241         ddk/ntifs.h defines.
7242         (FILE_*): Likewise.
7243         (MEM_IMAGE, SEC_*): Likewise.
7244         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7245         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7246         (TOKEN_*): Sync with ddk/ntifs.h defines.
7247         * include/ddk/ntapi.h: Add comments noting definitions in
7248         winbase.h.
7249         * include/ddk/ntifs.h: Add comments noting definitions in
7250         winnt.h.
7251         * include/ddk/winddk.h: Add comments noting definitions in
7252         winnt.h.
7253
7254 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7255
7256         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7257         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7258
7259 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7260
7261         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7262
7263 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7264
7265         Clean up warnings in ddk.
7266
7267         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7268         conditional on  __cplusplus.
7269         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7270         defines, throughout.
7271         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7272         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7273         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7274         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7275         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7276         defines, throughout.
7277         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7278         defines, throughout. Remove trailing semicolon from *_S 'structure'
7279         macro expansion, throughout. Remove trailing semicolon from
7280         DECLARE_UNKNOWN_STRUCT macro expansion.
7281         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7282         _ANONYMOUS_UNION.
7283         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7284         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7285         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7286         Add _ANONYMOUS_UNION.
7287         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7288         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7289         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7290         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7291         match proto in ntapi.h.
7292         (ZwSetInformationObject): Likewise.
7293         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7294         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7295         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7296         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7297         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7298         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7299         last comma.
7300         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7301         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7302         trailing semicolon when expanding macro.
7303         (GENERAL_LOOKASIDE_S): Likewise.
7304         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7305         Change inline to __inline, throughout.
7306         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7307
7308 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7309
7310         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7311         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7312         KPRIORITY.
7313         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7314         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7315         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7316         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7317         to anonymous structs.
7318
7319 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7320
7321         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7322
7323         * include/winuser.h (mouse_event): Correct type of fifth param,
7324         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7325
7326 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7327
7328         * include/winnt.h (HANDLE): Define based on STRICT filter.
7329         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7330         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7331
7332 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7333
7334         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7335         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7336         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7337         for report.
7338
7339 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7340
7341         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7342
7343 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7344
7345         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7346         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7347         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7348         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7349         (TPM_RECURSE): Add guard for Win98/Win2K.
7350         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7351
7352 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7353
7354         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7355         avoid user namespace conflicts.
7356
7357 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7358
7359         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7360         _IE3, _IE4, _IE5, _IE6): Add definitions.
7361         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7362         >= Win98.
7363         Change existing guards to use the above macro names as appropriate.
7364         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7365         Note: Also added to mingw/include/_mingw.h.
7366
7367 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7368
7369         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7370         PathFindSuffixArrayA, PathFindSuffixArrayW,
7371         PathFindExtensionA, PathFindExtensionW, StrStrW
7372         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7373         explicit type.
7374
7375 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7376
7377         * include/richedit.h (PARAFORMAT2): Add definition.
7378         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7379         missing constants.
7380
7381 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7382
7383         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7384         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7385         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7386         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7387
7388 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7389
7390         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7391         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7392         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7393         that these are obsolete no-ops.
7394
7395 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7396
7397         * include/winbase.h (GetProcessWorkingSetSize,
7398         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7399         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7400         Correct prototypes.
7401
7402 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7403
7404         * include/winuser.h (TPM_RECURSE): Add define.
7405
7406 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7407
7408         * lib/test.c: #include <powrprof.h>.
7409
7410 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7411
7412         * include/powerprof.h: New file.
7413         * lib/powerprof.def: New file.
7414
7415 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7416
7417         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7418         protection.
7419
7420 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7421
7422         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7423         hInstance members to HINSTANCE.
7424         Thanks to: Brenden T. <brenden@rcsis.com>
7425
7426 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7427
7428         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7429         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7430
7431 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7432
7433         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7434         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7435         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7436         Remove.
7437         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7438
7439 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7440
7441         * lib/oleacc.def: New file.
7442         * include/winable.h: New file.
7443         * include/oleacc.h: Add extern "C" guard.
7444         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7445         (AccessibleChildren, AccessibleObjectFromEvent,
7446         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7447         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7448         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7449         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7450         * include/winuser.h (NotifyWinEvent): Add prototype.
7451         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7452         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7453         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7454         OBJID_SOUND): Move from here to...
7455         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7456         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7457         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7458         OBJID_SOUND): Here, as per documentation.
7459         * lib/test.c: Include winable.h.
7460         * lib/user32.def (NotifyWinEvent): Add missing export.
7461
7462 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7463
7464         * include/winbase.h (HeapCompact): Correct prototype.
7465         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7466         SLIST_HEADER): Add.
7467
7468 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7469
7470         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7471
7472 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7473
7474         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7475
7476 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7477
7478         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7479         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7480
7481 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7482
7483         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7484         lpGlyphs field to LPWSTR.
7485
7486 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7487
7488         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7489         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7490         (PP_*): Add defines.
7491         (CryptContextAddRef): Add prototype.
7492         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7493
7494 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7495
7496         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7497
7498 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7499
7500         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7501         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7502         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7503         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7504         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7505         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7506         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7507         readability.
7508         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7509         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7510
7511 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7512
7513         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7514         Unname anonymous unions if NONAMELESSUNION not defined.
7515
7516 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7517
7518         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7519
7520 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7521
7522         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7523         anonymous unions as GCC extension.
7524
7525 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7526
7527         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7528         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7529         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7530         commented out).
7531         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7532
7533 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7534
7535         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7536         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7537         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7538
7539 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7540
7541         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7542         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7543         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7544         IProvideClassInfo2,IConnectionPointContainer,
7545         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7546         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7547         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7548         IPicture,IPictureDisp): Move from here to...
7549         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7550         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7551         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7552         IProvideClassInfo2,IConnectionPointContainer,
7553         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7554         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7555         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7556         IPicture,IPictureDisp): Here, as per documentation.
7557
7558 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7559
7560         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7561         * include/winbase.h (TerminateJobObject,
7562         AssignProcessToJobObject): Likewise.
7563         * include/servprov.h: New header.
7564         * lib/test.c: Include servprov.h.
7565
7566 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7567
7568         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7569         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7570         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7571         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7572         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7573         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7574
7575 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7576
7577         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7578         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7579         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7580
7581 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7582
7583         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7584         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7585         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7586         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7587         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7588         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7589         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7590
7591 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7592
7593         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7594
7595 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7596
7597         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7598         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7599
7600 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7601
7602         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7603         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7604         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7605
7606 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7607
7608         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7609
7610 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7611
7612         * include/oaidl.h (ITypeMarshal): Add interface.
7613
7614 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7615
7616         * include/winioctl.h: Clean up formatting.
7617         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7618         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7619         (DISK_CACHE_INFORMATION): Likewise.
7620         (DISK_DETECTION_INFO): Likewise.
7621         (DISK_PARTITION_INFO): Likewise.
7622         (PARTITION_INFORMATION_EX): Likewise.
7623         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7624
7625 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7626
7627         * include/winbase.h (DeleteVolumeMountPoint[AW],
7628         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7629         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7630         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7631         SetVolumeMountPoint[AW]): Add prototypes.
7632         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7633         IOCTL_DISK_SET_PARTITION_INFO_EX,
7634         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7635         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7636         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7637         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7638         IOCTL_DISK_GET_CACHE_INFORMATION,
7639         IOCTL_DISK_SET_CACHE_INFORMATION,
7640         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7641         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7642         FSCTL_MOVE_FILE): Define.
7643         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7644         DISK_CACHE_INFORMATION,
7645         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7646         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7647         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7648         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7649         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7650         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7651         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7652         MOVE_FILE_DATA,
7653         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7654         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7655         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7656         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7657         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7658         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7659         F3_240M_512, and F3_32M_512.
7660         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7661         stubs.
7662
7663 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7664
7665         * include/wingdi.h (DM_SPECVERSION): Define.
7666         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7667         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7668         appropriate _WIN32_WINNT values.
7669
7670 2003-04-15  Chris January  <chris@atomice.net>
7671
7672         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7673         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7674
7675 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7676
7677         * include/winuser.h (VK_*): Add missing defines.
7678
7679 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7680
7681         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7682         documented typedefs for struct _NM_UPDOWN.
7683         Add defines for backward comapatibility.
7684         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7685         * include/wininet.h (IRF_*): Add missing defines.
7686
7687 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7688
7689         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7690
7691 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7692
7693         * include/sspi.h: Add comment for FreeCredentialsHandle.
7694
7695 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7696
7697         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7698
7699 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7700
7701         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7702
7703 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7704
7705         * lib/uuid.c (IID_IHTML*): Move definitions to...
7706         * lib/mshtml-uuid.c: New file.
7707         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7708
7709 2003-03-30  Michael Sazonov  <traip@comset.net>
7710
7711         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7712         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7713         IHTMLImgElement): Add interface definitions.
7714
7715 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7716
7717         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7718         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7719         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7720         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7721         RC_INVOKED guard.
7722         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7723         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7724
7725 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7726
7727         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7728
7729 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7730
7731         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7732         TranslateName[AW]): Add prototypes.
7733         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7734         TranslateName[AW]): Add stubs.
7735         * lib/test.c: Include secext.h.
7736
7737 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7738
7739         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7740         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7741         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7742         _SpinLock.
7743
7744 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7745
7746         * include/w32api.h: Increment version to 2.4.
7747         * Makefile.in: Ditto.
7748
7749 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7750
7751         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7752         Move structure from here...
7753         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7754
7755         * include/ddk/ntapi.h (JOBOBJECT_*):
7756         Remove structures and enums definitions.
7757         (JOB_OBJECT*): Move defines from here...
7758         * include/winnt.h (JOB_OBJECT* ): To here.
7759
7760         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
7761         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7762         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7763         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7764         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7765         SYSTEM_POWER_CAPABILITIES): Move enums, structures
7766         and associated defines from here ...
7767         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
7768         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7769         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7770         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7771         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7772         SYSTEM_POWER_CAPABILITIES):To here.
7773
7774         * include/ddk/winddk.h (DEVICE_POWER_STATE,
7775         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
7776         from here...
7777         * include/winnt.h (DEVICE_POWER_STATE,
7778         SYSTEM_POWER_STATE, POWER_ACTION): To here.
7779
7780 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
7781
7782         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
7783         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
7784         (NdisUpdateSharedMemory): Likewise.
7785         (NdisMFreeSharedMemory: Likewise.
7786         (NdisMMapIoSpace: Likewise.
7787
7788 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
7789
7790         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
7791         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
7792         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
7793
7794 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
7795
7796         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
7797         (EnumResourceNames[AW]): Ditto.
7798         (EnumResourceTypes[AW]): Ditto.
7799         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
7800
7801 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
7802
7803         * include/winuser.h (SendInput): Add prototype.
7804         * lib/user32.def (SendInput): Add stub.
7805
7806 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
7807
7808         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
7809         (FSCTL_DELETE_REPARSE_POINT): Likewise.
7810
7811 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
7812
7813         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
7814         (JOBOBJECT_*): Define corresponding structures.
7815
7816 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
7817
7818         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
7819         typedef.
7820
7821 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
7822
7823         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
7824         (Process32{First,Next}{,W}): Ditto.
7825         (Thread32{First,Next}): Ditto.
7826         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
7827
7828 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
7829
7830         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
7831         Thanks to Jim Barton <jmbarton@users.sf.net>.
7832
7833 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
7834
7835         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
7836         member SectionAlignment.
7837
7838 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
7839
7840         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
7841         warnings.
7842         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
7843         * Makefile.in (bindist): Correct process.
7844         * lib/Makefile.in (install): Ditto.
7845         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
7846
7847 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
7848
7849         * include/rasdlg.h: New file.
7850         * lib/rasdlg.def: New file.
7851         * lib/test.c: Include rasdlg.h.
7852
7853 2003-03-06  Christopher January  <chris@atomice.net>
7854
7855         * include/winbase.h (FindFirstVolume): Add declaration.
7856         (FindNextVolume): Add declaration.
7857         (FindVolumeClose): Add declaration.
7858         (GetSystemTimes): Add declaration.
7859         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
7860
7861 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
7862
7863         *lib/kernel32.def (GetSystemTimes): Add stub.
7864
7865 2003-03-04  Heiko Gerdau  <hg@technosis.de>
7866
7867         * oleidl.h (IOleObject): Correct GetUserType prototype.
7868         (IViewObject2): Correct GetExtent prototype.
7869         * olectl.h (DISPIP_): Add new defines
7870         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
7871
7872 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7873
7874         * include/olectl.h (OleLoadPictureEx) Add prototype.
7875         (OleLoadPictureFile): Ditto.
7876         (OleLoadPictureFileEx): Ditto.
7877         (OleLoadPicturePath): Ditto.
7878         (OleSavePictureFile): Ditto.
7879
7880 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7881
7882         * include/objbase.h (CoAddRefServerProcess): Add prototype.
7883         (CoAddReleaseServerProcess): Ditto.
7884         (CoResumeClassObjects): Ditto.
7885         (CoSuspendClassObjects): Ditto.
7886         * include/oleauto.h (V_I1): Define.
7887         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
7888
7889 2003-03-01  Heiko Gerdau  <hg@technosis.de>
7890
7891         * include/oleidl.h (USERCLASSTYPE): Add enum.
7892         * include/ocidl.h (IObjectWithSite): Add interface.
7893
7894 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
7895
7896         Fixup UNICODE thinko in 2003-02-22 patch.
7897         * include/wingdi.h (AddFontMemResourceEx): Add.
7898         (RemoveFontMemResourceEx): Ditto.
7899         (AddFontMemResourceEx[AW]): Remove.
7900         (RemoveFontMemResourceEx[AW]): Ditto
7901         * lib/gdi32.def: (AddFontResourceEx): Add.
7902         (RemoveFontMemResourceEx): Ditto.
7903         (AddFontMemResourceEx[AW]): Remove.
7904         (RemoveFontResourceEx[AW]): Ditto.
7905
7906 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
7907
7908         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
7909         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
7910
7911 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
7912
7913         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
7914         (RemoveFontMemResourceEx[AW]): Ditto
7915         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
7916         (RemoveFontMemResourceEx[AW]): Ditto.
7917
7918 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
7919
7920         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
7921         (NtCurrentTeb): Remove.
7922
7923 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7924
7925         * include/wsahelp.h: Remove ';' after closing
7926         #ifdef __cplusplus brace.
7927         * include/ws2spi.h: Likewise.
7928
7929 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7930
7931         * include/winbase.h (MEMORYSTATUSEX): Add structure.
7932         (GlobalMemoryStatusEx): Add prototype.
7933         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
7934
7935 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
7936
7937         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
7938
7939 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
7940
7941         * include/wingdi.h (AddFontResourceEx[AW]): Add.
7942         (RemoveFontResourceEx[AW]): Ditto
7943         (FR_PRIVATE): Define.
7944         (FR_NOT_ENUM): Define.
7945         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
7946         (RemoveFontResourceEx[AW]): Ditto.
7947
7948 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
7949
7950         * include/w32api.h: Increment version to 2.3.
7951         * Makefile.in: Ditto.
7952
7953 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
7954
7955         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
7956         (Ke386QueryToAccessMap): Ditto.
7957         (Ke386SetIoAccessMap): Ditto.
7958         Thanks to Marcel Telka <telka@users.sf.net>
7959         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
7960         * include/security.h: Include secext.h.
7961         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
7962         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
7963         * include/GL/gl.h: Remove include of glext.h.
7964         Thanks to Greg Couch <gregcouch@users.sf.net>
7965
7966 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
7967
7968         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
7969         using GUID_DEFINED instead.
7970         * include/sqltypes.h: Ditto.
7971         * include/winnt.h: Ditto.
7972         * include/ddk/scsiwmi.h: Ditto.
7973
7974 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
7975
7976         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
7977         prototypes.
7978         Thanks to: John Dallaway  <jld@ecoscentric.com>.
7979
7980 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
7981
7982         * include/commctrl.h (TCM_*): Add missing defines.
7983
7984 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
7985             Danny Smith  <dannysmith@users.sourceforge.net>
7986
7987         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
7988         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
7989         for (_WIN32_IE >= 0x0400).
7990         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
7991         fields for (_WIN32_IE >= 0x0400).
7992
7993 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
7994
7995         * include/winbase.h (CreateFiber): Change first parameter
7996         to SIZE_T.
7997         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
7998         if (_WIN32_WINNT >= 0x0500).
7999
8000 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8001
8002         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8003         Add missing typedefs.
8004         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8005         prototypes.
8006         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8007
8008 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8009
8010         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8011         define.
8012         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8013
8014 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8015
8016         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8017         define.
8018         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8019         definition.
8020         (WAIT_FAILED): Cast to DWORD.
8021         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8022         definition.
8023
8024 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8025
8026         * include/winerror.h: Protect against multiple
8027         definition of WSA* error codes.
8028         * include/winsock.h: Likewise.
8029         * include/winsock2.h: Likewise.
8030
8031 2003-01-27  Bang Dong-Heui
8032             Bang Jun-Young  <junyoung@netbsd.org>
8033
8034         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8035         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8036         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8037
8038
8039 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8040
8041         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8042         (WINVER >= 0x501).
8043
8044 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8045
8046         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8047         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8048         fields for (WINVER >= 0x501).
8049
8050 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8051
8052         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8053         Add stubs.
8054         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8055         options.
8056
8057 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8058
8059         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8060         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8061
8062 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8063
8064         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8065         SE_REGISTRY_WOW64_32KEY.
8066         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8067
8068 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8069
8070         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8071         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8072         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8073
8074 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8075
8076         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8077
8078 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8079
8080         * lib/dxguid.c: Don't #include <objbase.h>.
8081         * include/unknwn.h: Partially revert change of 2002-12-26.
8082         Don't include <ole2.h>.
8083
8084 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8085
8086         * lib/dinput.c: Don't #include <objbase.h>.
8087
8088 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8089
8090         * include/windows.h (ole2.h):Do #include for
8091         __WATCOMC__.
8092
8093 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8094
8095         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8096         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8097         definition.
8098         (WHEEL_PAGESCROLL): Likewise.
8099         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8100
8101 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8102
8103         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8104         (WHEEL_PAGESCROLL): Add define.
8105
8106 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8107
8108         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8109         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8110         compatability. Add RECT field. Add UNICODE mappings for new
8111         names.
8112         (tagNMREBARCHEVRON): Add struct and typedefs for
8113         _WIN32_IE >= 0x0500.
8114
8115 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8116
8117         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8118         (LVHITTESTINFO): Likewise.
8119
8120         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8121         (GRADIENT_RECT): Likewise.
8122
8123 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8124
8125         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8126         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8127         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8128         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8129         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8130         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8131         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8132         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8133         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8134         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8135         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8136         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8137         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8138         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8139         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8140         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8141         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8142         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8143         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8144         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8145         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8146         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8147         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8148         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8149         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8150         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8151         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8152         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8153         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8154         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8155         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8156         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8157         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8158         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8159         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8160         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8161         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8162         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8163         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8164         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8165         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8166         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8167         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8168         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8169         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8170         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8171         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8172         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8173         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8174         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8175         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8176         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8177         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8178         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8179         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8180         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8181         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8182         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8183         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8184         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8185         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8186         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8187         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8188         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8189         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8190         Add missing error codes.
8191
8192 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8193
8194         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8195         asm code.
8196         (GetFiberData): Likewise.
8197
8198 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8199
8200         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8201         asm code.
8202         (GetFiberData): Likewise.
8203
8204 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8205
8206         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8207         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8208         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8209         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8210         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8211         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8212         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8213         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8214         error codes.
8215         Re-sort codes.
8216
8217 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8218
8219         * include/winspool.h (PRINTER_INFO_6): Add.
8220         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8221
8222 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8223
8224         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8225
8226         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8227         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8228         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8229         Add stubs.
8230
8231 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8232
8233         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8234         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8235
8236 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8237
8238         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8239
8240 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8241
8242         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8243         VIETNAMESE_CHARSET): Remove duplicate defines.
8244         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8245
8246 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8247
8248         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8249         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8250
8251 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8252
8253         * include/unknwn.h: Include windows.h and ole2.h before header
8254         guard to avoid circular inclusion of COM headers.
8255
8256 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8257
8258         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8259         ReuseDDElParam): Use __WIN64 compatible typedefs.
8260
8261 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8262
8263         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8264         lpInheritProperty member const.
8265         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8266         const.
8267
8268 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8269
8270         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8271         COM_NO_WINDOWS_H.
8272         * include/unknwn.h: Ditto.
8273
8274 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8275
8276         * include/imm.h (ImmGetCompositionFont[AW],
8277         ImmSetCompositionFont[AW]): Add NOGDI guard.
8278
8279 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8280
8281         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8282         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8283         before using.
8284         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8285         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8286         definition.
8287         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8288         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8289         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8290         definition.
8291         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8292         (LPCGUID): Likewise.
8293         * include/ddk/tdi.h: Close "Listen flags" comment.
8294         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8295         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8296         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8297         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8298         * include/ddk/win2k.h: Likewise.
8299         * include/ddk/winddi.h: Likewise.
8300         * include/ddk/winddk.h: Likewise.
8301         * include/ddk/winnt4.h: Likewise.
8302         * include/ddk/ws2san.h: Likewise.
8303         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8304         * include/ddk/video.h: Don't process rest of file ifdef
8305         __WINDDI_H.
8306         * include/ddk/winddi.h: Don't process rest of file ifdef
8307         __VIDEO_H.
8308         * include/ddk/usb.h: Don't process rest of file ifdef
8309         __USBDI_H.
8310         * include/ddk/usbdi.h: Don't process rest of file ifdef
8311         __USB_H.
8312         * include/ddk/usbcamdi.h: Don't process rest of file if
8313         !defined(__USB_H) && !defined(__USBDI_H)
8314
8315 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8316
8317         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8318         prototypes.
8319         * include/winuser.h (GetAncestor) Add prototype.
8320         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8321         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8322         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8323         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8324         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8325         defines.
8326         * lib/user32.def (GetAncestor@8): Add stub.
8327
8328 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8329
8330         * include/windows.h: Guard inclusion of wingdi.h,
8331         commdlg.h, winspool.h, ole2.h with NOGDI.
8332         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8333         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8334         Guard with NOGDI.
8335
8336 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8337
8338         * include/oleacc.h (SELFLAG_*): Change to enum.
8339
8340 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8341
8342         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8343         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8344
8345 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8346
8347         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8348         to UINT.
8349         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8350
8351 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8352
8353         * include/winuser.h (AllowSetForegroundWindow,
8354         LockSetForegroundWindow): Add prototypes.
8355         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8356         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8357         * lib/winuser.def (AllowSetForegroundWindow,
8358         LockSetForegroundWindow): Add stubs.
8359
8360 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8361
8362         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8363         UNICODE mappings.
8364         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8365         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8366         compatability. Add lParam field. Add UNICODE mappings for new
8367         names.
8368
8369 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8370
8371         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8372         Wrap with pshpack2.h/poppack.h to correct alignment.
8373
8374 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8375
8376         * include/commctrl.h (LVBKIF_*): Add defines.
8377         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8378         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8379         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8380         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8381         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8382         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8383         (ListView_GetBkImage): Add define.
8384         (ListView_SetBkImage): Add define.
8385         (LVBKIMAGE): Add structures and typedefs.
8386
8387 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8388
8389         * include/w32api.h: Increment to version 2.2
8390         * Makefile.in: Ditto.
8391
8392 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8393
8394         * lib/Makefile.in (dist, install): Correct the install destinations.
8395         * lib/ddk/Makefile.in (dist, install): Ditto.
8396
8397 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8398
8399         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8400         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8401         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8402         in definitions.
8403         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8404         IID_IOleControlSite89): Remove.
8405
8406 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8407
8408         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8409         (IID_IStdMarshalInfo): Ditto.
8410
8411 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8412
8413         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8414         (IID_IPersistStorage): Ditto.
8415
8416 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8417
8418         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8419         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8420         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8421         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8422         Correct definitions.
8423
8424 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8425
8426         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8427         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8428         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8429         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8430         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8431         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8432         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8433         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8434         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8435         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8436         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8437         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8438         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8439         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8440         xfilter.h): Change comment to refer w32api package, not MinGW.
8441
8442 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8443
8444         * include/ddk/ntddk.h: Include winnt.h as system header.
8445
8446 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8447
8448         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8449         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8450         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8451         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8452         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8453         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8454         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8455         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8456         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8457         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8458         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8459         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8460         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8461         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8462         xfilter.h): Fix typo in disclaimer comment.
8463
8464 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8465
8466         * include/exdisp.h: Include oaidl.h as system header.
8467
8468 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8469
8470         * include/w32api.h (__W32API_VERSION): Fix.
8471
8472 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8473
8474         * lib/uuid.c (IID_ICatInformation): Correct definition.
8475
8476 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8477
8478         * include/oleauto.h (DeregisterTypeLib): Remove.
8479         (UnRegisterTypeLib): Add prototype.
8480
8481 2002-11-07  Christopher January  <chris@atomice.net>
8482
8483         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8484
8485 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8486
8487         * include/winnt.h (VerSetConditionMask): Add prototype.
8488         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8489
8490 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8491
8492         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8493         definitions and ANSI/UNICODE mappings.
8494         Cleanup whitespace.
8495
8496 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8497
8498         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8499         * configure.in: Ditto.
8500         * lib/Makefile.in: Ditto.
8501         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8502         autoconf-2.53.
8503         * configure: Regenerate.
8504
8505 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8506
8507         * include/windows.h: Don't include basetyps.h.
8508         * include/objfwd.h: Do include basetyps.h.
8509
8510 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8511
8512         * include/objbase.h: Include rpc.h and rpcndr.h
8513         before header guard.
8514
8515 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8516
8517         * include/olectl.h (PROPPAGEINFO): Change type of
8518         field cb to ULONG.
8519
8520 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8521
8522         * lib/ntdll.def (RtlAcquireResourceExclusive,
8523         RtlAcquireResourceShared, RtlDeleteResource,
8524         RtlInitializeResource, RtlReleaseResource,
8525         RtlTimeToSecondsSince1970) : Added missing exports.
8526
8527 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8528
8529         * include/oleacc.h: New file.
8530         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8531         (OBJID_*) Add defines.
8532         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8533         * lib/test.c: Include oleacc.h.
8534
8535 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8536
8537         * include/ddk: New subdir.
8538         * lib/ddk: Ditto.
8539         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8540         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8541         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8542         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8543         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8544         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8545         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8546         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8547         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8548         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8549         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8550         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8551         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8552         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8553         xfilter.h): New files.
8554         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8555         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8556         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8557         win32k.def): Ditto.
8558
8559 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8560
8561         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8562         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8563         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8564         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8565         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8566         RtlAddAccessAllowedAce, RtlCreateAcl,
8567         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8568         RtlGetAce, RtlGetControlSecurityDescriptor,
8569         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8570         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8571         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8572         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8573         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8574         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8575         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8576         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8577         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8578         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8579         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8580         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8581         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8582
8583 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8584
8585         *include/windef.h (WPARAM): Update typedef.
8586         (LPARAM): Ditto.
8587         (LRESULT): Ditto.
8588
8589 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8590
8591         * include/shlobj.h (CSIDL_*): Add defines.
8592
8593 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8594
8595         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8596         has been included first.
8597
8598 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8599
8600         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8601         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8602         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8603
8604 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8605
8606         * include/winuser.h (DS_SHELLFONT): Define.
8607
8608 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8609
8610         * include/winnt.h (VER_SUITE_BLADE): Define.
8611
8612 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8613
8614         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8615         Add _WIN32_IE guard. Correct prototype for wide version.
8616         (SHGetFolderPath): Add comment on shfolder.dll.
8617         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8618         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8619
8620 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8621
8622         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8623         * lib/shfolder.def: New file.
8624
8625 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8626
8627         * include/winsock.h (timeval): Guard struct and associated
8628         macros with _TIMEVAL_DEFINED.
8629         * include/winsock2.h (timeval): Likewise.
8630
8631 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8632
8633         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8634         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8635         SHCreateShellItem,SHEmptyRecycleBin[AW],
8636         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8637         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8638         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8639         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8640         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8641         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8642         SHLoadNonloadedIconOverlayIdentifiers,
8643         SHOpenFolderAndSelectItems,SHParseDisplayName,
8644         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8645         SHSetLocalizedName,SHSetUnreadMailCountW,
8646         SHUpdateRecycleBinIcon: Add missing stubs.
8647
8648 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8649
8650         * include/windef.h (WINVER): Add documentation.
8651         (_WIN32_WINNT): Ditto.
8652         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8653
8654 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8655
8656         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8657
8658 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8659
8660         * include/winbase.h (AllocateUserPhysicalPages,
8661         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8662         FreeUserPhysicalPages): Add prototypes.
8663         * lib/kernel32.def: Add function stubs for above.
8664
8665 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8666
8667         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8668         Add WINVER guards for dialog box command id defines.
8669
8670 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8671
8672         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8673
8674 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8675
8676         * include/wincon.h: Define GetConsoleWindow(void).
8677
8678 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8679
8680         * include/w32api.h: Increment version to 2.1.
8681         * Makefile.in: Ditto.
8682
8683 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8684
8685         * include/winsock2.h (SOCKET_ADDRESS): Define if
8686         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8687         (CSADDR_INFO): Ditto.
8688         (nspapi.h) : Don't include. Removed FIXME comment.
8689         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8690         __CSADDR_T_DEFINED is not defined.
8691         (CSADDR_INFO): Ditto.
8692         (BLOB): Add structure and typedef if not already defined.
8693         (NS_*): Add defines.
8694         (SERVICE_*): Ditto.
8695         (SERVICE_ADDRESS): Add structure and typedefs.
8696         (SERVICE_ADDRESSES): Ditto.
8697         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8698         (LPSERVICE_ASYNC_INFO): Add typedef.
8699         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8700         mappings.
8701         * include/wsipx.h: New file.
8702         * include/svcguid.h: New file.
8703         * lib/test.c: Include wspix.h and svcguid.h.
8704
8705 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8706
8707         * include/wsahelp.h: New file.
8708         * lib/test.c: Include wsahelp.h.
8709
8710 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8711
8712         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8713         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8714
8715 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8716
8717         * include/ws2spi.h: Modify comment about being part of
8718         mingw32 package.
8719         (winsock2.h): Change "" to <>.
8720
8721 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8722
8723         * include/ws2spi.h: New file.
8724         * lib/test.c: Include ws2spi.h.
8725
8726 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8727
8728         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8729         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8730         functions.
8731
8732 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8733
8734         * include/winuser.h (CURSOR_SHOWING) Add define.
8735         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8736
8737 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8738
8739         * include/winerror.h: Cast OLE error codes to HRESULT.
8740         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8741
8742 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8743
8744         * include/wincrypt.h (ALG_*): Add defines.
8745         (CALG_*): Ditto.
8746         (CRYPT_*): Ditto.
8747         (PP_*): Ditto.
8748         (PROV_*): Ditto.
8749         (PRIVATEKEYBLOB): Add define.
8750
8751 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8752
8753         * include/shlobj.h (SHGetFolderPath): Add define.
8754         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8755         (SHGetFolderPath): Ditto.
8756
8757 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8758
8759         * include/commdlg.h: Don't include COM headers or use
8760         COM-dependent symbols if __OBJC__.
8761
8762 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8763
8764         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
8765         Add prototypes.
8766
8767 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
8768
8769         * include/shellapi.h (FOF_NOERRORUI): Add define.
8770
8771 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
8772
8773         * include/objidl.h (IEnumMoniker): Put 'interface' back.
8774
8775 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
8776
8777         * include/objidl.h (IEnumMoniker): Correct declaration.
8778
8779 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
8780
8781         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
8782
8783 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
8784
8785         * include/commctrl.h: Whitespace change.
8786
8787 2002-08-09  Lars Munch  <lars@segv.dk>
8788
8789         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
8790         struct name _TVHITTESTINFO and typedefs and add defines for
8791         backward compatability.
8792         (ListView_SetExtendedListViewStyleEx): Add macro.
8793
8794 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
8795
8796         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
8797         Add prototypes.
8798         * lib/msimg32.def: New file, with stubs for above.
8799
8800 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
8801
8802         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
8803         GetFileSizeEx, SetFilePointerEx): Add prototypes.
8804         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
8805         and UNICODE mappings.
8806
8807 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
8808
8809         * include/winbase.h (ReadFileScatter, WriteFileGather):
8810         Change second parameter to pointer.
8811
8812 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
8813
8814         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
8815         UNICODE mappings.
8816         * lib/wininet.def: Regenerate.
8817
8818 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
8819
8820         * include/windef.h (PVOID): Move typedef to...
8821         * include/winnt: ...here.
8822         (PVOID64): New typedef.
8823
8824         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
8825         * include/winbase.h (ReadFileScatter, WriteFileGather):
8826         Add prototypes.
8827
8828         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
8829         (PROCESSOR_INTEL_IA64): Add define.
8830
8831 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8832
8833         * include/oleidl.h (MK_ALT): Define.
8834
8835 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8836
8837         * include/exdisp.h: New file.
8838         * include/exdispid.h: New file.
8839         * include/mshtml.h: New file.
8840         * lib/test.c: #include exdisp.h and mshtml.h
8841         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
8842         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
8843         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
8844         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
8845         New GUIDs.
8846
8847 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8848
8849         * include/docobj.h: New file.
8850         * include/idispids.h: New file.
8851         * include/objidl.h (IID_IMoniker): Declare.
8852         * include/ocidl.h (READYSTATE): New enum.
8853         (IOleInPlaceSiteEx): New interface.
8854         * include/olectlid.h (IID_IEnumSTATSTG): New interface
8855         identifier.
8856         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
8857         IOleInPlaceSite): New interfaces.
8858         * lib/test.c: #include docobj.h,idispids.h,
8859
8860 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8861
8862         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
8863         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
8864
8865 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
8866
8867         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
8868         * include/commdlg.h: Likewise.
8869
8870 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
8871
8872         * include/oleauto.h (V_UNION): Correct definition for case of
8873         NONAMELESSUNION:
8874         (V_VT): Likewise.
8875
8876 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
8877
8878         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
8879         not bool, for C as well as C++.
8880
8881 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
8882
8883         * include/shlwapi.h: New file.
8884         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
8885         Victor Porton  <porton@narod.ru> for contributions.
8886         * lib/shlwapi.def: New file.
8887         * lib/test.c: #include shlwapi.h.
8888
8889 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
8890
8891         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
8892         character.
8893         * include/winsock2.h (struct sockaddr): Use __int64 instead of
8894         long long.
8895         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
8896         does not need external *Fiber library functions.
8897
8898 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8899
8900         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
8901         definition.
8902         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
8903         avoid compile error when already defined.
8904
8905 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
8906
8907         * include/winuser.h (WM_MENURBUTTONUP): Add define.
8908
8909 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8910
8911         * include/commdlg.h: Define CDN_* notification message constants
8912         as UINT.
8913
8914 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
8915
8916         * include/commctrl.h: Define notification message constants for
8917         NMHDR.code as UINT.
8918
8919 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
8920
8921         * include/ddeml.h (MH_*) Add defines.
8922         (MONHSZSTRUCT): Add structure and typedefs.
8923         (MONLINKSTRUCT): Ditto.
8924         (MONCONVSTRUCT): Ditto.
8925         (MONCBSTRUCT): Ditto.
8926         (MONERRSTRUCT): Ditto.
8927         (MONMSGSTRUCT): Ditto.
8928         * include/windef.h: Don't define __cdecl or _cdecl for
8929         __WATCOM__.
8930         Don't define _export or __export for __WATCOM__.
8931         * include/windows.h (imm.h): #include.
8932         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
8933
8934 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8935
8936         * include/wtypes.h: Remove duplicate #includes of rpc.h and
8937         rpcndr.h.
8938
8939 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
8940
8941         * include/winbase.h (OpenThread): Add prototype.
8942         * lib/kernel32.def (OpenThread): Add symbol.
8943
8944 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
8945
8946         * include/wtypes.h (HMETAFILEPICT): Add typedef.
8947
8948 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
8949
8950         * include/rpc.h: Conditionally include <windows.h> before
8951         header guard.
8952         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
8953         header guard.
8954
8955 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
8956
8957         * include/commctrl.h (WC_*): Remove some duplicate defines.
8958
8959 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
8960
8961         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
8962         UNICODE mappings.
8963         (IPM*): Add defines.
8964         (IPN_*): Add defines.
8965         (NMIPADDRESS): Add structure and typedefs.
8966         (MAKEIPADDRESS): Add macro.
8967         (MAKEIPRANGE): Add macro.
8968         (FIRST_IPADDRESS): Add macro.
8969         (SECOND_IPADDRESS): Add macro.
8970         (THIRD_IPADDRESS): Add macro.
8971         (FOURTH_IPADDRESS): Add macro.
8972
8973 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
8974
8975         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
8976
8977 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8978
8979         * include/winbase.h (WINBASEAPI): Don't define if prior
8980         definition.
8981
8982         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
8983         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
8984         PARTITION_UNIX): Add defines.
8985         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
8986         (IsRecognizedPartition): Also check for PARTITION_FAT32,
8987         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
8988         (IsContainerPartition): Add macro.
8989
8990 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
8991
8992         * include/commctrl.h: (CBEIF_*): Add defines.
8993         (CBEN_*): Add defines and UNICODE mappings
8994         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
8995         (CBEMAXSTRLEN): Add define.
8996         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
8997         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
8998         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
8999         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9000
9001 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9002
9003         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9004         union member _VARIANT_BOOL bool.
9005
9006 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9007
9008         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9009
9010 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9011
9012         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9013         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9014         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9015         Add typedefs.
9016         (CCHAR): Correct typedef.
9017         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9018         Add defines.
9019
9020 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9021
9022         * README.w32api: Correct spelling error.
9023
9024 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9025
9026         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9027         INPUT_HARDWARE): Add defines.
9028         (HDEVNOTIFY): Add typedef.
9029         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9030         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9031         typedefs.
9032         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9033         GetClassInfoEx[AW],GetKeyboardLayoutList,
9034         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9035         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9036         RegisterClassEx[AW]): Correct prototypes.
9037
9038 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9039
9040         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9041         prototypes.
9042         * include/winsvc.h (StartServiceW): Correct prototype.
9043         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9044         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9045         GetTickCount,InterlockedExchangeAdd,
9046         WritePrivateProfileStruct[AW]: Correct prototypes.
9047         (GetEnvironmentStrings): Correct mapping to
9048         GetEnvironmentStringsA.
9049         * include/winver.h (VerQueryValueA,VerQueryValueW):
9050         Correct prototypes.
9051         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9052         prototype.
9053         * include/winreg.h (RegQueryMultipleValues[AW],
9054         RegQueryValueEx[AW]):Correct prototypes.
9055         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9056         PPOLYTEXTW): Add typedefs.
9057         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9058         structures and typedefs.
9059         (MM_MAX_NUMAXES): Add define.
9060         (EnumFontsW,GetEnhMetaFilePixelFormat,
9061         wglGetLayerPaletteEntries): Correct prototypes.
9062         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9063         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9064         RPC_S_SEND_INCOMPLETE): Add defines.
9065
9066 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9067
9068         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9069         Add defines.
9070
9071 2002-06-16  Egor Duda  <deo@logos-m.ru>
9072
9073         * include/ntdll.h: New file.
9074         * lib/ntdll.def: Add NtShutdownSystem.
9075
9076 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9077
9078         * lib/dinput.def (DirectInputCreateEx): Add stub.
9079         * lib/ntdll.def: New file.
9080
9081 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9082
9083         * include/w32api.h: Change to version 2.0 to reflect the change
9084         in the license.
9085         * README: Renamed.
9086         * README.w32api: Renamed from README.  Modified license to remove
9087         the restriction of notifying the author based on the fact that the
9088         author is unreachable at the notified address.
9089         * Makefile.in (VERSION): Change to 2.0.
9090
9091 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9092
9093         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9094         * Makefile.in (bindist): Correct the MinGW distribution.
9095
9096 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9097
9098         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9099         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9100
9101 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9102
9103         * lib/test.c: #include comcat.h.
9104
9105 2002-06-13  John K. Hohm  <jhohm@acm.org>
9106
9107         * include/comcat.h: New file.
9108
9109 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9110
9111         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9112         (GETTEXTEX): Add structure definition.
9113
9114 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9115
9116         * include/windows.h (ole2.h): #include if !__OBJC__ and
9117         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9118
9119 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9120
9121         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9122
9123 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9124
9125         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9126         PACCESS_DENIED_ACE): Add typedefs.
9127
9128 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9129
9130         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9131
9132 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9133
9134         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9135
9136 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9137
9138         * include/windef.h: Fix typo in last change.
9139
9140 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9141
9142         * include/windef.h: Add no-op __try, __except, __finally
9143         defines from ...
9144         * include/excpt.h: Remove file.
9145         * include/windows.h: Don't include excpt.h.
9146
9147 2002-05-30  Christopher January  <chris@atomice.net>
9148
9149         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9150         Add missing typedefs.
9151
9152 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9153
9154         * include/w32api.h: Increment version to 1.5
9155         * Makefile.in: Ditto.
9156
9157
9158 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9159
9160         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9161         LP[W]STR with LPC[W]STR.
9162         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9163         Clean up whitespace.
9164
9165 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9166
9167         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9168
9169 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9170
9171         * Makefile.in: Increment VERSION to 1.4.
9172         (conf_prefix): New variable.
9173         (bindist): Modify target to use $(conf_prefix).
9174
9175 2002-05-20  Philip Aston  <philipa@mail.com>
9176
9177         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9178
9179 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9180
9181         * include/lmaccess.h: (NetAccess*, NetGroup*,
9182         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9183         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9184
9185 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9186
9187         * include/commctrl.h (ImageList_DragShowNolock): Remove
9188         conflicting redeclaration.
9189
9190 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9191
9192         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9193         STRICT and related defines to ...
9194         * include/windef.h: Here.
9195
9196 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9197
9198         * include/winsock2.h (int32): Remove typedef.
9199         (SERVICETYPE): Add typedef.
9200         (struct _flowspec):Revise struct definition,  Comment
9201         on types used for members.
9202
9203 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9204
9205         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9206         more defines added in earlier change.
9207         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9208
9209 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9210
9211         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9212         added in last change.
9213
9214 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9215
9216         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9217         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9218
9219 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9220
9221         * include/commctrl.h (SNDMSG): Define and use throughout
9222         in other macros instead of SendMessage.
9223         * include/commdlg.h (SNDMSG): Ditto.
9224
9225 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9226
9227         * include/GL/gl.h: New file.
9228         * include/GL/glext.h: Ditto.
9229         * include/GL/glu.h: Ditto.
9230
9231 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9232
9233         * include/w32api.h: Increment version.
9234         * Makefile.in: Ditto.
9235
9236 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9237
9238         * Makefile.in (bindist): Use * instead of . for file list for tar
9239         command.
9240
9241 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9242
9243         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9244
9245 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9246
9247         * include/objidl.h (IRunningObjectTable.Register): Correct
9248         prototype.
9249         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9250         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9251
9252 2002-03-31  Victor Porton  <porton@narod.ru>
9253
9254         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9255
9256 2002-03-29  David Robinow  <drobinow@yahoo.com>
9257
9258         * include/wingdi.h (SetPixelFormat): Correct prototype.
9259
9260 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9261
9262         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9263
9264 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9265
9266         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9267         Add defines.
9268
9269 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9270
9271         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9272         * include/shlobj.h (IContextMenu2): Put methods in right order.
9273         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9274         CINTERFACE before defining.
9275
9276 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9277
9278         * include/accctrl.h: Add #pragma GCC system_header
9279         if __GNUC__ >= 3.
9280         * include/aclapi.h: Same.
9281         * include/basetsd.h: Same.
9282         * include/basetyps.h: Same.
9283         * include/cderr.h: Same.
9284         * include/cguid.h: Same.
9285         * include/commctrl.h: Same.
9286         * include/commdlg.h: Same.
9287         * include/cpl.h: Same.
9288         * include/cplext.h: Same.
9289         * include/custcntl.h: Same.
9290         * include/dbt.h: Same.
9291         * include/dde.h: Same.
9292         * include/ddeml.h: Same.
9293         * include/dlgs.h: Same.
9294         * include/excpt.h: Same.
9295         * include/httpext.h: Same.
9296         * include/imagehlp.h: Same.
9297         * include/imm.h: Same.
9298         * include/initguid.h: Same.
9299         * include/intshcut.h: Same.
9300         * include/ipexport.h: Same.
9301         * include/iphlpapi.h: Same.
9302         * include/ipifcons.h: Same.
9303         * include/iprtrmib.h: Same.
9304         * include/iptypes.h: Same.
9305         * include/isguids.h: Same.
9306         * include/largeint.h: Same.
9307         * include/lm.h: Same.
9308         * include/lmaccess.h: Same.
9309         * include/lmalert.h: Same.
9310         * include/lmapibuf.h: Same.
9311         * include/lmat.h: Same.
9312         * include/lmaudit.h: Same.
9313         * include/lmbrowsr.h: Same.
9314         * include/lmchdev.h: Same.
9315         * include/lmconfig.h: Same.
9316         * include/lmcons.h: Same.
9317         * include/lmerr.h: Same.
9318         * include/lmerrlog.h: Same.
9319         * include/lmmsg.h: Same.
9320         * include/lmremutl.h: Same.
9321         * include/lmrepl.h: Same.
9322         * include/lmserver.h: Same.
9323         * include/lmshare.h: Same.
9324         * include/lmsname.h: Same.
9325         * include/lmstats.h: Same.
9326         * include/lmsvc.h: Same.
9327         * include/lmuse.h: Same.
9328         * include/lmuseflg.h: Same.
9329         * include/lmwksta.h: Same.
9330         * include/lzexpand.h: Same.
9331         * include/mapi.h: Same.
9332         * include/mciavi.h: Same.
9333         * include/mcx.h: Same.
9334         * include/mmsystem.h: Same.
9335         * include/mswsock.h: Same.
9336         * include/nb30.h: Same.
9337         * include/nddeapi.h: Same.
9338         * include/nspapi.h: Same.
9339         * include/ntdef.h: Same.
9340         * include/ntsecapi.h: Same.
9341         * include/ntsecpkg.h: Same.
9342         * include/oaidl.h: Same.
9343         * include/objbase.h: Same.
9344         * include/objfwd.h: Same.
9345         * include/objidl.h: Same.
9346         * include/odbcinst.h: Same.
9347         * include/ole.h: Same.
9348         * include/ole2.h: Same.
9349         * include/ole2ver.h: Same.
9350         * include/oleauto.h: Same.
9351         * include/olectl.h: Same.
9352         * include/olectlid.h: Same.
9353         * include/oledlg.h: Same.
9354         * include/oleidl.h: Same.
9355         * include/pbt.h: Same.
9356         * include/prsht.h: Same.
9357         * include/psapi.h: Same.
9358         * include/rapi.h: Same.
9359         * include/ras.h: Same.
9360         * include/raserror.h: Same.
9361         * include/rassapi.h: Same.
9362         * include/regstr.h: Same.
9363         * include/richedit.h: Same.
9364         * include/richole.h: Same.
9365         * include/rpc.h: Same.
9366         * include/rpcdce.h: Same.
9367         * include/rpcdce2.h: Same.
9368         * include/rpcdcep.h: Same.
9369         * include/rpcndr.h: Same.
9370         * include/rpcnsi.h: Same.
9371         * include/rpcnsip.h: Same.
9372         * include/rpcnterr.h: Same.
9373         * include/rpcproxy.h: Same.
9374         * include/schannel.h: Same.
9375         * include/schnlsp.h: Same.
9376         * include/scrnsave.h: Same.
9377         * include/security.h: Same.
9378         * include/setupapi.h: Same.
9379         * include/shellapi.h: Same.
9380         * include/shlguid.h: Same.
9381         * include/shlobj.h: Same.
9382         * include/sql.h: Same.
9383         * include/sqlext.h: Same.
9384         * include/sqltypes.h: Same.
9385         * include/sqlucode.h: Same.
9386         * include/sspi.h: Same.
9387         * include/subauth.h: Same.
9388         * include/tlhelp32.h: Same.
9389         * include/unknwn.h: Same.
9390         * include/userenv.h: Same.
9391         * include/w32api.h: Same.
9392         * include/winbase.h: Same.
9393         * include/wincon.h: Same.
9394         * include/wincrypt.h: Same.
9395         * include/windef.h: Same.
9396         * include/windows.h: Same.
9397         * include/windowsx.h: Same.
9398         * include/winerror.h: Same
9399         * include/wingdi.h: Same.
9400         * include/wininet.h: Same.
9401         * include/winioctl.h: Same.
9402         * include/winnetwk.h: Same.
9403         * include/winnls.h: Same.
9404         * include/winnt.h: Same.
9405         * include/winperf.h: Same.
9406         * include/winreg.h: Same.
9407         * include/winresrc.h: Same.
9408         * include/winsock.h: Same.
9409         * include/winsock2.h: Same.
9410         * include/winspool.h: Same.
9411         * include/winsvc.h: Same.
9412         * include/winuser.h: Same.
9413         * include/winver.h: Same.
9414         * include/ws2tcpip.h: Same.
9415         * include/wsnetbs.h: Same.
9416         * include/wtypes.h: Same.
9417         * include/zmouse.h: Same.
9418         * include/mapi.h: Change header guard name to _MAPI_H  for
9419         consistency.
9420
9421 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9422
9423         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9424         Remove unnecessary inclusion of <wtypes.h>.
9425         * ChangeLog: Fix omission of name in recent entries.
9426
9427 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9428
9429         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9430
9431 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9432
9433         * include/mswsock.h: Group winsock2 dependants
9434         together and protect with #ifdef _WINSOCK2_H.
9435         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9436         has been included.
9437
9438 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9439
9440         * include/mswsock.h (TP_*): Add new defines.
9441         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9442         (WSAMSG): Likewise.
9443         (WSACMSGHDR): Likewise.
9444         (DisconnectEx): Add new prototype.
9445         (WSARecvMsg): Likewise.
9446         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9447
9448 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9449
9450         * ChangeLog: Fix typo in last entry.
9451         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9452         * include/ws2tcpip.h: (IP_*): Add new defines.
9453         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9454         (NI_*): Add getnameinfo constants and bitmasks.
9455         (AI_*): Add getaddrinfo flags.
9456         (EAI_*): Add getaddrinfo error codes.
9457         (ip_mreq_source): Add new structure.
9458         (ip_msfilter): Add new structure.
9459         (IP_MSFILTER_SIZE): Add new macro.
9460         (in_pktinfo): Add new structure.
9461         Add preliminary IPv6 support.
9462         (in6_addr): Add new structure and some defines.
9463         (sockaddr_in6): Add new structure.
9464         (in6addr_any, in6addr_loopback): Declare extern structures.
9465         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9466         initialization macros for above.
9467         (IN6_ARE_ADDR_EQUAL): Define macro.
9468         (IN6_IS_ADDR_*): Define address testing macros.
9469         (socklen_t) Add new typedef.
9470         (ipv6_mreq): Add new structure.
9471         (in6_pktinfo): Same.
9472         (addrinfo): Same.
9473         (freeaddrinfo):Add new prototype.
9474         (getaddrinfo): Same.
9475         (gai_strerror[AW]): Same.
9476         (getnameinfo): Same.
9477         (sockaddr_in6_old): Add structure.
9478         (sockaddr_gen): Add union definition.
9479         (INTERFACE_INFO): Use sockaddr_gen as members.
9480         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9481         with INTERFACE_INFO on NT4 prior to sp4.
9482
9483 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9484
9485         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9486         when selecting winsock interface.
9487         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9488         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9489         Expand FIXME comment.
9490         (WSACOMPLETIONTYPE): Add enum.
9491         (WSACOMPLETION): Add structure and typedefs.
9492         (WSANSPIoctl): Add function prototpe and callback typedef.
9493         (SIO_NSP_NOTIFY_CHANGE): Add define.
9494         (sockaddr_storage): Add structure and typedefs.
9495
9496 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9497
9498         * include/winuser.h (OIC_*): Add resource constants.
9499
9500 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9501
9502         * include/ntsecpkg.h: New file.
9503         * include/schannel.h: New file.
9504         * include/schnlsp.h: New file.
9505         * include/security.h: New file.
9506         * include/sspi.h: New file.
9507         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9508         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9509         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9510         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9511         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9512         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9513         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9514         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9515         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9516         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9517         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9518         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9519         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9520         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9521         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9522         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9523         CERT_CHAIN_CONTEXT): Add missing structures.
9524         (CertCloseStore, CertGetCertificateChain,
9525         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9526         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9527         CertFindCertificateInStore, CertFreeCertificateContext,
9528         CertGetIssuerCertificateFromStore,
9529         CertFindChainInStore): Add missing functions.
9530         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9531         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9532         * lib/crypt32.def: New file.
9533         * lib/secur32.def: Add mising stubs.
9534         * lib/test.c: Include new headers.
9535
9536 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9537
9538         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9539         parameter.
9540
9541 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9542
9543         * lib/test.c: Include mapi.h.
9544         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9545         Thanks to: "Ron"  <ron@debian.org>
9546
9547 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9548
9549         * include/mapi.h: New file.
9550         * lib/mapi.def: Add missing function stubs.
9551
9552 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9553
9554         * include/winuser.h (GetWindowLongPtr[AW],
9555         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9556
9557 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9558
9559         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9560         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9561         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9562         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9563
9564 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9565
9566         * lib/test.c: Include wsnetbs.h.
9567
9568 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9569
9570         * include/wsnetbs.h: New file.
9571
9572 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9573
9574         * include/winnt.h: Remove merge conflict.
9575
9576 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9577
9578         * include/winnt.h (_TCHAR): Add typedefs.
9579
9580 2002-01-25  Tim Hughes  <tjh@delcam.com>
9581
9582         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9583         defines.
9584
9585 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9586
9587         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9588         Add defines.
9589         (LPACCESSTIMEOUT): Add typedef.
9590
9591 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9592
9593         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9594
9595 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9596
9597         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9598         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9599         backward compatability with old names. Update UNICODE mappings.
9600         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9601         for struct _HD_LAYOUT and add defines for backward
9602         compatability with old names.
9603         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9604         parallel chages to typedefs. Add defines for backward
9605         compatability with old names.
9606         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9607
9608 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9609
9610         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9611         hex for readability.
9612
9613 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9614
9615         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9616         and typedefs.
9617         (SPI_SETSCREENSAVERRUNNING): Add define.
9618         (LLKHF_ALTDOWN): Add define.
9619         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9620         PFD_DEPTH_DONTCARE): Add defines.
9621
9622 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9623
9624         * include/objbase.h (CoGetObject): Add prototype.
9625
9626 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9627
9628         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9629         ENUM_REGISTRY_SETTINGS): Add defines.
9630
9631 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9632
9633         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9634         (FILE_ATTRIBUTE_DEVICE): Add define.
9635
9636 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9637
9638         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9639
9640 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9641
9642         * ChangeLog: correct date in last entry.
9643
9644 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9645
9646         * include/winuser.h (MONITORENUMPROC): Add typedef.
9647         (EnumDisplayMonitors): Add prototype.
9648         * lib/user32.def (EnumDisplayMonitors): Add stub.
9649
9650 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9651
9652         * include/ntsecapi.h:  Fixed missing void parameter type in some
9653         prototypes.
9654         * include/objbase.h: Ditto.
9655         * include/rapi.h: Ditto.
9656         * include/rpc.h: Ditto.
9657         * include/rpcdce.h: Ditto.
9658         * include/rpcdcep.h: Ditto.
9659         * include/rpcndr.h: Ditto.
9660         * include/rpcnsip.h: Ditto.
9661         * include/rpcproxy.h: Ditto.
9662         * include/windef.h: Ditto.
9663
9664 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9665
9666         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9667
9668 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9669
9670         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9671          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9672         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9673         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9674         WS_EX_NOINHERITLAYOUT): Add defines.
9675         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9676         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9677         MEM_WRITE_WATCH): Add defines.
9678
9679
9680 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9681
9682         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9683         Add prototype.
9684         (SetCriticalSectionSpinCount): Likewise.
9685
9686 2001-12-30  Guido Serassio  <serassio@libero.it>
9687
9688         * include/winsvc.h: Add EnumServiceStatusEx(),
9689         QueryServiceStatusEx()
9690         & RegisterServiceCtrlHandlerEx()
9691
9692 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9693
9694         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9695
9696 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9697
9698         * lib/Makefile.in: Revert inst_installdir definitions to working
9699         versions.
9700
9701 2001-12-17  Guido Serassio  <serassio@libero.it>
9702
9703         * include/winsvc.h: Add ChangeServiceConfig2() &
9704         QueryServiceConfig2() definition
9705
9706 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9707
9708         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9709         on MSDN documentation for XP.
9710
9711 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9712
9713         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9714         mappings.
9715
9716 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9717
9718         * include/commctrl.h (ACS_*): Add new defines.
9719         (PGS_*): Ditto.
9720         (CBES_*): Ditto.
9721         (TBSTYLE_*): Ditto.
9722         (TB_*): Ditto.
9723         (TTS_*): Ditto.
9724         (UDS_HOTTRACK): Add define.
9725         (SBT_TOOLTIPS): Ditto.
9726         (TBS_*): Add new defines.
9727         (HDS_*): Ditto.
9728         (LVS_EX_*) Ditto.
9729         (LVKF_*): Ditto.
9730         (TCM_GETEXTENDEDSTYLE): Add define.
9731         (TVS_NOHSCROLL): Ditto.
9732         (TVIF_INTEGRAL): Ditto.
9733         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9734         (TCS_*): Add new defines.
9735         (CBEM_*): Add defines.
9736         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9737         (tagTVITEMEX[AW]: Ditto.
9738         (tagTVINSERTSTRUCT[AW]: Add union member.
9739         * include/winbase.h (VirtualAllocEx): Add prototype.
9740         * include/winuser.h (SS_*): Add new defines.
9741
9742 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9743
9744         * Makefile.in: Increment VERSION.
9745         * include/w32api.h: Ditto.
9746
9747 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9748
9749         * Makefile.in: Increment VERSION.
9750         * include/w32api.h: Ditto.
9751
9752 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9753
9754         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9755         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9756         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9757         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9758         SetupDiOpenDevRegKey): Correct function names.
9759
9760 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
9761
9762         * include/winuser.h (IDC_STATIC): Don't define.
9763
9764 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
9765
9766         Cleanup merge between SourceForge and winsup CVS.
9767         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
9768         definitions.
9769         * include/winnt.h (VER_NT*): Remove duplicate defines.
9770         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
9771
9772 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
9773
9774         * include/accctrl.h: Change \r\n to \n.
9775
9776 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
9777
9778         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
9779         Add structure definition.
9780         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
9781         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
9782         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
9783         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
9784         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
9785         UnenableRouter) Declare functions.
9786         * lib/iphlpapi.def: Add function names to import lib.
9787
9788 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
9789
9790         * include/winnt.h (PACCESS_MASK): Add typedef.
9791         * include/aclapi.h: New file.
9792         * include/acctrl.h: New file.
9793         * lib/advapi32.def: Add missing symbols.
9794         * lib/test.c: Add #include <aclapi.h>.
9795
9796 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
9797
9798         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
9799         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
9800         here ...
9801         * include/winnt.h: ... to here.
9802         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
9803         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
9804         and typedefs.
9805         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
9806         Add defines.
9807
9808 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9809
9810         * w32api/include/winnt.h: prepare SSE register support.
9811         (CONTEXT_EXTENDED_REGISTERS): Add new define.
9812         (MAXIMUM_SUPPORTED_EXTENSION): New define.
9813         (struct CONTEXT): ExtendedRegisters field added.
9814
9815 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
9816
9817         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
9818         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
9819         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
9820         tagLASTINPUTINFO ): Define new structures.
9821         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
9822         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
9823         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
9824         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
9825         SetMenuInfo): Add new prototypes.
9826         * lib/user32.def: Add import stubs for above functions.
9827
9828         * include/winuser.h (IDC_STATIC): Protect against prior
9829         definition.
9830
9831 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
9832
9833         * include/winbase.h (OSVERSIONINFOEX): Add definition.
9834         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
9835
9836 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
9837
9838         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
9839         warnings with _AUTHORITY #defines.
9840
9841 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9842
9843         * include/winnt.h (GetCurrentFiber): Create a prototype before the
9844         implementation.
9845         (GetFiberData): Ditto.
9846
9847 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9848
9849         * include/winnt.h: Backout last change.
9850
9851 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
9852
9853         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
9854         GetCurrentFiber: Create a prototype before the implementation.
9855         GetFiberData: Ditto.
9856
9857 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
9858
9859         * include/winuser.h (IDC_STATIC): Add define.
9860         Thanks to: Benoit Laniel.
9861
9862 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
9863
9864         * include/commdlg.h: Include <unknwn.h> rather than local
9865         definition of LPUKNOWN.
9866         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
9867         Emit warning.
9868
9869 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
9870
9871         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
9872         for Watcom.
9873         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
9874         functions of the form 'type * function(...)' in a way compatible
9875         with both Watcom and GCC.
9876         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
9877         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
9878         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
9879         * include/windows.h: Watcom can use anonymous structs/unions.
9880         * include/winnt.h: Watcom can use 64 bit ints.
9881         (GetCurrentFiber): Add another inline definition using
9882         Watcom inline assembly syntax.
9883         (GetFiberData): Likewise.
9884         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
9885         (gethostbyname): Likewise.
9886         (gethostbyaddr}: Likewise.
9887         (getservbyport}: Likewise.
9888         (getservbyname}: Likewise.
9889         (getprotobynumber}: Likewise.
9890         (getprotobyname}: Likewise.
9891         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
9892         (gethostbyname}: Likewise.
9893         (gethostbyaddr}: Likewise.
9894         (getservbyport}: Likewise.
9895         (getservbyname}: Likewise.
9896         (getprotobynumber}: Likewise.
9897         (getprotobyname}: Likewise.
9898         * lib/diinut.c: Correction for Watcom.
9899         * lib/kernel32.c (GetCurrentFiber): Add another definition
9900         using Watcom inline assembly syntax.
9901         (GetFiberData): Likewise.
9902         * lib/scrnsave.c (WinMain): Add break after default:
9903         clause.
9904
9905 2001-11-04  "stefan"  <stefan@lkcc.org>
9906
9907         * include/winnt.h (GetCurrentFiber): Add prototype.
9908         (GetFiberData): Likewise.
9909
9910 2001-11-04  Christopher Faylor  <cgf@redhat.com>
9911
9912         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
9913         parallel invocations.
9914
9915 2001-11-03  Christopher Faylor  <cgf@redhat.com>
9916
9917         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
9918
9919 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9920
9921         * include/basetyps.h (DECLARE_INTERFACE): Don't add
9922         __attribute__((com_interface)) for __GNUC__ >= 3.
9923
9924 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9925
9926         * include/commdlg.h (PRINTPAGERANGE): Add structure
9927         definition.
9928         (PRINTDLGEX[AW]): Likewise.
9929         (PrintDlgEx[AW]): Add function declaration.
9930         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
9931         * ChangeLog: Fix typo in last entry.
9932
9933 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
9934
9935         * include/objbase.h (CoGetClassObject): Change third parameter
9936         to COSERVERINFO*.
9937
9938 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9939
9940         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
9941         Thanks to: Kim Saunders.
9942         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
9943         Thanks to: Pat Thoyts.
9944         * include/winnt.h: Change C++ style comment to C style.
9945         * include/shlobj.h: Ditto.
9946         * include/objbase.h (enum tagCOINIT): Remove comma at end of
9947         list.
9948         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
9949         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
9950         (enum not limited to range of int).
9951         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
9952         (struct with no named members), ifndef NONAMELESSUNION.
9953
9954 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9955
9956         * include/winuser.h (CREATESTRUCT): UNICODE it.
9957         (CBT_CREATEWND): Likewise.
9958
9959 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
9960
9961         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
9962         (WNetGetResourceInformationW): Ditto.
9963         (WNetGetResourceInformation): Add define.
9964
9965 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
9966
9967         * include/winuser.h (POINTSTOPOINT): Use explicit casts
9968         before extracting words.
9969
9970 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
9971
9972         * include/winnt.h: Add PF_* defines.
9973         Thanks to: "Wizord"  <wizord@argoslabs.com>
9974
9975 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
9976
9977         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
9978         field as _ANONYMOUS_STRUCT.
9979         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
9980         for UNICODE.
9981         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
9982         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
9983         test.
9984
9985 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
9986
9987         * include/commctrl.h: Add some ListView constants.
9988
9989 2001-09-17  Earnie Boyd  <earnie@sf.net>
9990
9991         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
9992         portion of the directory from the install.
9993         (inst_libdir): Ditto.
9994         * Makefile.in (VERSION): Increment.
9995         * include/w32api.h: Increment version.
9996
9997 2001-09-13  Earnie Boyd  <earnie@SF.net>
9998
9999         * lib/Makefile.in (inst_includedir): Change to always use w32api
10000         subdirectory for target == cygwin.
10001         (inst_libdir): Ditto.
10002
10003 2001-09-13  Earnie Boyd  <earnie@SF.net>
10004
10005         * lib/Makefile.in (config_prefix): New variable.
10006         (inst_includedir): Manipulate special value only if target == cygwin
10007         and build == target and prefix != config_prefix.
10008         (inst_libdir): Ditto.
10009
10010 2001-09-12  Earnie Boyd  <earnie@SF.net>
10011
10012         * Makefile.in (TARFLAGS): New variable.
10013         (TARFILEEXT): Ditto.
10014
10015 2001-09-12  Earnie Boyd  <earnie@SF.net>
10016
10017         * Makefile.in: Increment version.
10018         * include/w32api.h: Ditto.
10019         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10020
10021 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10022
10023         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10024         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10025         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10026
10027 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10028
10029         * include/wininet.h (InternetAutodial): Add prototype.
10030         (InternetAutodialHangup): Ditto.
10031         (InternetDial): Ditto.
10032         (InternetGetConnectedState): Ditto.
10033         (InternetGoOnline): Ditto.
10034         (InternetHangUp): Ditto.
10035         (InternetSetDialState): Ditto.
10036         Add associated INTERNET_* auto dial flags.
10037         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10038
10039 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10040
10041         * lib/Makefile.in: Move the setting of variable libdir to after the
10042         setting of exec_prefix since the value of libdir is dependant on it.
10043
10044 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10045
10046         * include/winbase.h: Add missing closing parentheses to
10047         InterlockedExchangePointer declaration.
10048
10049 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10050
10051         * include/shlobj.h (CFSTR_* ): Add new defines.
10052         Thanks to: "Ron" <ron@debian.org> .
10053         Unicode them.
10054
10055 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10056
10057         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10058         anonymous structs are available rather than just testing preprocessor
10059         variable directly.
10060
10061 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10062
10063         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10064         with new `LARGE_INTEGER' definition.
10065
10066 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10067
10068         * include/winsock2.h: Remove "extra token" after #endif.
10069
10070 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10071
10072         * config.guess: Remove the \r from the end of line.
10073         * config.sub: Ditto.
10074
10075 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10076
10077         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10078         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10079
10080 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10081
10082         * config.guess: Add the MSYS system.
10083         * config.sub: Ditto.
10084         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10085         * incldue/winsock2.h: Ditto.
10086
10087 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10088
10089         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10090         non-anonymous (Xxx.u.LowPart) access to HighPart and
10091         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10092
10093 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10094
10095         * include/wingdi.h (HANGUL_CHARSET): Add define.
10096
10097 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10098
10099         * include/setupapi.h: Formatting.
10100
10101 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10102
10103         * include/shlobj.h: Remove \r from the line endings.
10104
10105 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10106
10107         * include/setupapi.h : New file.
10108         * lib/setupapi.def:New file.
10109         * lib/test.c: Include setupapi.h.
10110
10111 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10112         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10113
10114 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10115
10116         * include/richedit.h (ENLINK): Add structure definition.
10117         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10118
10119 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10120
10121         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10122         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10123         (GCS_*): Make UNICODE.
10124         (CSIDL_*): Add more defines.
10125         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10126         (_DISK_GEOMETRY): Ditto.
10127         (_DISK_PERFORMANCE): Ditto.
10128         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10129
10130 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10131
10132         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10133         of block protected by #ifndef VOID.
10134         (This reverts 1998-12-01 Anders Norlander change.)
10135         * include/odbcinst.h: End file with newline.
10136         * include/raserror.h: Ditto.
10137
10138 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10139
10140         * include/winsock2.h (#include <wtypes.h): Don't.
10141         (_BLOB): Define instead, if not already done.
10142         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10143         * include/wtypes.h (_BLOB): Guard against prior definition.
10144
10145 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10146
10147         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10148         as __extension__.
10149         (tagTYPEDESC): Ditto.
10150         (_wireBRECORD): Add structure definition.
10151         (_wireSAFEARR_BRECORD): Ditto.
10152         (_wireSAFEARR_HAVEIID): Ditto.
10153         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10154         SAFEARR_HAVEIID HaveIidStr.
10155         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10156         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10157         pparray to wirePSAFEARRAY*.
10158         (_wireVARIANT): Add field wireBRECORD brecVal.
10159         (wireVARIANT): Change typedef to struct _wireVariant*.
10160         (IRecordInfo): Add interface definition.
10161         (LPRECORDINFO): Add typedef for IRecordInfo*.
10162         (IID_IRecordInfo): Add forward decalaration.
10163
10164 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10165
10166         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10167         * include/nddeapi.h: Likewise.
10168
10169 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10170
10171         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10172         Add more includes of w32api headers.
10173
10174 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10175
10176         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10177         Swap asm code with that of GetFiberData.
10178         (GetFiberData): Ditto.
10179         * lib/kernel32.c: New file, containing library versions of
10180         GetCurrentFiber and GetFiberData.
10181         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10182
10183 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10184
10185         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10186         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10187
10188 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10189
10190         * lib/oleaut32.def: Regenerate.
10191
10192 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10193
10194         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10195
10196 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10197
10198         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10199         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10200         * include/oaidl.h: ... to here.
10201         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10202         (IErrorInfo::GetGUID): Change arg to GUID.
10203         (LPSUPPORTERRORINFO): Add typedef.
10204         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10205
10206 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10207
10208         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10209         defines.
10210
10211 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10212
10213         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10214
10215 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10216
10217         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10218         Thanks to: Jason Craig  <jacraig@softhome.net>
10219
10220 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10221
10222         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10223         and UNICODE mappings, if _WIN32_IE >= 0x400.
10224         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10225         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10226         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10227         (tagNMLVCUSTOMDRAW): Likewise.
10228         (tagNMTVCUSTOMDRAW): Likewise.
10229         (tagNMLVCACHEHINT): Likewise.
10230
10231 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10232
10233         * include/basetsd.h (#include <_mingw.h>): Remove.
10234         (__int64): Define.
10235
10236 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10237
10238         * include/wingdi.h (AC_SRC_OVER): Add define.
10239         (struct _BLENDFUNCTION): Add.
10240
10241 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10242
10243         * include/shlobj.h:  Add BIF_* defines.
10244
10245 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10246
10247         * include/winerror.h (E_PENDING): Add error code define.
10248
10249 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10250
10251         * include/basetsd.h (#include <_mingw.h>): Add directive.
10252
10253 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10254
10255         * include/winbase.h (InterlockedCompareExchange): Change args
10256         and return value from PVOID to LONG.
10257         (InterlockedExchange): Change first arg to LPLONG.
10258         (InterlockedCompareExchangePointer): New macro.
10259         (InterlockedExchangePointer): New macro.
10260
10261 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10262
10263         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10264         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10265
10266 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10267
10268         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10269         (IMalloc::Free()): Ditto.
10270
10271 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10272
10273         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10274         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10275         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10276
10277 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10278
10279         * include/shlobj.h (struct _browseinfo): UNICODE it.
10280         (SHBrowseForFolder): Ditto.
10281         (SHGetPathFromIDList): Ditto.
10282
10283 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10284
10285         * include/basetsd.h: RC_INVOKED protection and realignment.
10286         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10287
10288 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10289
10290         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10291         line.
10292
10293 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10294
10295         * lib/mapi32.def: Add MAPISendMail.
10296
10297 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10298
10299         * include/w32api.h: Update version.
10300         * Makefile.in: Ditto.
10301
10302 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10303
10304         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10305         compiler warnings.
10306
10307 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10308
10309         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10310         previous definition in include/ntsecapi.h.
10311         * include/ntsecapi.h: Vice versa.
10312
10313 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10314
10315         * include/winnt.h: Add defines for group attributes.
10316         Add define for SYSTEM_LUID.
10317         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10318         `PTOKEN_PRIMARY_GROUP'.
10319
10320 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10321
10322         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10323         for cygwin.
10324
10325 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10326
10327         * include/winsock2.h: Protect one *more* newlib defines when compiling
10328         cygwin.
10329
10330 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10331
10332         * include/winsock2.h: Protect some more newlib defines when compiling
10333         cygwin.
10334
10335 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10336
10337         * include/winsock.h: Protect some more newlib defines when compiling
10338         cygwin.
10339
10340 2001-04-17  Egor Duda  <deo@logos-m.ru>
10341
10342         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10343         as __extenstion__ when appropriate.
10344         * include/mmsystem.h: Mark anonymous structs and unions as
10345         __extension__ to prevent compiler warning when invoked with
10346         -pedantic
10347         * include/oaidl.h: Ditto.
10348         * include/objidl.h: Ditto.
10349         * include/olectl.h: Ditto.
10350         * include/prsht.h: Ditto.
10351         * include/shlobj.h: Ditto.
10352         * include/winbase.h: Ditto.
10353         * include/winnt.h: Ditto.
10354         * include/wtypes.h: Ditto.
10355
10356 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10357
10358         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10359         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10360
10361 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10362
10363         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10364
10365 2001-04-11  John Fortin  <fortinj@attglobal.net>
10366
10367         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10368         (*LPBOOL): Ditto.
10369
10370 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10371
10372         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10373         code will be included in every module which includes this header.
10374         (GetFiberData): Ditto.
10375
10376 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10377
10378         * include/winnt.h (GetCurrentFiber): Fix typo.
10379
10380 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10381
10382         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10383         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10384         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10385         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10386         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10387
10388         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10389         (GetCurrentFiber): Ditto.
10390         Thanks to: Andy Younger  <AndyY@redlemon.com>
10391
10392         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10393         DirectX 8 from complaining.
10394         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10395
10396 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10397
10398         * include/commctrl.h Updated TreeView and ListView defines and macros.
10399
10400 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10401
10402         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10403         and above.
10404
10405 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10406         * include/winuser.h (VK_KANA): New definition.
10407         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10408
10409 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10410
10411         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10412         (RT_FONT): Ditto.
10413         * include/basetsd.h (INT32): Ditto.
10414         * include/windef.h (ATOM): Ditto.
10415         (BOOL): Ditto.
10416         (BYTE): Ditto.
10417         * include/winbase.h (FreeResource): Ditto.
10418         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10419
10420 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10421
10422         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10423         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10424         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10425         macro now defined in newlib sys/types.h.  Emit warning if defined.
10426         * include/winsock2.h: Ditto.
10427         * include/windows.h (Win32_Winsock): Replace with new macros
10428         __USE_W32_SOCKETS and warn of deprecation.
10429
10430 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10431
10432         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10433         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10434
10435 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10436
10437         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10438         (TB_GETBUTTONSIZE): Ditto.
10439         (TCS_HOTTRACK): Ditto.
10440         Thanks to: Chris Hansen <popeofpop@softhome.net>
10441
10442 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10443
10444         * Makefile.in: (snapshot): Add target.
10445         * lib/Makefile.in: (install-headers): Use installdir variable.
10446         (installdir): Set value based on target-alias.
10447
10448 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10449
10450         * include/w32api.h: (_W32API_VERSION): Remove.
10451         (__W32API_VERSION): Add.
10452         (__W32API_MAJOR_VERSION): Ditto.
10453         (__W32API_MINOR_VERSION): Ditto.
10454
10455 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10456
10457         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10458         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10459         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10460         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10461
10462 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10463
10464         * include/mswsock.h: New file.
10465         * include/ws2tcpip.h: New file.
10466         * include/winsock.h (IPPROTO_IGMP): New define.
10467         (IPPROTO_GGP): Correct value.
10468         (SO_* macros): Remove mswsock defines.
10469         (TCP_BSDURGENT): Likewise.
10470         (IP_* macros): Add comment warning of WinSock2 incompatibility
10471         (WSARecvEx): Remove mswsock prototype.
10472         (TransmitFile): Likewise.
10473         (AcceptEx): Likewise.
10474         (GetAcceptExSockaddrs): Likewise.
10475         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10476         (#include <mswsock.h>): Add directive and explanatory comment
10477         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10478         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10479         (#include <winsock.h>): Replace directive with winsock.h file content
10480         The following changes apply to the merged file:
10481         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10482         (SOMAXCONN): Likewise
10483         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10484         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10485         in ws2tcpip.h)
10486         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10487         (FD_*_BIT and FD_* defines): Place together and extend to
10488         FD_MAX_EVENTS 10
10489         (AF* defines): Extend to AF_MAX 10
10490         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10491         (WSAUnhookBlockingHook): Likewise.
10492         (WSASetBlockingHook): Likewise.
10493         (WSACancelBlockingCall): Likewise.
10494         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10495         (#include <mswsock.h>): Delete directive inherited from winsock.h
10496         (WSA_QOS* defines): Add QualityOfService error codes.
10497         (SIO_* defines): Add new macros
10498         * include/ipexport.h (IP_STATUS flags): Add definitions.
10499         (IP_FLAG_DF): Likewise.
10500         (IP_OPT_* ): Likewise.
10501         (struct ip_option_information): Likewise.
10502         (struct icmp_echo_reply): Likewise.
10503
10504 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10505
10506         * include/commctrl.h: Revert TEXT change.
10507         * include/lmalert.h: Ditto.
10508         * include/lmcons.h: Ditto.
10509         * include/lmsname.h: Ditto.
10510         * include/lmsvc.h: Ditto.
10511         * include/ntsecapi.h: Ditto.
10512         * include/oledlg.h: Ditto.
10513         * include/ras.h: Ditto.
10514         * include/regstr.h: Ditto.
10515         * include/richedit.h: Ditto.
10516         * include/wininet.h: Ditto.
10517         * include/winnt.h: Ditto.
10518
10519 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10520
10521         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10522         * include/lmalert.h: Ditto.
10523         * include/lmcons.h: Ditto.
10524         * include/lmsname.h: Ditto.
10525         * include/lmsvc.h: Ditto.
10526         * include/ntsecapi.h: Ditto.
10527         * include/oledlg.h: Ditto.
10528         * include/ras.h: Ditto.
10529         * include/regstr.h: Ditto.
10530         * include/richedit.h: Ditto.
10531         * include/wininet.h: Ditto.
10532         * include/w32api.h: New File.
10533
10534 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10535
10536         * include/shlobj.h: Add missing SLR_* flags.
10537
10538 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10539
10540         * lib/Makefile.in: (host_alias): Add variable.
10541         (host_build): Ditto:
10542         (xinstall): Removed
10543         (xinstall-libraries): Ditto.
10544         (xinstall-headers): Ditto.
10545         (xuninstall): Ditto.
10546         (xuninstall-libraries): Ditto.
10547         (xuninstall-headers): Ditto.
10548         * Makefile.in: (host_alias): Add variable.
10549         (build_alias): Ditto.
10550
10551 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10552
10553         * include/winnt.h: (__TEXT): Add private macro.
10554         (_TEXT): Modify definition to use __TEXT.
10555         (_T): Ditto.
10556         This change allows the passing of a MACRO as an argument and have that
10557         MACRO resolved first.
10558         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10559
10560 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10561
10562         * Makefile.in: Increment VERSION to 0.5
10563         * include/winnt.h: Change TEXT to _TEXT throughout.
10564         (SID_RELEASE): Define.
10565         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10566
10567 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10568
10569         * Apply Phil Krylov patches.
10570         2001-01-19  Phil Krylov  <phil@mail.ru>
10571         * include/commctrl.h: (HDI_IMAGE) New definition.
10572         (HDI_DI_SETITEM) Ditto.
10573         (HDI_ORDER) Ditto.
10574         (HDI_FILTER) Ditto.
10575         (HDF_BITMAP_ON_RIGHT) Ditto.
10576         (HDF_IMAGE) Ditto.
10577         (HDM_SETORDERARRAY) Ditto.
10578         (Header_SetOrderArray) Ditto.
10579         (ICC_BAR_CLASSES) Ditto.
10580         (struct _HD_ITEMA) Change definition.
10581         (struct _HD_ITEMW) Ditto.
10582         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10583         (InitCommonControlsEx()) Ditto.
10584         2001-01-23  Phil Krylov  <phil@mail.ru>
10585         * include/richedit.h: Many Richedit 2.0 definitions.
10586
10587 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10588
10589         * include/winuser.h: (IDC_HAND)  New resource identifier.
10590         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10591
10592 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10593
10594         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10595         Fix typo's.
10596
10597 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10598
10599         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10600         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10601         Thanks To: <bge@users.sourceforge.net>
10602
10603 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10604
10605         * Apply Danny Smith patch 102386
10606         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10607         * lib/rasapi32.def: add symbols available in NT4 and W2k
10608
10609 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10610
10611         * Apply Danny Smith patch 102382
10612         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10613         * lib/mswsock.def: remove leading underscores from symbol names
10614
10615 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10616
10617         * Apply Danny Smith patch 102446
10618         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10619         * include/sql.h (ODBCVER): change default to 0x0351.
10620         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10621         (SQLColAttributes): likewise.
10622         (SQLBindParam): add prototype for ODBC 3.x function.
10623         (SQLCloseCursor): likewise.
10624         (SQLColAttribute): likewise.
10625         (SQLCopyDesc):likewise.
10626         (SQLEndTran): likewise.
10627         (SQLFetchScroll): likewise.
10628         (SQLGetConnectAttr): likewise.
10629         (SQLGetDescField): likewise.
10630         (SQLGetDescRec): likewise.
10631         (SQLGetDiagField): likewise.
10632         (SQLGetDiagRec): likewise.
10633         (SQLGetEnvAttr): likewise.
10634         (SQLGetStmtAttr): likewise.
10635         (SQLSetConnectAttr): likewise.
10636         (SQLSetDescField):likewise.
10637         (SQLSetDescRec): likewise.
10638         (SQLSetEnvAttr): likewise.
10639         (SQLSetStmtAttr): likewise.
10640         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10641         _WIN64 compatability;
10642         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10643         (SQL_ACTIVE_CONNECTIONS): likewise.
10644         (SQL_ACTIVE_STATEMENTS): likewise.
10645         (SQL_ALL_EXCEPT_LIKE): likewise.
10646         (SQL_API_ALL_FUNCTIONS): likewise.
10647         (SQL_API_LOADBYORDINAL): likewise.
10648         (SQL_API_SQLBINDPARAMETER): likewise.
10649         (SQL_API_SQLBROWSECONNECT): likewise.
10650         (SQL_API_SQLCOLATTRIBUTES): likewise.
10651         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10652         (SQL_API_SQLDESCRIBEPARAM): likewise.
10653         (SQL_API_SQLDRIVERCONNECT): likewise.
10654         (SQL_API_SQLDRIVERS): likewise.
10655         (SQL_API_SQLEXTENDEDFETCH): likewise.
10656         (SQL_API_SQLFOREIGNKEYS): likewise.
10657         (SQL_API_SQLMORERESULTS): likewise.
10658         (SQL_API_SQLNATIVESQL): likewise.
10659         (SQL_API_SQLNUMPARAMS): likewise.
10660         (SQL_API_SQLPARAMOPTIONS): likewise.
10661         (SQL_API_SQLPRIMARYKEYS): likewise.
10662         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10663         (SQL_API_SQLPROCEDURES): likewise.
10664         (SQL_API_SQLSETPOS): likewise.
10665         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10666         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10667         (SQL_ASYNC_ENABLE): likewise.
10668         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10669         (SQL_ASYNC_ENABLE_OFF): likewise.
10670         (SQL_ASYNC_ENABLE_ON): likewise.
10671         (SQL_ATTR_READONLY): likewise.
10672         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10673         (SQL_ATTR_WRITE): likewise.
10674         (SQL_AUTOCOMMIT): likewise.
10675         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10676         (SQL_AUTOCOMMIT_OFF): likewise.
10677         (SQL_AUTOCOMMIT_ON): likewise.
10678         (SQL_BEST_ROWID): likewise.
10679         (SQL_BIGINT): likewise.
10680         (SQL_BINARY): likewise.
10681         (SQL_BIND_BY_COLUMN): likewise.
10682         (SQL_BIND_TYPE): likewise.
10683         (SQL_BIND_TYPE_DEFAULT): likewise.
10684         (SQL_BIT): likewise.
10685         (SQL_BOOKMARK_PERSISTENCE): likewise.
10686         (SQL_BP_CLOSE): likewise.
10687         (SQL_BP_DELETE): likewise.
10688         (SQL_BP_DROP): likewise.
10689         (SQL_BP_OTHER_HSTMT): likewise.
10690         (SQL_BP_SCROLL): likewise.
10691         (SQL_BP_TRANSACTION): likewise.
10692         (SQL_BP_UPDATE): likewise.
10693         (SQL_C_BINARY): likewise.
10694         (SQL_C_BIT): likewise.
10695         (SQL_C_BOOKMARK): likewise.
10696         (SQL_C_CHAR): likewise.
10697         (SQL_C_DATE): likewise.
10698         (SQL_C_DEFAULT): likewise.
10699         (SQL_C_DOUBLE): likewise.
10700         (SQL_C_FLOAT): likewise.
10701         (SQL_C_LONG): likewise.
10702         (SQL_C_SHORT): likewise.
10703         (SQL_C_SLONG): likewise.
10704         (SQL_C_SSHORT): likewise.
10705         (SQL_C_STINYINT): likewise.
10706         (SQL_C_TIME): likewise.
10707         (SQL_C_TIMESTAMP): likewise.
10708         (SQL_C_TINYINT): likewise.
10709         (SQL_C_ULONG): likewise.
10710         (SQL_C_USHORT): likewise.
10711         (SQL_C_UTINYINT): likewise.
10712         (SQL_CB_NON_NULL): likewise.
10713         (SQL_CB_NULL): likewise.
10714         (SQL_CC_CLOSE): likewise.
10715         (SQL_CC_DELETE): likewise.
10716         (SQL_CC_PRESERVE): likewise.
10717         (SQL_CN_ANY): likewise.
10718         (SQL_CN_DIFFERENT): likewise.
10719         (SQL_CN_NONE): likewise.
10720         (SQL_COLATT_OPT_MAX): likewise.
10721         (SQL_COLATT_OPT_MIN): likewise.
10722         (SQL_COLUMN_ALIAS): likewise.
10723         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10724         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10725         (SQL_COLUMN_COUNT): likewise.
10726         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10727         (SQL_COLUMN_DRIVER_START): likewise.
10728         (SQL_COLUMN_LABEL): likewise.
10729         (SQL_COLUMN_LENGTH): likewise.
10730         (SQL_COLUMN_MONEY): likewise.
10731         (SQL_COLUMN_NAME): likewise.
10732         (SQL_COLUMN_NULLABLE): likewise.
10733         (SQL_COLUMN_OWNER_NAME): likewise.
10734         (SQL_COLUMN_PRECISION): likewise.
10735         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10736         (SQL_COLUMN_SCALE): likewise.
10737         (SQL_COLUMN_SEARCHABLE): likewise.
10738         (SQL_COLUMN_TABLE_NAME): likewise.
10739         (SQL_COLUMN_TYPE): likewise.
10740         (SQL_COLUMN_TYPE_NAME): likewise.
10741         (SQL_COLUMN_UNSIGNED): likewise.
10742         (SQL_COLUMN_UPDATABLE): likewise.
10743         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10744         (SQL_CONCUR_DEFAULT): likewise.
10745         (SQL_CONCUR_LOCK): likewise.
10746         (SQL_CONCUR_READ_ONLY): likewise.
10747         (SQL_CONCUR_ROWVER): likewise.
10748         (SQL_CONCUR_TIMESTAMP): likewise.
10749         (SQL_CONCUR_VALUES): likewise.
10750         (SQL_CONCURRENCY): likewise.
10751         (SQL_CONN_OPT_MAX): likewise.
10752         (SQL_CONN_OPT_MIN): likewise.
10753         (SQL_CONNECT_OPT_DRVR_START): likewise.
10754         (SQL_CONVERT_BIGINT): likewise.
10755         (SQL_CONVERT_BINARY): likewise.
10756         (SQL_CONVERT_BIT): likewise.
10757         (SQL_CONVERT_CHAR): likewise.
10758         (SQL_CONVERT_DATE): likewise.
10759         (SQL_CONVERT_DECIMAL): likewise.
10760         (SQL_CONVERT_DOUBLE): likewise.
10761         (SQL_CONVERT_FLOAT): likewise.
10762         (SQL_CONVERT_FUNCTIONS): likewise.
10763         (SQL_CONVERT_INTEGER): likewise.
10764         (SQL_CONVERT_LONGVARBINARY): likewise.
10765         (SQL_CONVERT_LONGVARCHAR): likewise.
10766         (SQL_CONVERT_NUMERIC): likewise.
10767         (SQL_CONVERT_REAL): likewise.
10768         (SQL_CONVERT_SMALLINT): likewise.
10769         (SQL_CONVERT_TIME): likewise.
10770         (SQL_CONVERT_TIMESTAMP): likewise.
10771         (SQL_CONVERT_TINYINT): likewise.
10772         (SQL_CONVERT_VARBINARY): likewise.
10773         (SQL_CONVERT_VARCHAR): likewise.
10774         (SQL_CORRELATION_NAME): likewise.
10775         (SQL_CR_CLOSE): likewise.
10776         (SQL_CR_DELETE): likewise.
10777         (SQL_CR_PRESERVE): likewise.
10778         (SQL_CUR_DEFAULT): likewise.
10779         (SQL_CUR_USE_DRIVER): likewise.
10780         (SQL_CUR_USE_IF_NEEDED): likewise.
10781         (SQL_CUR_USE_ODBC): likewise.
10782         (SQL_CURRENT_QUALIFIER): likewise.
10783         (SQL_CURSOR_DYNAMIC): likewise.
10784         (SQL_CURSOR_FORWARD_ONLY): likewise.
10785         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
10786         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
10787         (SQL_CURSOR_STATIC): likewise.
10788         (SQL_CURSOR_TYPE): likewise.
10789         (SQL_CURSOR_TYPE_DEFAULT): likewise.
10790         (SQL_CVT_BIGINT): likewise.
10791         (SQL_CVT_BINARY): likewise.
10792         (SQL_CVT_BIT): likewise.
10793         (SQL_CVT_CHAR): likewise.
10794         (SQL_CVT_DATE): likewise.
10795         (SQL_CVT_DECIMAL): likewise.
10796         (SQL_CVT_DOUBLE): likewise.
10797         (SQL_CVT_FLOAT): likewise.
10798         (SQL_CVT_INTEGER): likewise.
10799         (SQL_CVT_LONGVARBINARY): likewise.
10800         (SQL_CVT_LONGVARCHAR): likewise.
10801         (SQL_CVT_NUMERIC): likewise.
10802         (SQL_CVT_REAL): likewise.
10803         (SQL_CVT_SMALLINT): likewise.
10804         (SQL_CVT_TIME): likewise.
10805         (SQL_CVT_TIMESTAMP): likewise.
10806         (SQL_CVT_TINYINT): likewise.
10807         (SQL_CVT_VARBINARY): likewise.
10808         (SQL_CVT_VARCHAR): likewise.
10809         (SQL_DATABASE_NAME): likewise.
10810         (SQL_DATE): likewise.
10811         (SQL_DRIVER_HDBC): likewise.
10812         (SQL_DRIVER_HENV): likewise.
10813         (SQL_DRIVER_HLIB): likewise.
10814         (SQL_DRIVER_HSTMT): likewise.
10815         (SQL_DRIVER_NAME): likewise.
10816         (SQL_DRIVER_ODBC_VER): likewise.
10817         (SQL_DRIVER_VER): likewise.
10818         (SQL_ENSURE): likewise.
10819         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
10820         (SQL_EXT_API_LAST): likewise.
10821         (SQL_EXT_API_START): likewise.
10822         (SQL_FD_FETCH_BOOKMARK): likewise.
10823         (SQL_FD_FETCH_PREV): likewise.
10824         (SQL_FD_FETCH_RESUME): likewise.
10825         (SQL_FETCH_PREV): likewise.
10826         (SQL_FETCH_RESUME): likewise.
10827         (SQL_FILE_NOT_SUPPORTED): likewise.
10828         (SQL_FILE_QUALIFIER): likewise.
10829         (SQL_FILE_TABLE): likewise.
10830         (SQL_FILE_USAGE): likewise.
10831         (SQL_FN_CVT_CONVERT): likewise.
10832         (SQL_FN_NUM_ABS): likewise.
10833         (SQL_FN_NUM_ACOS): likewise.
10834         (SQL_FN_NUM_ASIN): likewise.
10835         (SQL_FN_NUM_ATAN): likewise.
10836         (SQL_FN_NUM_ATAN2): likewise.
10837         (SQL_FN_NUM_CEILING): likewise.
10838         (SQL_FN_NUM_COS): likewise.
10839         (SQL_FN_NUM_COT): likewise.
10840         (SQL_FN_NUM_DEGREES): likewise.
10841         (SQL_FN_NUM_EXP): likewise.
10842         (SQL_FN_NUM_FLOOR): likewise.
10843         (SQL_FN_NUM_LOG): likewise.
10844         (SQL_FN_NUM_LOG10): likewise.
10845         (SQL_FN_NUM_MOD): likewise.
10846         (SQL_FN_NUM_PI): likewise.
10847         (SQL_FN_NUM_POWER): likewise.
10848         (SQL_FN_NUM_RADIANS): likewise.
10849         (SQL_FN_NUM_RAND): likewise.
10850         (SQL_FN_NUM_ROUND): likewise.
10851         (SQL_FN_NUM_SIGN): likewise.
10852         (SQL_FN_NUM_SIN): likewise.
10853         (SQL_FN_NUM_SQRT): likewise.
10854         (SQL_FN_NUM_TAN): likewise.
10855         (SQL_FN_NUM_TRUNCATE): likewise.
10856         (SQL_FN_STR_ASCII): likewise.
10857         (SQL_FN_STR_CHAR): likewise.
10858         (SQL_FN_STR_CONCAT): likewise.
10859         (SQL_FN_STR_DIFFERENCE): likewise.
10860         (SQL_FN_STR_INSERT): likewise.
10861         (SQL_FN_STR_LCASE): likewise.
10862         (SQL_FN_STR_LEFT): likewise.
10863         (SQL_FN_STR_LENGTH): likewise.
10864         (SQL_FN_STR_LOCATE): likewise.
10865         (SQL_FN_STR_LOCATE_2): likewise.
10866         (SQL_FN_STR_LTRIM): likewise.
10867         (SQL_FN_STR_REPEAT): likewise.
10868         (SQL_FN_STR_REPLACE): likewise.
10869         (SQL_FN_STR_RIGHT): likewise.
10870         (SQL_FN_STR_RTRIM): likewise.
10871         (SQL_FN_STR_SOUNDEX): likewise.
10872         (SQL_FN_STR_SPACE): likewise.
10873         (SQL_FN_STR_SUBSTRING): likewise.
10874         (SQL_FN_STR_UCASE): likewise.
10875         (SQL_FN_SYS_DBNAME): likewise.
10876         (SQL_FN_SYS_IFNULL): likewise.
10877         (SQL_FN_SYS_USERNAME): likewise.
10878         (SQL_FN_TD_CURDATE): likewise.
10879         (SQL_FN_TD_CURTIME): likewise.
10880         (SQL_FN_TD_DAYNAME): likewise.
10881         (SQL_FN_TD_DAYOFMONTH): likewise.
10882         (SQL_FN_TD_DAYOFWEEK): likewise.
10883         (SQL_FN_TD_DAYOFYEAR): likewise.
10884         (SQL_FN_TD_HOUR): likewise.
10885         (SQL_FN_TD_MINUTE): likewise.
10886         (SQL_FN_TD_MONTH): likewise.
10887         (SQL_FN_TD_MONTHNAME): likewise.
10888         (SQL_FN_TD_NOW): likewise.
10889         (SQL_FN_TD_QUARTER): likewise.
10890         (SQL_FN_TD_SECOND): likewise.
10891         (SQL_FN_TD_TIMESTAMPadd): likewise.
10892         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
10893         (SQL_FN_TD_WEEK): likewise.
10894         (SQL_FN_TD_YEAR): likewise.
10895         (SQL_FN_TSI_DAY): likewise.
10896         (SQL_FN_TSI_FRAC_SECOND): likewise.
10897         (SQL_FN_TSI_HOUR): likewise.
10898         (SQL_FN_TSI_MINUTE): likewise.
10899         (SQL_FN_TSI_MONTH): likewise.
10900         (SQL_FN_TSI_QUARTER): likewise.
10901         (SQL_FN_TSI_SECOND): likewise.
10902         (SQL_FN_TSI_WEEK): likewise.
10903         (SQL_FN_TSI_YEAR): likewise.
10904         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
10905         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
10906         (SQL_GB_NO_RELATION): likewise.
10907         (SQL_GB_NOT_SUPPORTED): likewise.
10908         (SQL_GD_BLOCK): likewise.
10909         (SQL_GD_BOUND): likewise.
10910         (SQL_GET_BOOKMARK): likewise.
10911         (SQL_GROUP_BY): likewise.
10912         (SQL_INFO_DRIVER_START): likewise.
10913         (SQL_INFO_FIRST): likewise.
10914         (SQL_INFO_LAST): likewise.
10915         (SQL_INTERVAL_DAY): likewise.
10916         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
10917         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
10918         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
10919         (SQL_INTERVAL_HOUR): likewise.
10920         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
10921         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
10922         (SQL_INTERVAL_MINUTE): likewise.
10923         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
10924         (SQL_INTERVAL_MONTH): likewise.
10925         (SQL_INTERVAL_SECOND): likewise.
10926         (SQL_INTERVAL_YEAR): likewise.
10927         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
10928         (SQL_KEYSET_SIZE): likewise.
10929         (SQL_KEYSET_SIZE_DEFAULT): likewise.
10930         (SQL_KEYWORDS): likewise.
10931         (SQL_LCK_EXCLUSIVE): likewise.
10932         (SQL_LCK_NO_CHANGE): likewise.
10933         (SQL_LCK_UNLOCK): likewise.
10934         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
10935         (SQL_LIKE_ONLY): likewise.
10936         (SQL_LOCK_TYPES): likewise.
10937         (SQL_LOGIN_TIMEOUT): likewise.
10938         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
10939         (SQL_LONGVARBINARY): likewise.
10940         (SQL_LONGVARCHAR): likewise.
10941         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
10942         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
10943         (SQL_MAX_DSN_LENGTH): likewise.
10944         (SQL_MAX_LENGTH): likewise.
10945         (SQL_MAX_LENGTH_DEFAULT): likewise.
10946         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
10947         (SQL_MAX_OWNER_NAME_LEN): likewise.
10948         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
10949         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
10950         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
10951         (SQL_MAX_ROWS): likewise.
10952         (SQL_MAX_ROWS_DEFAULT): likewise.
10953         (SQL_MODE_DEFAULT): likewise.
10954         (SQL_MODE_READ_ONLY): likewise.
10955         (SQL_MODE_READ_WRITE): likewise.
10956         (SQL_MULT_RESULT_SETS): likewise.
10957         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
10958         (SQL_NC_END): likewise.
10959         (SQL_NC_START): likewise.
10960         (SQL_NEED_LONG_DATA_LEN): likewise.
10961         (SQL_NNC_NON_NULL): likewise.
10962         (SQL_NNC_NULL): likewise.
10963         (SQL_NO_TOTAL): likewise.
10964         (SQL_NON_NULLABLE_COLUMNS): likewise.
10965         (SQL_NOSCAN): likewise.
10966         (SQL_NOSCAN_DEFAULT): likewise.
10967         (SQL_NOSCAN_OFF): likewise.
10968         (SQL_NOSCAN_ON): likewise.
10969         (SQL_NUM_EXTENSIONS): likewise.
10970         (SQL_NUM_FUNCTIONS): likewise.
10971         (SQL_NUMERIC_FUNCTIONS): likewise.
10972         (SQL_OAC_LEVEL1): likewise.
10973         (SQL_OAC_LEVEL2): likewise.
10974         (SQL_OAC_NONE): likewise.
10975         (SQL_ODBC_API_CONFORMANCE): likewise.
10976         (SQL_ODBC_CURSORS): likewise.
10977         (SQL_ODBC_KEYWORDS): likewise.
10978         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
10979         (SQL_ODBC_SQL_CONFORMANCE): likewise.
10980         (SQL_ODBC_SQL_OPT_IEF): likewise.
10981         (SQL_ODBC_VER): likewise.
10982         (SQL_OPT_TRACE): likewise.
10983         (SQL_OPT_TRACE_DEFAULT): likewise.
10984         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
10985         (SQL_OPT_TRACE_OFF): likewise.
10986         (SQL_OPT_TRACE_ON): likewise.
10987         (SQL_OPT_TRACEFILE): likewise.
10988         (SQL_OSC_CORE): likewise.
10989         (SQL_OSC_EXTENDED): likewise.
10990         (SQL_OSC_MINIMUM): likewise.
10991         (SQL_OSCC_COMPLIANT): likewise.
10992         (SQL_OSCC_NOT_COMPLIANT): likewise.
10993         (SQL_OU_DML_STATEMENTS): likewise.
10994         (SQL_OU_INDEX_DEFINITION): likewise.
10995         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
10996         (SQL_OU_PROCEDURE_INVOCATION): likewise.
10997         (SQL_OU_TABLE_DEFINITION): likewise.
10998         (SQL_OUTER_JOINS): likewise.
10999         (SQL_OWNER_TERM): likewise.
11000         (SQL_OWNER_USAGE): likewise.
11001         (SQL_PACKET_SIZE): likewise.
11002         (SQL_PC_NOT_PSEUDO): likewise.
11003         (SQL_POS_add): likewise.
11004         (SQL_POS_DELETE): likewise.
11005         (SQL_POS_OPERATIONS): likewise.
11006         (SQL_POS_POSITION): likewise.
11007         (SQL_POS_REFRESH): likewise.
11008         (SQL_POS_UPDATE): likewise.
11009         (SQL_POSITIONED_STATEMENTS): likewise.
11010         (SQL_PROCEDURE_TERM): likewise.
11011         (SQL_PROCEDURES): likewise.
11012         (SQL_PS_POSITIONED_DELETE): likewise.
11013         (SQL_PS_POSITIONED_UPDATE): likewise.
11014         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11015         (SQL_QL_END): likewise.
11016         (SQL_QL_START): likewise.
11017         (SQL_QU_DML_STATEMENTS): likewise.
11018         (SQL_QU_INDEX_DEFINITION): likewise.
11019         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11020         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11021         (SQL_QU_TABLE_DEFINITION): likewise.
11022         (SQL_QUALIFIER_LOCATION): likewise.
11023         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11024         (SQL_QUALIFIER_TERM): likewise.
11025         (SQL_QUALIFIER_USAGE): likewise.
11026         (SQL_QUERY_TIMEOUT): likewise.
11027         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11028         (SQL_QUICK): likewise.
11029         (SQL_QUIET_MODE): likewise.
11030         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11031         (SQL_RD_DEFAULT): likewise.
11032         (SQL_RD_OFF): likewise.
11033         (SQL_RD_ON): likewise.
11034         (SQL_RETRIEVE_DATA): likewise.
11035         (SQL_ROW_NUMBER): likewise.
11036         (SQL_ROW_UPDATES): likewise.
11037         (SQL_ROWSET_SIZE): likewise.
11038         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11039         (SQL_ROWVER): likewise.
11040         (SQL_SC_NON_UNIQUE): likewise.
11041         (SQL_SC_TRY_UNIQUE): likewise.
11042         (SQL_SC_UNIQUE): likewise.
11043         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11044         (SQL_SCROLL_DYNAMIC): likewise.
11045         (SQL_SCROLL_FORWARD_ONLY): likewise.
11046         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11047         (SQL_SCROLL_OPTIONS): likewise.
11048         (SQL_SCROLL_STATIC): likewise.
11049         (SQL_SEARCHABLE): likewise.
11050         (SQL_SIGNED_OFFSET): likewise.
11051         (SQL_SIMULATE_CURSOR): likewise.
11052         (SQL_SO_DYNAMIC): likewise.
11053         (SQL_SO_FORWARD_ONLY): likewise.
11054         (SQL_SO_KEYSET_DRIVEN): likewise.
11055         (SQL_SO_MIXED): likewise.
11056         (SQL_SO_STATIC): likewise.
11057         (SQL_SPEC_MAJOR): likewise.
11058         (SQL_SPEC_MINOR): likewise.
11059         (SQL_SPEC_STRING): likewise.
11060         (SQL_SQ_COMPARISON): likewise.
11061         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11062         (SQL_SQ_EXISTS): likewise.
11063         (SQL_SQ_IN): likewise.
11064         (SQL_SQ_QUANTIFIED): likewise.
11065         (SQL_SQLSTATE_SIZE): likewise.
11066         (SQL_SS_addITIONS): likewise.
11067         (SQL_SS_DELETIONS): likewise.
11068         (SQL_SS_UPDATES): likewise.
11069         (SQL_STATIC_SENSITIVITY): likewise.
11070         (SQL_STMT_OPT_MAX): likewise.
11071         (SQL_STMT_OPT_MIN): likewise.
11072         (SQL_STRING_FUNCTIONS): likewise.
11073         (SQL_SUBQUERIES): likewise.
11074         (SQL_SYSTEM_FUNCTIONS): likewise.
11075         (SQL_TABLE_STAT): likewise.
11076         (SQL_TABLE_TERM): likewise.
11077         (SQL_TIME): likewise.
11078         (SQL_TIMEDATE_add_INTERVALS): likewise.
11079         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11080         (SQL_TIMEDATE_FUNCTIONS): likewise.
11081         (SQL_TIMESTAMP): likewise.
11082         (SQL_TINYINT): likewise.
11083         (SQL_TRANSLATE_DLL): likewise.
11084         (SQL_TRANSLATE_OPTION): likewise.
11085         (SQL_TXN_ISOLATION): likewise.
11086         (SQL_TXN_VERSIONING): likewise.
11087         (SQL_TYPE_DRIVER_END): likewise.
11088         (SQL_TYPE_DRIVER_START): likewise.
11089         (SQL_TYPE_MAX): likewise.
11090         (SQL_TYPE_MIN): likewise.
11091         (SQL_TYPE_NULL): likewise.
11092         (SQL_U_UNION): likewise.
11093         (SQL_U_UNION_ALL): likewise.
11094         (SQL_UB_DEFAULT): likewise.
11095         (SQL_UB_OFF): likewise.
11096         (SQL_UB_ON): likewise.
11097         (SQL_UNICODE): likewise.
11098         (SQL_UNICODE_CHAR): likewise.
11099         (SQL_UNICODE_LONGVARCHAR): likewise.
11100         (SQL_UNICODE_VARCHAR): likewise.
11101         (SQL_UNION): likewise.
11102         (SQL_UNSEARCHABLE): likewise.
11103         (SQL_UNSIGNED_OFFSET): likewise.
11104         (SQL_USE_BOOKMARKS): likewise.
11105         (SQL_VARBINARY): likewise.
11106         (SQL_TRUE): add define for ODBC3.x.
11107         (SQL_FALSE): likewise.
11108         (SQL_AM_CONNECTION): likewise.
11109         (SQL_AM_NONE): likewise.
11110         (SQL_AM_STATEMENT): likewise.
11111         (SQL_API_SQLALLOCHANDLE): likewise.
11112         (SQL_API_SQLBINDPARAM): likewise.
11113         (SQL_API_SQLCLOSECURSOR): likewise.
11114         (SQL_API_SQLCOLATTRIBUTE): likewise.
11115         (SQL_API_SQLCOPYDESC): likewise.
11116         (SQL_API_SQLENDTRAN): likewise.
11117         (SQL_API_SQLFETCHSCROLL): likewise.
11118         (SQL_API_SQLFREEHANDLE): likewise.
11119         (SQL_API_SQLGETCONNECTATTR): likewise.
11120         (SQL_API_SQLGETDESCFIELD): likewise.
11121         (SQL_API_SQLGETDESCREC): likewise.
11122         (SQL_API_SQLGETDIAGFIELD): likewise.
11123         (SQL_API_SQLGETDIAGREC): likewise.
11124         (SQL_API_SQLGETENVATTR): likewise.
11125         (SQL_API_SQLGETSTMTATTR): likewise.
11126         (SQL_API_SQLSETCONNECTATTR): likewise.
11127         (SQL_API_SQLSETDESCFIELD): likewise.
11128         (SQL_API_SQLSETDESCREC): likewise.
11129         (SQL_API_SQLSETENVATTR): likewise.
11130         (SQL_API_SQLSETSTMTATTR): likewise.
11131         (SQL_ARD_TYPE): likewise.
11132         (SQL_AT_add_CONSTRAINT): likewise.
11133         (SQL_ATTR_APP_PARAM_DESC): likewise.
11134         (SQL_ATTR_APP_ROW_DESC): likewise.
11135         (SQL_ATTR_AUTO_IPD): likewise.
11136         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11137         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11138         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11139         (SQL_ATTR_IMP_ROW_DESC): likewise.
11140         (SQL_ATTR_METADATA_ID): likewise.
11141         (SQL_ATTR_OUTPUT_NTS): likewise.
11142         (SQL_CATALOG_NAME): likewise.
11143         (SQL_CODE_DATE): likewise.
11144         (SQL_CODE_TIME): likewise.
11145         (SQL_CODE_TIMESTAMP): likewise.
11146         (SQL_COLLATION_SEQ): likewise.
11147         (SQL_CURSOR_SENSITIVITY): likewise.
11148         (SQL_DATE_LEN): likewise.
11149         (SQL_DATETIME): likewise.
11150         (SQL_DEFAULT): likewise.
11151         (SQL_DESC_ALLOC_AUTO): likewise.
11152         (SQL_DESC_ALLOC_TYPE): likewise.
11153         (SQL_DESC_ALLOC_USER): likewise.
11154         (SQL_DESC_COUNT): likewise.
11155         (SQL_DESC_DATA_PTR): likewise.
11156         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11157         (SQL_DESC_INDICATOR_PTR): likewise.
11158         (SQL_DESC_LENGTH): likewise.
11159         (SQL_DESC_NAME): likewise.
11160         (SQL_DESC_NULLABLE): likewise.
11161         (SQL_DESC_OCTET_LENGTH): likewise.
11162         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11163         (SQL_DESC_PRECISION): likewise.
11164         (SQL_DESC_SCALE): likewise.
11165         (SQL_DESC_TYPE): likewise.
11166         (SQL_DESC_UNNAMED): likewise.
11167         (SQL_DESCRIBE_PARAMETER): likewise.
11168         (SQL_DIAG_ALTER_DOMAIN): likewise.
11169         (SQL_DIAG_ALTER_TABLE): likewise.
11170         (SQL_DIAG_CALL): likewise.
11171         (SQL_DIAG_CLASS_ORIGIN): likewise.
11172         (SQL_DIAG_CONNECTION_NAME): likewise.
11173         (SQL_DIAG_CREATE_ASSERTION): likewise.
11174         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11175         (SQL_DIAG_CREATE_COLLATION): likewise.
11176         (SQL_DIAG_CREATE_DOMAIN): likewise.
11177         (SQL_DIAG_CREATE_INDEX): likewise.
11178         (SQL_DIAG_CREATE_SCHEMA): likewise.
11179         (SQL_DIAG_CREATE_TABLE): likewise.
11180         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11181         (SQL_DIAG_CREATE_VIEW): likewise.
11182         (SQL_DIAG_DELETE_WHERE): likewise.
11183         (SQL_DIAG_DROP_ASSERTION): likewise.
11184         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11185         (SQL_DIAG_DROP_COLLATION): likewise.
11186         (SQL_DIAG_DROP_DOMAIN): likewise.
11187         (SQL_DIAG_DROP_INDEX): likewise.
11188         (SQL_DIAG_DROP_SCHEMA): likewise.
11189         (SQL_DIAG_DROP_TABLE): likewise.
11190         (SQL_DIAG_DROP_TRANSLATION): likewise.
11191         (SQL_DIAG_DROP_VIEW): likewise.
11192         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11193         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11194         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11195         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11196         (SQL_DIAG_GRANT): likewise.
11197         (SQL_DIAG_INSERT): likewise.
11198         (SQL_DIAG_MESSAGE_TEXT): likewise.
11199         (SQL_DIAG_NATIVE): likewise.
11200         (SQL_DIAG_NUMBER): likewise.
11201         (SQL_DIAG_RETURNCODE): likewise.
11202         (SQL_DIAG_REVOKE): likewise.
11203         (SQL_DIAG_ROW_COUNT): likewise.
11204         (SQL_DIAG_SELECT_CURSOR): likewise.
11205         (SQL_DIAG_SERVER_NAME): likewise.
11206         (SQL_DIAG_SQLSTATE): likewise.
11207         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11208         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11209         (SQL_DIAG_UPDATE_WHERE): likewise.
11210         (SQL_FALSE): likewise.
11211         (SQL_FETCH_ABSOLUTE): likewise.
11212         (SQL_FETCH_LAST): likewise.
11213         (SQL_FETCH_PRIOR): likewise.
11214         (SQL_FETCH_RELATIVE): likewise.
11215         (SQL_HANDLE_DBC): likewise.
11216         (SQL_HANDLE_DESC): likewise.
11217         (SQL_HANDLE_ENV): likewise.
11218         (SQL_HANDLE_STMT): likewise.
11219         (SQL_INSENSITIVE): likewise.
11220         (SQL_INTEGRITY): likewise.
11221         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11222         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11223         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11224         (SQL_MAX_IDENTIFIER_LEN): likewise.
11225         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11226         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11227         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11228         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11229         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11230         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11231         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11232         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11233         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11234         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11235         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11236         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11237         (SQL_MAXIMUM_ROW_SIZE): likewise.
11238         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11239         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11240         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11241         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11242         (SQL_NAMED): likewise.
11243         (SQL_NONSCROLLABLE): likewise.
11244         (SQL_NTSL): likewise.
11245         (SQL_NULL_HANDLE): likewise.
11246         (SQL_NULL_HDESC): likewise.
11247         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11248         (SQL_PRED_BASIC): likewise.
11249         (SQL_PRED_CHAR): likewise.
11250         (SQL_PRED_NONE): likewise.
11251         (SQL_ROW_IDENTIFIER): likewise.
11252         (SQL_SCROLLABLE): likewise.
11253         (SQL_SENSITIVE): likewise.
11254         (SQL_SUCCEEDED(rc)): likewise.
11255         (SQL_TIME_LEN): likewise.
11256         (SQL_TIMESTAMP_LEN): likewise.
11257         (SQL_TRANSACTION_CAPABLE): likewise.
11258         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11259         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11260         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11261         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11262         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11263         (SQL_TYPE_DATE): likewise.
11264         (SQL_TYPE_TIME): likewise.
11265         (SQL_TYPE_TIMESTAMP): likewise.
11266         (SQL_UNKNOWN_TYPE): likewise.
11267         (SQL_UNNAMED): likewise.
11268         (SQL_UNSPECIFIED): likewise.
11269         (SQL_XOPEN_CLI_YEAR): likewise.
11270         (SQLAllocConnect): add comment marking as deperecated.
11271         (SQLAllocEnv): likewise.
11272         (SQLAllocStmt): likewise.
11273         (SQLFreeConnect): likewise.
11274         (SQLFreeEnv): likewise.
11275         (SQLGetConnectOption): likewise.
11276         (SQLGetStmtOption): likewise.
11277
11278         * include/sqlext.h (#include <sqlucode.h>): add directive.
11279         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11280         (SQLColAttributes): likewise.
11281         (SQLBulkOperations): add function prototype.
11282         (SQLAllocHandleStd): likewise
11283         (TraceReturn): add Trace API prototype.
11284         (TraceVersion): likewise.
11285         (ODBCGetTryWaitValue):likewise.
11286         (ODBCSetTryWaitValue): likewise.
11287         (SQL_LOCK_RECORD): correct function macro.
11288         (SQL_REFRESH_RECORD): likewise.
11289         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11290         _WIN64 compatability.
11291         move defines for non-core functions from sql.h to sqlext.h (refer
11292         changes for sql.h)
11293         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11294         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11295         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11296         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11297         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11298         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11299         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11300         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11301         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11302         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11303         (SQL_AF_ALL): likewise.
11304         (SQL_AF_AVG): likewise.
11305         (SQL_AF_COUNT): likewise.
11306         (SQL_AF_DISTINCT): likewise.
11307         (SQL_AF_MAX): likewise.
11308         (SQL_AF_MIN): likewise.
11309         (SQL_AF_SUM): likewise.
11310         (SQL_AGGREGATE_FUNCTIONS): likewise.
11311         (SQL_ALL_CATALOGS): likewise.
11312         (SQL_ALL_SCHEMAS): likewise.
11313         (SQL_ALL_TABLE_TYPES): likewise.
11314         (SQL_ALTER_DOMAIN): likewise.
11315         (SQL_AM_CONNECTION): likewise.
11316         (SQL_AM_NONE): likewise.
11317         (SQL_AM_STATEMENT): likewise.
11318         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11319         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11320         (SQL_API_SQLALLOCHANDLESTD): likewise.
11321         (SQL_API_SQLBULKOPERATIONS): likewise.
11322         (SQL_ASYNC_MODE): likewise.
11323         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11324         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11325         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11326         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11327         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11328         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11329         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11330         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11331         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11332         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11333         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11334         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11335         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11336         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11337         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11338         (SQL_ATTR_ACCESS_MODE): likewise.
11339         (SQL_ATTR_ASYNC_ENABLE): likewise.
11340         (SQL_ATTR_AUTOCOMMIT): likewise.
11341         (SQL_ATTR_CONCURRENCY): likewise.
11342         (SQL_ATTR_CONNECTION_POOLING): likewise.
11343         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11344         (SQL_ATTR_CP_MATCH): likewise.
11345         (SQL_ATTR_CURRENT_CATALOG): likewise.
11346         (SQL_ATTR_CURSOR_TYPE): likewise.
11347         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11348         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11349         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11350         (SQL_ATTR_ENLIST_IN_XA): likewise.
11351         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11352         (SQL_ATTR_KEYSET_SIZE): likewise.
11353         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11354         (SQL_ATTR_MAX_LENGTH): likewise.
11355         (SQL_ATTR_MAX_ROWS): likewise.
11356         (SQL_ATTR_NOSCAN): likewise.
11357         (SQL_ATTR_ODBC_CURSORS): likewise.
11358         (SQL_ATTR_ODBC_VERSION): likewise.
11359         (SQL_ATTR_PACKET_SIZE): likewise.
11360         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11361         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11362         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11363         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11364         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11365         (SQL_ATTR_PARAMSET_SIZE): likewise.
11366         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11367         (SQL_ATTR_QUIET_MODE): likewise.
11368         (SQL_ATTR_RETRIEVE_DATA): likewise.
11369         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11370         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11371         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11372         (SQL_ATTR_ROW_NUMBER): likewise.
11373         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11374         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11375         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11376         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11377         (SQL_ATTR_TRACE): likewise.
11378         (SQL_ATTR_TRACEFILE): likewise.
11379         (SQL_ATTR_TRANSLATE_LIB): likewise.
11380         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11381         (SQL_ATTR_TXN_ISOLATION): likewise.
11382         (SQL_ATTR_USE_BOOKMARKS): likewise.
11383         (SQL_BATCH_ROW_COUNT): likewise.
11384         (SQL_BATCH_SUPPORT): likewise.
11385         (SQL_BRC_EXPLICIT): likewise.
11386         (SQL_BRC_PROCEDURES): likewise.
11387         (SQL_BRC_ROLLED_UP): likewise.
11388         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11389         (SQL_BS_ROW_COUNT_PROC): likewise.
11390         (SQL_BS_SELECT_EXPLICIT): likewise.
11391         (SQL_BS_SELECT_PROC): likewise.
11392         (SQL_C_INTERVAL_DAY): likewise.
11393         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11394         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11395         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11396         (SQL_C_INTERVAL_HOUR): likewise.
11397         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11398         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11399         (SQL_C_INTERVAL_MINUTE): likewise.
11400         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11401         (SQL_C_INTERVAL_MONTH): likewise.
11402         (SQL_C_INTERVAL_SECOND): likewise.
11403         (SQL_C_INTERVAL_YEAR): likewise.
11404         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11405         (SQL_C_NUMERIC): likewise.
11406         (SQL_C_SBIGINT): likewise.
11407         (SQL_C_TYPE_DATE): likewise.
11408         (SQL_C_TYPE_TIME): likewise.
11409         (SQL_C_TYPE_TIMESTAMP): likewise.
11410         (SQL_C_UBIGINT): likewise.
11411         (SQL_C_VARBOOKMARK): likewise.
11412         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11413         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11414         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11415         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11416         (SQL_CA_CREATE_ASSERTION): likewise.
11417         (SQL_CA1_ABSOLUTE): likewise.
11418         (SQL_CA1_BOOKMARK): likewise.
11419         (SQL_CA1_BULK_ADD): likewise.
11420         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11421         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11422         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11423         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11424         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11425         (SQL_CA1_LOCK_UNLOCK): likewise.
11426         (SQL_CA1_NEXT): likewise.
11427         (SQL_CA1_POS_DELETE): likewise.
11428         (SQL_CA1_POS_POSITION): likewise.
11429         (SQL_CA1_POS_REFRESH): likewise.
11430         (SQL_CA1_POS_UPDATE): likewise.
11431         (SQL_CA1_POSITIONED_DELETE): likewise.
11432         (SQL_CA1_POSITIONED_UPDATE): likewise.
11433         (SQL_CA1_RELATIVE): likewise.
11434         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11435         (SQL_CA2_CRC_APPROXIMATE): likewise.
11436         (SQL_CA2_CRC_EXACT): likewise.
11437         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11438         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11439         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11440         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11441         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11442         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11443         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11444         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11445         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11446         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11447         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11448         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11449         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11450         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11451         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11452         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11453         (SQL_CATALOG_LOCATION): likewise.
11454         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11455         (SQL_CATALOG_TERM): likewise.
11456         (SQL_CATALOG_USAGE): likewise.
11457         (SQL_CCOL_CREATE_COLLATION): likewise.
11458         (SQL_CCS_COLLATE_CLAUSE): likewise.
11459         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11460         (SQL_CCS_LIMITED_COLLATION): likewise.
11461         (SQL_CDO_COLLATION): likewise.
11462         (SQL_CDO_CONSTRAINT): likewise.
11463         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11464         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11465         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11466         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11467         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11468         (SQL_CDO_CREATE_DOMAIN): likewise.
11469         (SQL_CDO_DEFAULT): likewise.
11470         (SQL_CL_END): likewise.
11471         (SQL_CL_START): likewise.
11472         (SQL_COL_PRED_BASIC): likewise.
11473         (SQL_COL_PRED_CHAR): likewise.
11474         (SQL_COLUMN_DRIVER_START): likewise.
11475         (SQL_COLUMN_IGNORE): likewise.
11476         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11477         (SQL_CONVERT_GUID): likewise.
11478         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11479         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11480         (SQL_CONVERT_WCHAR): likewise.
11481         (SQL_CONVERT_WLONGVARCHAR): likewise.
11482         (SQL_CONVERT_WVARCHAR): likewise.
11483         (SQL_CP_DEFAULT): likewise.
11484         (SQL_CP_MATCH_DEFAULT): likewise.
11485         (SQL_CP_OFF): likewise.
11486         (SQL_CP_ONE_PER_DRIVER): likewise.
11487         (SQL_CP_ONE_PER_HENV): likewise.
11488         (SQL_CP_RELAXED_MATCH): likewise.
11489         (SQL_CP_STRICT_MATCH): likewise.
11490         (SQL_CREATE_ASSERTION): likewise.
11491         (SQL_CREATE_CHARACTER_SET): likewise.
11492         (SQL_CREATE_COLLATION): likewise.
11493         (SQL_CREATE_DOMAIN): likewise.
11494         (SQL_CREATE_SCHEMA): likewise.
11495         (SQL_CREATE_TABLE): likewise.
11496         (SQL_CREATE_TRANSLATION): likewise.
11497         (SQL_CREATE_VIEW): likewise.
11498         (SQL_CS_AUTHORIZATION): likewise.
11499         (SQL_CS_CREATE_SCHEMA): likewise.
11500         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11501         (SQL_CT_COLUMN_COLLATION): likewise.
11502         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11503         (SQL_CT_COLUMN_DEFAULT): likewise.
11504         (SQL_CT_COMMIT_DELETE): likewise.
11505         (SQL_CT_COMMIT_PRESERVE): likewise.
11506         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11507         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11508         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11509         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11510         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11511         (SQL_CT_CREATE_TABLE): likewise.
11512         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11513         (SQL_CT_LOCAL_TEMPORARY): likewise.
11514         (SQL_CT_TABLE_CONSTRAINT): likewise.
11515         (SQL_CTR_CREATE_TRANSLATION): likewise.
11516         (SQL_CU_DML_STATEMENTS): likewise.
11517         (SQL_CU_INDEX_DEFINITION): likewise.
11518         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11519         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11520         (SQL_CU_TABLE_DEFINITION): likewise.
11521         (SQL_CVT_GUID): likewise.
11522         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11523         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11524         (SQL_CVT_WCHAR): likewise.
11525         (SQL_CVT_WLONGVARCHAR): likewise.
11526         (SQL_CVT_WVARCHAR): likewise.
11527         (SQL_DA_DROP_ASSERTION): likewise.
11528         (SQL_DATETIME_LITERALS): likewise.
11529         (SQL_DB_DEFAULT): likewise.
11530         (SQL_DB_DISCONNECT): likewise.
11531         (SQL_DB_RETURN_TO_POOL): likewise.
11532         (SQL_DC_DROP_COLLATION): likewise.
11533         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11534         (SQL_DD_CASCADE): likewise.
11535         (SQL_DD_DROP_DOMAIN): likewise.
11536         (SQL_DD_RESTRICT): likewise.
11537         (SQL_DDL_INDEX): likewise.
11538         (SQL_DELETE_BY_BOOKMARK): likewise.
11539         (SQL_DESC_ARRAY_SIZE): likewise.
11540         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11541         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11542         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11543         (SQL_DESC_BASE_TABLE_NAME): likewise.
11544         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11545         (SQL_DESC_BIND_TYPE): likewise.
11546         (SQL_DESC_CASE_SENSITIVE): likewise.
11547         (SQL_DESC_CATALOG_NAME): likewise.
11548         (SQL_DESC_CONCISE_TYPE): likewise.
11549         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11550         (SQL_DESC_DISPLAY_SIZE): likewise.
11551         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11552         (SQL_DESC_LABEL): likewise.
11553         (SQL_DESC_LITERAL_PREFIX): likewise.
11554         (SQL_DESC_LITERAL_SUFFIX): likewise.
11555         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11556         (SQL_DESC_MAXIMUM_SCALE): likewise.
11557         (SQL_DESC_MINIMUM_SCALE): likewise.
11558         (SQL_DESC_NUM_PREC_RADIX): likewise.
11559         (SQL_DESC_PARAMETER_TYPE): likewise.
11560         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11561         (SQL_DESC_SCHEMA_NAME): likewise.
11562         (SQL_DESC_SEARCHABLE): likewise.
11563         (SQL_DESC_TABLE_NAME): likewise.
11564         (SQL_DESC_TYPE_NAME): likewise.
11565         (SQL_DESC_UNSIGNED): likewise.
11566         (SQL_DESC_UPDATABLE): likewise.
11567         (SQL_DI_CREATE_INDEX): likewise.
11568         (SQL_DI_DROP_INDEX): likewise.
11569         (SQL_DIAG_COLUMN_NUMBER): likewise.
11570         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11571         (SQL_DIAG_ROW_NUMBER): likewise.
11572         (SQL_DL_SQL92_DATE): likewise.
11573         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11574         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11575         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11576         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11577         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11578         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11579         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11580         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11581         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11582         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11583         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11584         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11585         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11586         (SQL_DL_SQL92_TIME): likewise.
11587         (SQL_DL_SQL92_TIMESTAMP): likewise.
11588         (SQL_DM_VER): likewise.
11589         (SQL_DRIVER_HDESC): likewise.
11590         (SQL_DROP_ASSERTION): likewise.
11591         (SQL_DROP_CHARACTER_SET): likewise.
11592         (SQL_DROP_COLLATION): likewise.
11593         (SQL_DROP_DOMAIN): likewise.
11594         (SQL_DROP_SCHEMA): likewise.
11595         (SQL_DROP_TABLE): likewise.
11596         (SQL_DROP_TRANSLATION): likewise.
11597         (SQL_DROP_VIEW): likewise.
11598         (SQL_DS_CASCADE): likewise.
11599         (SQL_DS_DROP_SCHEMA): likewise.
11600         (SQL_DS_RESTRICT): likewise.
11601         (SQL_DT_CASCADE): likewise.
11602         (SQL_DT_DROP_TABLE): likewise.
11603         (SQL_DT_RESTRICT): likewise.
11604         (SQL_DTC_DONE): likewise.
11605         (SQL_DTR_DROP_TRANSLATION): likewise.
11606         (SQL_DV_CASCADE): likewise.
11607         (SQL_DV_DROP_VIEW): likewise.
11608         (SQL_DV_RESTRICT): likewise.
11609         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11610         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11611         (SQL_EXT_API_LAST): likewise.
11612         (SQL_EXT_API_START): likewise.
11613         (SQL_FETCH_BY_BOOKMARK): likewise.
11614         (SQL_FETCH_FIRST_SYSTEM): likewise.
11615         (SQL_FETCH_FIRST_USER): likewise.
11616         (SQL_FN_CVT_CAST): likewise.
11617         (SQL_FN_STR_BIT_LENGTH): likewise.
11618         (SQL_FN_STR_CHAR_LENGTH): likewise.
11619         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11620         (SQL_FN_STR_OCTET_LENGTH): likewise.
11621         (SQL_FN_STR_POSITION): likewise.
11622         (SQL_FN_TD_CURRENT_DATE): likewise.
11623         (SQL_FN_TD_CURRENT_TIME): likewise.
11624         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11625         (SQL_FN_TD_EXTRACT): likewise.
11626         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11627         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11628         (SQL_FUNC_EXISTS(exists,api)): likewise.
11629         (SQL_GB_COLLATE): likewise.
11630         (SQL_HANDLE_SENV): likewise.
11631         (SQL_IK_ALL): likewise.
11632         (SQL_IK_ASC): likewise.
11633         (SQL_IK_DESC): likewise.
11634         (SQL_IK_NONE): likewise.
11635         (SQL_INDEX_KEYWORDS): likewise.
11636         (SQL_INFO_DRIVER_START): likewise.
11637         (SQL_INFO_LAST): likewise.
11638         (SQL_INFO_SCHEMA_VIEWS): likewise.
11639         (SQL_INITIALLY_DEFERRED): likewise.
11640         (SQL_INITIALLY_IMMEDIATE): likewise.
11641         (SQL_INSERT_STATEMENT): likewise.
11642         (SQL_INTERVAL): likewise.
11643         (SQL_IS_INSERT_LITERALS): likewise.
11644         (SQL_IS_INSERT_SEARCHED): likewise.
11645         (SQL_IS_INTEGER): likewise.
11646         (SQL_IS_POINTER): likewise.
11647         (SQL_IS_SELECT_INTO): likewise.
11648         (SQL_IS_SMALLINT): likewise.
11649         (SQL_IS_UINTEGER): likewise.
11650         (SQL_IS_USMALLINT): likewise.
11651         (SQL_ISV_ASSERTIONS): likewise.
11652         (SQL_ISV_CHARACTER_SETS): likewise.
11653         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11654         (SQL_ISV_COLLATIONS): likewise.
11655         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11656         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11657         (SQL_ISV_COLUMNS): likewise.
11658         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11659         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11660         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11661         (SQL_ISV_DOMAINS): likewise.
11662         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11663         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11664         (SQL_ISV_SCHEMATA): likewise.
11665         (SQL_ISV_SQL_LANGUAGES): likewise.
11666         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11667         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11668         (SQL_ISV_TABLES): likewise.
11669         (SQL_ISV_TRANSLATIONS): likewise.
11670         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11671         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11672         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11673         (SQL_ISV_VIEWS): likewise.
11674         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11675         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11676         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11677         (SQL_NO_COLUMN_NUMBER): likewise.
11678         (SQL_NO_ROW_NUMBER): likewise.
11679         (SQL_NOT_DEFERRABLE): likewise.
11680         (SQL_NUM_EXTENSIONS): likewise.
11681         (SQL_NUM_FUNCTIONS): likewise.
11682         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11683         (SQL_OIC_CORE): likewise.
11684         (SQL_OIC_LEVEL1): likewise.
11685         (SQL_OIC_LEVEL2): likewise.
11686         (SQL_OV_ODBC2): likewise.
11687         (SQL_OV_ODBC3): likewise.
11688         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11689         (SQL_PARAM_ARRAY_SELECTS): likewise.
11690         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11691         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11692         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11693         (SQL_PARAM_ERROR): likewise.
11694         (SQL_PARAM_IGNORE): likewise.
11695         (SQL_PARAM_PROCEED): likewise.
11696         (SQL_PARAM_SUCCESS): likewise.
11697         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11698         (SQL_PARAM_UNUSED): likewise.
11699         (SQL_PARC_BATCH): likewise.
11700         (SQL_PARC_NO_BATCH): likewise.
11701         (SQL_PAS_BATCH): likewise.
11702         (SQL_PAS_NO_BATCH): likewise.
11703         (SQL_PAS_NO_SELECT): likewise.
11704         (SQL_ROW_IGNORE): likewise.
11705         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11706         (SQL_ROW_PROCEED): likewise.
11707         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11708         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11709         (SQL_SC_SQL92_ENTRY): likewise.
11710         (SQL_SC_SQL92_FULL): likewise.
11711         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11712         (SQL_SCC_ISO92_CLI): likewise.
11713         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11714         (SQL_SCHEMA_TERM): likewise.
11715         (SQL_SCHEMA_USAGE): likewise.
11716         (SQL_SDF_CURRENT_DATE): likewise.
11717         (SQL_SDF_CURRENT_TIME): likewise.
11718         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11719         (SQL_SFKD_CASCADE): likewise.
11720         (SQL_SFKD_NO_ACTION): likewise.
11721         (SQL_SFKD_SET_DEFAULT): likewise.
11722         (SQL_SFKD_SET_NULL): likewise.
11723         (SQL_SFKU_CASCADE): likewise.
11724         (SQL_SFKU_NO_ACTION): likewise.
11725         (SQL_SFKU_SET_DEFAULT): likewise.
11726         (SQL_SFKU_SET_NULL): likewise.
11727         (SQL_SG_DELETE_TABLE): likewise.
11728         (SQL_SG_INSERT_COLUMN): likewise.
11729         (SQL_SG_INSERT_TABLE): likewise.
11730         (SQL_SG_REFERENCES_COLUMN): likewise.
11731         (SQL_SG_REFERENCES_TABLE): likewise.
11732         (SQL_SG_SELECT_TABLE): likewise.
11733         (SQL_SG_UPDATE_COLUMN): likewise.
11734         (SQL_SG_UPDATE_TABLE): likewise.
11735         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11736         (SQL_SG_USAGE_ON_COLLATION): likewise.
11737         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11738         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11739         (SQL_SG_WITH_GRANT_OPTION): likewise.
11740         (SQL_SNVF_BIT_LENGTH): likewise.
11741         (SQL_SNVF_CHAR_LENGTH): likewise.
11742         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11743         (SQL_SNVF_EXTRACT): likewise.
11744         (SQL_SNVF_OCTET_LENGTH): likewise.
11745         (SQL_SNVF_POSITION): likewise.
11746         (SQL_SP_BETWEEN): likewise.
11747         (SQL_SP_COMPARISON): likewise.
11748         (SQL_SP_EXISTS): likewise.
11749         (SQL_SP_IN): likewise.
11750         (SQL_SP_ISNOTNULL): likewise.
11751         (SQL_SP_ISNULL): likewise.
11752         (SQL_SP_LIKE): likewise.
11753         (SQL_SP_MATCH_FULL): likewise.
11754         (SQL_SP_MATCH_PARTIAL): likewise.
11755         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11756         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11757         (SQL_SP_OVERLAPS): likewise.
11758         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11759         (SQL_SP_UNIQUE): likewise.
11760         (SQL_SQL_CONFORMANCE): likewise.
11761         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
11762         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
11763         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
11764         (SQL_SQL92_GRANT): likewise.
11765         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
11766         (SQL_SQL92_PREDICATES): likewise.
11767         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
11768         (SQL_SQL92_REVOKE): likewise.
11769         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
11770         (SQL_SQL92_STRING_FUNCTIONS): likewise.
11771         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
11772         (SQL_SR_CASCADE): likewise.
11773         (SQL_SR_DELETE_TABLE): likewise.
11774         (SQL_SR_GRANT_OPTION_FOR): likewise.
11775         (SQL_SR_INSERT_COLUMN): likewise.
11776         (SQL_SR_INSERT_TABLE): likewise.
11777         (SQL_SR_REFERENCES_COLUMN): likewise.
11778         (SQL_SR_REFERENCES_TABLE): likewise.
11779         (SQL_SR_RESTRICT): likewise.
11780         (SQL_SR_SELECT_TABLE): likewise.
11781         (SQL_SR_UPDATE_COLUMN): likewise.
11782         (SQL_SR_UPDATE_TABLE): likewise.
11783         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
11784         (SQL_SR_USAGE_ON_COLLATION): likewise.
11785         (SQL_SR_USAGE_ON_DOMAIN): likewise.
11786         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
11787         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
11788         (SQL_SRJO_CROSS_JOIN): likewise.
11789         (SQL_SRJO_EXCEPT_JOIN): likewise.
11790         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
11791         (SQL_SRJO_INNER_JOIN): likewise.
11792         (SQL_SRJO_INTERSECT_JOIN): likewise.
11793         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
11794         (SQL_SRJO_NATURAL_JOIN): likewise.
11795         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
11796         (SQL_SRJO_UNION_JOIN): likewise.
11797         (SQL_SRVC_DEFAULT): likewise.
11798         (SQL_SRVC_NULL): likewise.
11799         (SQL_SRVC_ROW_SUBQUERY): likewise.
11800         (SQL_SRVC_VALUE_EXPRESSION): likewise.
11801         (SQL_SSF_CONVERT): likewise.
11802         (SQL_SSF_LOWER): likewise.
11803         (SQL_SSF_SUBSTRING): likewise.
11804         (SQL_SSF_TRANSLATE): likewise.
11805         (SQL_SSF_TRIM_BOTH): likewise.
11806         (SQL_SSF_TRIM_LEADING): likewise.
11807         (SQL_SSF_TRIM_TRAILING): likewise.
11808         (SQL_SSF_UPPER): likewise.
11809         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
11810         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
11811         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
11812         (SQL_SU_DML_STATEMENTS): likewise.
11813         (SQL_SU_INDEX_DEFINITION): likewise.
11814         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
11815         (SQL_SU_PROCEDURE_INVOCATION): likewise.
11816         (SQL_SU_TABLE_DEFINITION): likewise.
11817         (SQL_SVE_CASE): likewise.
11818         (SQL_SVE_CAST): likewise.
11819         (SQL_SVE_COALESCE): likewise.
11820         (SQL_SVE_NULLIF): likewise.
11821         (SQL_UB_FIXED): likewise.
11822         (SQL_UB_VARIABLE): likewise.
11823         (SQL_UNION_STATEMENT): likewise.
11824         (SQL_UPDATE_BY_BOOKMARK): likewise.
11825         (SQL_US_UNION): likewise.
11826         (SQL_US_UNION_ALL): likewise.
11827         (SQL_DESC_ROWVER): likewise.
11828         (SQL_GUID): likewise.
11829         (SQL_C_GUID): likewise.
11830         (ODBC_STD): likewise.
11831         (SQLAllocHandle): likewise.
11832         (SQLAllocEnv(p)): likewise.
11833         (SQL_YEAR): likewise.
11834         (SQL_MONTH): likewise.
11835         (SQL_DAY): likewise.
11836         (SQL_HOUR): likewise.
11837         (SQL_MINUTE): likewise.
11838         (SQL_SECOND): likewise.
11839         (SQL_YEAR_TO_MONTH): likewise.
11840         (SQL_DAY_TO_HOUR): likewise.
11841         (SQL_DAY_TO_MINUTE): likewise.
11842         (SQL_DAY_TO_SECOND): likewise.
11843         (SQL_HOUR_TO_MINUTE): likewise.
11844         (SQL_HOUR_TO_SECOND): likewise.
11845         (SQL_MINUTE_TO_SECOND): likewise.
11846         (SQL_ATTR_ANSI_APP): likewise.
11847         (SQL_AA_TRUE): likewise.
11848         (SQL_AA_FALSE): likewise.
11849
11850         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
11851         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
11852         (struct tagSQL_DAY_SECOND): likewise.
11853         (struct tagSQL_INTERVAL_STRUCT): likewise.
11854         (struct tagSQL_NUMERIC_STRUCT): likewise.
11855         (struct tagSQLGUID): add for 0DBC3.50.
11856         (enum SQLINTERVAL): add for ODBC3.x.
11857         (SQLWCHAR): add typedef.
11858         (SQLTCHAR): add typedef, conditional on UNICODE.
11859         (SQLLEN): add typedef for _WIN64, define for _WIN32.
11860         (SQLULEN): likewise.
11861         (SQLROWOFFSET): likewise.
11862         (SQLROWCOUNT): likewise.
11863         (SQLTRANSID): likewise.
11864         (SQLSETPOSIROW): likewise.
11865         (SQLHANDLE): add ODBC3.x typedef.
11866         (SQLHDESC): likewise.
11867         (SQLDATE): likewise.
11868         (SQLDECIMAL): likewise.
11869         (SQLDOUBLE): likewise.
11870         (SQLFLOAT): likewise.
11871         (SQLNUMERIC): likewise.
11872         (SQLREAL): likewise.
11873         (SQLTIME): likewise.
11874         (SQLTIMESTAMP): likewise.
11875         (SQLVARCHAR): likewise.
11876         (SQLBIGINT): likewise.
11877         (SQLUBIGINT): likewise.
11878         (SQL_DATE_STRUCT): likewise.
11879         (SQL_TIME_STRUCT): likewise.
11880         (SQL_TIMESTAMP_STRUCT): likewise.
11881         (ODBCINT64): add ODBC3.x define.
11882
11883         * lib/odbc32.def : regenerate.
11884
11885 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
11886
11887         * Apply Danny Smith patch 102275
11888         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11889         * include/objbase.h: (COM_RIGHTS): Add definition.
11890         (tagSTDMSHLFLAGS): add enumeration.
11891         (CoInitializeEx): Add prototypes.
11892         (CoGetStdMarshalEx): ditto.
11893         (CoCreateInstanceEx): ditto.
11894         (CoInitializeSecurity): ditto.
11895         (CoGetCallContext): ditto.
11896         (CoQueryProxyBlanket): ditto.
11897         (CoSetProxyBlanket): ditto.
11898         (CoCopyProxy): ditto.
11899         (CoQueryClientBlanket): ditto.
11900         (CoImpersonateClient): ditto.
11901         (CoRevertToSelf): ditto.
11902         (CoQueryAuthenticationServices): ditto.
11903         (CoSwitchCallContext): ditto.
11904         (CoGetInstanceFromFile): ditto.
11905         (CoGetInstanceFromIStorage): ditto.
11906         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
11907         (SOLE_AUTHENTICATION_INFO): ditto.
11908         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
11909         (COLE_DEFAULT_PRINCIPAL): Add definition.
11910         (COLE_DEFAULT_AUTHINFO): Ditto.
11911         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
11912         (RPC_PROTSEQ_VECTOR) Fix typo.
11913         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
11914         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
11915         attribute.
11916
11917 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
11918
11919         * lib/msvcp60.def: Apply Danny Smith patch 103321.
11920         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
11921         New file.
11922
11923 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
11924
11925         * include/winnt.h: Add PTOKEN_USER.
11926
11927 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11928
11929         * include/sqlucode.h: Apply Danny Smith patch 102443
11930         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11931         New file.
11932
11933 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11934
11935         * lib/odbccp32.def: Apply Danny Smith patch 102442
11936         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11937         New file.
11938
11939 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11940
11941         * include/odbcinst.h: Apply Danny Smith patch 102441
11942         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11943         New file.
11944
11945 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
11946
11947         * lib/Makefile.in: Don't make "links" to include/w32api directory.
11948
11949 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
11950
11951         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
11952
11953 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
11954
11955         * lib/Makefile.in: Install headers and libraries in tooldir.
11956
11957 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11958
11959         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
11960         SORT_STRINGSORT: ditto.
11961         CMAP*: ditto.
11962         CTRY_*: add new defines.
11963         LGRPID_*: ditto.
11964         LCMAP*: change defines to hex notation.
11965         CALID: change from ULONG to DWORD.
11966         CALTYPE: ditto.
11967         _cpinfoex[AW]: add structure.
11968         FoldString: correct Unicode mappings.
11969         GetCPInfoEx[AW]: add prototypes.
11970         EnumCalendarInfoEx[AW]: ditto.
11971         EnumDateFormatsEx[AW]: ditto.
11972         EnumSystemLanguageGroups[AW]: ditto.
11973         EnumLanguageGroupLocales[AW]: ditto.
11974         EnumUILanguages[AW]: ditto.
11975         GetSystemDefaultUILanguage[AW]: ditto.
11976         GetUserDefaultUILanguage[AW]: ditto.
11977         IsValidLanguageGroup[AW]: ditto.
11978         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
11979         LANGUAGEGROUP_ENUMPROC[AW]: ditto
11980         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
11981         UILANGUAGE_ENUMPROC[AW]: ditto
11982         DATEFMT_ENUMPROCEX[AW]: ditto
11983         LPCURRENCYFMT[AW]: add structure pointer typedef
11984         LPNUMBERFMT[AW]: ditto
11985
11986 2000-12-02  Matt Hargett  <matt@use.net>
11987
11988         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
11989         possible return code for the SetFilePointer() win32 API call.
11990
11991 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
11992
11993         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
11994
11995 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
11996
11997         * Makefile.in: increment VERSION.
11998         (dist:) Rename to srcdist.  Create new dist target to call
11999         srcdist and bindist targets.
12000         (srcdist:) New target.
12001         (clean-top:) add call to mostlyclean-top and add rm of distribution
12002         tarballs.
12003         * lib/Makefile.in: (uninstall:) modify to remove files from the
12004         new w32api subdirectory and to remove w32api subdirectory.
12005         (xuninstall:) Ditto.
12006         TODO: Add a task to redo the clean targets of Makefile.in
12007
12008 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12009
12010         * lib/Makefile.in: Install header files in w32api subdirectory.
12011
12012 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12013
12014         * CONTRIBUTIONS: New file.
12015         * README: Change the maintained by header.
12016         * TODO: Add a note about checking the TODO.
12017
12018 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12019
12020         * Merge in accepted changes from
12021         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12022         * include/basetyps.h: add comment for GUID_DEFINED
12023         * include/lm.h: add includes for lmerr.h and lmserver.h
12024         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12025         * include/lmerr.h:  add error codes
12026         * include/lmserver.h: replace LPTSTR with LPWSTR,
12027         LPTCSTR with LPWCSTR in structures and prototypes
12028         * include/lmshare.h: ditto
12029         * include/lmuse.h: ditto
12030         * include/lmstats.h: ditto
12031         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12032         * include/winbase.h: change first argument of CommConfigDialog to const
12033         * include/windowsx.h: add macros  defining FAR versions of
12034         mem and string functions for porting from Win16 code
12035         * include/winioctl.h:  added IOCTL_STORAGE defines
12036         * include/winnetwk.h:  added WNNC_NET flags
12037         * include/winnt.h: add include of <basetsd.h>;
12038         add structs; add pointer typedefs  for TOKEN structs
12039         * include/winsock.h: add guard around BSD-ish typedefs
12040         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12041         * include/basetsd.h: new file
12042         * include/raserror.h: ditto
12043         * include/rassapi.h: ditto
12044         * include/ras.h: ditto
12045         comment from Earnie: replaced original ras.h contribution with Danny's
12046         contribution as it is more complete.
12047         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12048
12049 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12050
12051         * Makefile.in: increment VERSION.  Change tar file name for dist and
12052         bindist targets to be more standard.
12053         * config.guess: Update with the currently published file.
12054         * config.sub: ditto.
12055         * configure.in: Use value of build_alias instead of testing for
12056         directory names to set BUILDENV.
12057         * configure: ditto.
12058         * lib/Makefile.in: Change the name of the targets install,
12059         install-headers and install-libraries to xinstall, xinstall-headers
12060         and xinstall-libraries for system target specified installation.
12061         Recreate targets install, install-headers and install-libraries for
12062         exec-prefix specified installation.  Ditto for the uninstall targets of
12063         the same name.
12064
12065 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12066
12067         * include/iprtrmib.h: Further layout changes according to standard.
12068         * include/iptypes.h: Ditto.
12069         * include/ntdef.h: Ditto.
12070         * include/ntsecapi.h: Ditto.
12071         * include/subauth.h: Ditto.
12072
12073 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12074
12075         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12076
12077 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12078
12079         * include/ntsecapi.h: New file.
12080         * include/subauth.h: Ditto.
12081         * include/ipexport.h: Fix global header define not to contain
12082         trailing underscore. Change layout according to standard.
12083         * include/iphlpapi.h: Ditto.
12084         * include/ipifcons.h: Ditto.
12085         * include/iprtrmib.h: Ditto.
12086         * include/iptypes.h: Ditto.
12087         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12088         of inclusion of ntsecapi.h and subauth.h.
12089         * lib/secur32.def: New stub for secur32.dll.
12090
12091 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12092
12093         * include/ras.h: New file.
12094         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12095         RasEnumDevicesW.
12096
12097 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12098
12099         * include/ntdef.h: Add define for NTAPI.
12100
12101 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12102
12103         * include/ipexport.h: Add missing `extern "C"' directives.
12104         * include/iphlpapi.h: Ditto.
12105         * include/iprtrmib.h: Ditto.
12106         * include/iptypes.h: Ditto.
12107
12108 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12109
12110         * include/ipifcons.h: New header file.
12111         * include/iprtrmib.h: Move operational states to ipifcons.h.
12112         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12113         declaration.
12114
12115 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12116
12117         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12118
12119 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12120
12121         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12122         * include/iptypes.h: New header file.
12123         * include/ipexport.h: Ditto.
12124         * include/iphlpapi.h: Ditto.
12125         * include/iprtrmib.h: Ditto.
12126
12127 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12128
12129         * include/ntdef.h: New file.
12130
12131 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12132
12133         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12134         to TOKEN_INFORMATION_CLASS type.
12135         Add QUOTA_LIMITS type.
12136
12137 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12138
12139         * include/userenv.h: New header file.
12140         * lib/userenv.def: New stub for userenv.dll.
12141
12142 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12143
12144         * include/winuser.h: Correct PCWPSTRUCT typo.
12145         (discovered by Axel Riese)
12146
12147 2000-07-27  DJ Delorie  <dj@redhat.com>
12148
12149         * include/windows.h: optimize non-inclusion of repeat headers
12150
12151 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12152
12153         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12154         LPTOKEN_SOURCE.
12155
12156 2000-07-11  DJ Delorie  <dj@cygnus.com>
12157
12158         * include/shlobj.h: add CSIDL_COMMON_*
12159
12160 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12161
12162         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12163         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12164         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12165         FILE_FLAG_OPEN_NO_RECALL.
12166         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12167         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12168         * winnt.h: Add typedef for GUID.
12169         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12170         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12171         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12172         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12173         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12174         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12175         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12176         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12177         * lib/psapi.def: New file.
12178
12179 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12180
12181         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12182         previously defined.
12183         * windef.h : Ditto.
12184
12185 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12186
12187         * include/winnt.h: Add some missing defines related to locale
12188         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12189
12190 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12191
12192         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12193
12194 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12195
12196         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12197
12198 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12199
12200         * include/wininet.h: Add another "INTERNET_OPTIONS".
12201
12202 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12203
12204         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12205
12206 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12207
12208         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12209         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12210         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12211         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12212
12213 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12214
12215         * include/winbase.h: Change first argument of ENUMRES* types to
12216         coincide with Microsoft usage.
12217
12218 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12219
12220         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12221
12222 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12223
12224         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12225         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12226         * include/winnt.h (SEC_*): Add macros.
12227         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12228         * include/ole.h: Workaround for C++ parser bug.
12229         * include/rpcdcep.h: Likewise.
12230         * include/winsock.h: Likewise.
12231
12232 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12233
12234         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12235
12236 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12237
12238         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12239         * include/wtypes.h (PBLOB, LPBLOB): Define.
12240         * include/winsock2.h: Much more complete version.
12241         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12242
12243         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12244         * include/winsock.h (FD_CLR): Add missing ')'.
12245         (timercmp): Fix macro to handle all 6 comparison operators.
12246         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12247         (AF_MAX): Update.
12248         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12249
12250         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12251         namespace pollution.
12252         * include/rpcndr.h: Likewise.
12253         * include/winnt.h: Likewise.
12254         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12255         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12256         * lib/ole32.def: Add missing exports.
12257         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12258         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12259         (NT_TIB): Define.
12260         * include/tlhelp32.h: New file.
12261
12262 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12263
12264         * include/rapi.h: New file.
12265         * lib/rapi.def: New file.
12266
12267 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12268
12269         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12270
12271 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12272
12273         * Snapshot 2000-02-03.
12274
12275 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12276
12277         * include/winnt.h: Add ARM support.
12278
12279 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12280
12281         From Greg Primes <gregory.l.priem@intel.com>:
12282         * include/oaidl.h (DESCKIND): Define macro.
12283         (ITypeComp): Define interface.
12284         (ITypeComp): Likewise.
12285         * rpcndr.h (DECLSPEC_UUID): Define macro.
12286         (MIDL_INTERFACE): Likewise.
12287
12288         * include/psapi.h: New file.
12289         * include/imagehlp.h: New file.
12290         * lib/imagehlp.def: New file.
12291
12292         * include/oaidl.h (tagVARIANT): Update fields.
12293
12294         From Craig Lanning <CraigL@DyCon.com>:
12295         * include/commctrl.h: Add some TCS_* macros.
12296         * include/winnls.h (IsValidLocale): Add prototype.
12297
12298 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12299
12300         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12301         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12302         * include/objbase.h: Likewise.
12303         * include/objidl.h: Likewise.
12304         * include/ocidl.h: New file.
12305         * include/oleauto.h: Likewise.
12306         * include/wtypes.h: Likewise.
12307         * lib/oleaut32.def: Likewise.
12308
12309         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12310         Thanks to "Jon Leichter" <jon@symas.com>.
12311         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12312         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12313         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12314         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12315         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12316         Dorsselaer" <frans@bia-bv.demon.nl>.
12317         * include/httpext.h: New file. Thanks to Jan Nijtmans
12318         <j.nijtmans@chello.nl>.
12319         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12320         redefinition of LPCWAVEFORMATEX in DirectX headers.
12321         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12322         <krzych00@priv7.onet.pl>.
12323         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12324         * include/windef.h (HRESULT): Guard definition to avoid
12325         redefinition in DirectX headers.
12326         * include/winnt.h: Add target macros from windows.h.
12327         * include/windows.h: Update synch comment for target macros.
12328         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12329         (_ANONYMOUS_UNION): Likewise.
12330         * include/wingdi.h (AbortPrinter): Move from here ...
12331         * include/winspool.h (AbortPrinter): to here and fix linkage.
12332         (MONITOR_INFO_2{A,W}): Define.
12333         * include/winsock.h (htons): Fix argument.
12334         (htonl): Likewise.
12335         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12336         (GROUP): Define.
12337         (GUID): Define conditionally.
12338         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12339         (WSASocket*): Declare.
12340         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12341
12342         * lib/dsetup.def: Remove leading underscore.
12343         * lib/dsound.def: Likewise.
12344         * lib/ws2_32.def: Likewise.
12345
12346 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12347
12348         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12349         handles.
12350
12351         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12352         * lib/dinput.c: Include windows.h for GCC.
12353         * lib/dxguid.c: Likewise.
12354         (INITGUID): Define macro.
12355
12356         * include/objidl.h (ISequentialStream): Define interface.
12357         (IStream): Derive from ISequentialStream.
12358
12359         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12360         Clone}): Mark as PURE.
12361         (IDataObject::EnumDAdvise): Likewise.
12362         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12363         (IViewObject::Unfreeze): Likewise.
12364         (IViewObject2::Unfreeze): Likewise.
12365
12366         * include/objidl.h: Add various IID_ declarations.
12367         * include/olectl.h: Likewise.
12368         * include/oleidl.h: Likewise.
12369
12370 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12371
12372         * Snapshot 1999-12-21.
12373
12374         * include/winbase.h (CancelIO): Rename to CancelIo.
12375         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12376         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12377
12378         * Merge with winsup-19991218.
12379         * include/winnt.h: Add defines for W2K ACL control flags.
12380
12381         * Merge with Anders Norlander's 19991130 snapshot.
12382
12383         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12384         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12385
12386         Patch from Harold Weissfield
12387         * include/shellapi.h: Added some ABN_* defines.
12388
12389         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12390         * lib/comctl32.def (_TrackMouseEvent): Import.
12391         * include/winuser.h: Misc. fixes from Sang Cho
12392         <sangcho@alpha94.chongju.ac.kr>.
12393         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12394         value of _WIN32_WINNT.
12395         * include/winuser.h: Reorganize SM_* defines in numerical order.
12396
12397 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12398
12399         * include/windef.h: Make RECTL a distinct type from RECT.
12400         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12401         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12402         (COMPAREITEMSTRUCT): Fix fields.
12403         (SERIALKEYSA): Likewise.
12404         (SERIALKEYSW): Likewise..
12405         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12406         (WIN32_FIND_DATAA): Likewise.
12407         (WIN32_FIND_DATAW): Likewise.
12408         * include/commdlg.h (SNDMSG): Define.
12409         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12410         (SO_CONNECT_TIME): Likewise.
12411         (AcceptEx): Declare.
12412         (GetAcceptExSockaddrs): Likewise.
12413         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12414         * include/winspool.h: Add RC_INVOKED guard.
12415         * lib/wsock32.def (AcceptEx@32): Export.
12416         (GetAcceptExSockaddrs@32): Likewise.
12417
12418 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12419
12420         * Snapshot 1999-11-18.
12421
12422         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12423         Octopod C++ IDE (and MSVC compatibility).
12424         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12425         * include/shellapi.h (ShellAbout*): Fix typo.
12426         * wingdi.h (FW_ULTRABOLD): Likewise.
12427         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12428         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12429         Add packing directives for various structures. All structure
12430         sizes now conform to MSVC.
12431
12432 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12433
12434         Released 1999-11-07.
12435
12436 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12437
12438         * include/winsock2.h: New file. Mostly a stub for now.
12439         * include/winbase.h (DllMain): Delete prototype.
12440         * include/commctrl.h (Header_SetItem): Fix macro.
12441         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12442         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12443         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12444
12445         Merge in changes from wxWindows.
12446         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12447         * include/oaidl.h (DISPID_*): Add macros.
12448         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12449         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12450         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12451         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12452
12453         Merge in changes from Octopod C++ IDE group.
12454         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12455         (Header_InsertItem): Fix macro.
12456         * include/oaidl.h (IID_IDispatch): Declare.
12457         (IID_ISupportErrorInfo): Likewise.
12458         (IDispatch): Rename Invoked to Invoke.
12459         * include/objidl.h (IPersist): Fix GetClassID.
12460         * include/oleauto.h (VectorFromBstr): Declare.
12461         (BstrFromVector): Likewise.
12462         * include/olectl.h (OLEMISC_*): Update.
12463         * include/olectlid.h (IID_IDispatch): Declare.
12464         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12465         (IOleInPlaceFrame): Fix.
12466         (ISupportErrorInfo): Define.
12467         (IErrorInfo): Define.
12468         * include/winuser.h (SIF_TRACKPOS): Define.
12469
12470 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12471
12472         Fix Merge errors:
12473         * include/winnt.h (PSID): Uncomment definition.
12474         (PISID): Rename from PSID.
12475         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12476         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12477
12478         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12479         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12480         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12481         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12482         include/shellapi.h, include/winbase.h, include/wingdi.h,
12483         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12484
12485 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12486
12487         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12488         Marius Kjeldahl <kjeldahl@hotmail.com>.
12489
12490 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12491
12492         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12493         (ERROR_SEVERITY_*): Likewise.
12494
12495 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12496
12497         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12498         (DllMain): Fix prototype.
12499
12500 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12501
12502         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12503         (cderr.h): Don't include.
12504         * include/winuser.h: Fix macro definitions.
12505
12506 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12507
12508         Merge with winsup 1999-07-29:
12509         * include/wincon.h (MOUSE_WHEELED): Define.
12510         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12511         (SECURITY_DESCRIPTOR): Add struct type.
12512         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12513         is equal to PVOID in the Platform SDK! So don't depend on accessing
12514         members through ->.
12515
12516 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12517
12518         * lib/Makefile.in (install-headers): Don't @ commands.
12519         (install-libraries): Ditto.
12520
12521 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12522
12523         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12524
12525 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12526
12527         Patch from Mumit Khan:
12528         * include/windows.h: Fix typo in winsock.h include guard and add
12529         _UWIN to the list.
12530         * include/winnt.h (__int64): Undefine first.
12531         (struct _SID): Declare.
12532
12533 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12534
12535         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12536
12537 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12538
12539         Patch from Mumit Khan:
12540         * Makefile.in: Do the right thing when cross-compiling.
12541         * include/windef.h: Don't define _export and __export if already
12542         defined.
12543
12544 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12545
12546         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12547         (DECLARE_INTERFACE_): Ditto.
12548
12549 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12550
12551         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12552
12553         Reported by Brad Porter
12554         * include/wingdi.h (FW_ULTRALIGHT): Add.
12555         (FW_DEMIBOLD): Add.
12556         (FW_ULTRABOLD): Add.
12557         (FW_BLACK): Add.
12558         (JOHAB_CHARSET): Add.
12559         (VIETNAMESE_CHARSET): Add.
12560
12561
12562 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12563
12564         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12565         * lib/Makefile.in (Makefile): Regenerate.
12566         * include/pshpack[1248].h: New files, if a program would use any of
12567         them.
12568         * include/poppack.h: Ditto.
12569         * include/windef.h (_WIN32_WINNT): Define
12570         * include/windows.h: Remove DUMMYUNIONNAME[45].
12571         * include/windows.h: Correctly define _M_IX86 to reflect the target
12572         processor.
12573         * include/windows.h: Add preliminary support for other architectures.
12574         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12575         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12576         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12577         issue with LARGE_INTEGER.
12578         (ANSI_NULL): Define.
12579         (PSZ): Define.
12580         (ACL_REVISION[1234]): Define.
12581         (MIN/MAX_ACL_REVISION): Define.
12582         (PTCHAR): Define.
12583         (LANG_USER_DEFAULT): Define.
12584         (LANG_SYSTEM_DEFAULT): Define.
12585         (LOCALE_NEUTRAL): Define.
12586         (SORTVERSIONFROMLCID): Define.
12587         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12588         (UNREFERENCED_LOCAL_VARIABLE): Define.
12589         (DBG_UNREFERENCED_PARAMETER): Define.
12590         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12591         * lib/mswsock.def: New file. Imports for mswsock.dll.
12592         * include/custcntl.h: New file. Necessary to compile some SDK
12593         samples.
12594         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12595         (WM_MOUSEWHEEL): Define.
12596         (WHEEL_DELTA): Define.
12597         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12598         (WM_NEXTMENU): Define.
12599         (CharNextA): Fix prototype.
12600         (CharNextW): Ditto.
12601
12602 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12603
12604         * include/winsock.h: Enclose in extern "C" if C++, huh?
12605         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12606
12607 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12608
12609         * include/windef.h (NULL): Define only ifndef
12610         (TRUE): Ditto, was previously only defined ifndef FALSE
12611         (PASCAL): Define as _pascal
12612         (__pascal): Define
12613         (WINAPIV): Define
12614         (min,max): Define only ifndef NOMINMAX
12615
12616 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12617
12618         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12619         You must define _WIN32_IE if you want support for it.
12620         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12621
12622 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12623
12624         * include/wincon.h: Add some ButtonState flags and EventFlags.
12625
12626 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12627
12628         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12629         interface define causes mayhem.
12630         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12631         defined.
12632         * include/windows.h: Undefine BOOL if __OBJC__ defined
12633
12634 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12635
12636         * include/winnls.h: Define additional code pages.
12637
12638 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12639
12640         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12641         order, corrected.
12642         (RtlZeroMemory): Use RtlFillMemory
12643
12644 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12645
12646         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12647         to get the correct size when used in some structs.
12648         (ULARGE_INTEGER): Ditto.
12649         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12650         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12651
12652 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12653
12654         * include/wininet.h: Enclose in extern "C" if c++
12655         (INTERNET_BUFFERSA/W): Define struct
12656         * include/wininet.h: Add some HSR_* defines
12657
12658 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12659
12660         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12661         * include/winnt.h (UNALIGNED): Define
12662         * include/windef.h (DECLSPEC_NORETURN): Define
12663
12664         * include/wininet.h (INTERNET_MAX_NAME): Remove
12665         (INTERNET_MAX_SCHEME_LENGTH): Define
12666         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12667         * include/wininet.def: Completely redone, it was losing badly.
12668
12669 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12670
12671         * lib/dplayx.def: Remove '_' prefixes
12672         * lib/shell32.def: Remove imports for IID_ContextMenu
12673
12674 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12675
12676         * Makefile.in (dist): Support dist target
12677         * lib/Makefile.in (dist): Likewise
12678         * lib/Makefile.in (uninstall-headers): Fix command
12679         * Makefile.in (bindist): Target to build a prebuilt dist
12680
12681         * lib/ws2_32.def: Winsock2 implib
12682
12683         * include/largeint.h: New header
12684         * include/largeint.c: Large integer support library
12685         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12686         (EXTRA_OBJS): Add largeint.o
12687
12688         * include/Makefile: Remove
12689         * lib/Makefile: Remove
12690         * Makefile: Remove
12691         * configure.in: New autoconf script
12692         * configure: generated configure script
12693         * Makefile.in: autoconf makefile template
12694         * lib/Makefile.in: Ditto
12695         * include/test.c: mv to lib/test.c
12696         * include/res.rc: mv to lib/res.rc
12697         * include/TODO: mv to .
12698         * include/Notes: mv to ./NOTES
12699
12700 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12701
12702         * include/zmouse.h (WHEEL_DELTA): Define
12703
12704 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12705
12706         * include/ddeml.h (HSZPAIR): Declare.
12707         * include/zmouse.h: New file.
12708
12709 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12710
12711         * lib/d3dim.def: New implib
12712         * lib/d3drm.def: Ditto
12713         * lib/d3dxof.def: Ditto
12714         * lib/ddraw.def: Ditto
12715         * lib/dinput.def: Ditto
12716         * lib/dplayx.def: Ditto
12717         * lib/dsetup.def: Ditto
12718         * lib/dsound.def: Ditto
12719         * lib/dinput.c: Guid library for DirectInput
12720         * lib/dxguid.c: Guid library for DirectX
12721
12722 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12723
12724         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12725         by Ron Aaron).
12726         * include/windowsx.h (GET_Y_LPARAM): Also missing
12727         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12728         by Mumit Khan).
12729
12730 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12731
12732         * include/scrnsave.h: New header file for screen saver library
12733         * lib/scrnsave.c: New file: screen saver library
12734
12735 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12736
12737         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12738         works well in when UNICODE is defined
12739
12740 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12741
12742         * include/winuser.h(STYLESTRUCT): New struct
12743         * include/wingdi.h:(GOBJENUMPROC): This function type should
12744         return void.
12745
12746 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12747
12748         * include/basetyps.h (LPGUID): New typedef
12749         * lib/glut.def: Import library defintions for glut.dll
12750         * lib/glu32.def: Ditto for glut32.dll
12751         * include/winnt.h: Fixed handling of wchar_t typedef
12752         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12753         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12754
12755 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12756
12757         * include/winbase.h(AbnormalTermination): Define as FALSE
12758         * include/commctrl.h: Support for new progress bar messages/styles
12759
12760 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
12761
12762         * include/commdlg.h(PageSetupDlg): New define
12763         * include/richedit.h: Missing SCF_* defines
12764         * include/winnt.h: Lots o' defines
12765         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
12766
12767 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
12768
12769         * include/commdlg.h: Removed pack pragma
12770         * lib/comctl32.def(InitCommonControlsEx@4): Added import
12771
12772 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
12773
12774         * Makefile: Set version to 0.1.5
12775         * lib/Makefile (clean): Fix typo
12776
12777         * include/commctrl.h: Removed pack pragma
12778         * include/cpl.h: Likewise
12779         * include/dbt.h: Likewise
12780         * include/dde.h: Likewise
12781         * include/nddeapi.h: Likewise
12782         * include/shellapi.h: Likewise
12783         * include/wincrypt.h: Likewise
12784         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
12785
12786         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
12787         (servent): Likewise
12788         (protoent): Likewise
12789
12790         * include/windows.h: Prevent inclusion of winsock.h if we are
12791         using or compiling cygwin. Define Win32_Winsock to force inclusion.
12792
12793 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
12794
12795         * include/winbase.h (CREATE_FORCEDOS): New define
12796
12797 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
12798
12799         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
12800         (COORD): Likewise
12801         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
12802         * include/windows.h: Added DUMMYUNIONNAME4 and 5
12803         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
12804         (PLUID_AND_ATTRIBUTES_ARRAY): New type
12805
12806         * include/ddeml.h: Removed unnecessary `#pragma pack'
12807         * include/imm.h: Likewise
12808         * include/nddeapi.h: Likewise
12809         * include/nspapi.h: Likewise
12810         * include/regstr.h: Likewise
12811         * include/wincon.h: Likewise
12812         * include/windef.h: Likewise
12813         * include/winioctl.h: Likewise
12814         * include/winnls.h: Likewise
12815         * include/winsvc.h: Likewise
12816         * include/winuser.h: Likewise
12817         * include/winver.h: Likewise
12818         * include/wtypes.h: Likewise
12819
12820 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
12821
12822         * Makefile (VERSION): Set to 0.1.4
12823         * include/basetyps.h: Check for NOCOMOBJECT
12824         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
12825         on comobject attribute.
12826         * lib/kernel32.def: Added a few functions
12827         * include/windef.h (DWORD): Changed back to unsigned long
12828
12829         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
12830         winresrc.h in turn includes the necessary headers. This makes things
12831         much simpler, no need to protect blocks of code in headers that
12832         should not be seen by the resource compiler.
12833
12834 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
12835
12836         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
12837         * include/wincon.h: Added console event type flags
12838         * include/winnt.h (FILE_SHARE_DELETE): Added
12839           (SECURITY_DESCRIPTOR): typedef as DWORD
12840
12841         * include/winuser.h (WM_PENWINFIRST): Fixed typo
12842         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
12843         define u_* types only if _SYS_TYPES_H is not defined.
12844
12845 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
12846
12847         * COPYING.LIB: Deleted
12848         * README: Updated to reflect license changes
12849         * include/shlobj.h: Remove extra comma on some enums
12850         * include/windef.h: Changed DWORD typedef from unsigned long to
12851         unsigned int in order to avoid warnings on bit fields that
12852         use DWORD.
12853         * include/Makefile (test): Compile with all warnings
12854         * include/unknwn.h: Include objfwd.h
12855         * include/winsock.h: Added missing copyright notices.
12856
12857 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
12858
12859         * lib/winmm.def: Corrected LIBRARY statement
12860         * include/mmsystem.h: Define mmioSeek codes if not already defined
12861         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
12862         (CreateStatusWindowW): Likewise
12863
12864         * include/winresrc.h: Include only files necessary instead of windows.h
12865         * include/dde.h: Allow inclusion in resource scripts.
12866         * include/winnt.h: Likewise
12867         * include/commctrl.h: Likewise
12868         * include/prsht.h: Likewise
12869         * README: Updated
12870
12871 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
12872
12873         * include/sqltypes.h (SQLHANDLE): Added this type
12874         (SQLHDESC): Likewise
12875         * include/sql.h (SQLFreeHandle): Added this prototype
12876         (SQLAllocHandle): Likewise
12877
12878 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
12879
12880         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
12881         conflicts with cygwin headers.
12882
12883 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
12884
12885         * Makefile: Changed VERSION to 0.1.3
12886         * Makefile (dist-lib): New target to make import library only
12887         distribution
12888         * Makefile (dist-hdr): New target to make headers only distribution
12889         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
12890         building one single distribution file.
12891         * dist.mak: Deleted
12892
12893         * include/lm.h: New file
12894         * include/lmcons.h: New file
12895         * include/lmalert.h: New file
12896         * include/lmaudit.h: New file
12897         * include/lmconfig.h: New file
12898         * include/lmapibuf.h: New file
12899         * include/lmaccess.h: New file
12900         * include/lmchdev.h: New file
12901         * include/lmremutl.h: New file
12902         * include/lmrepl.h: New file
12903         * include/lmerrlog.h: New file
12904         * include/lmat.h: New file
12905         * include/lmuse.h: New file
12906         * include/lmuseflg.h: New file
12907         * include/lmserver.h: New file
12908         * include/lmerr.h: New file
12909         * include/lmsname.h: New file
12910         * include/lmstats.h: New file
12911         * include/lmsvc.h: New file
12912         * include/lmwksta.h: New file
12913         * include/lmbrowsr.h: New file
12914
12915 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
12916
12917         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
12918         * include/unknwn.h: Added extern declaration for IID_IClassFactory
12919
12920         * include/initguid.h: New file
12921
12922         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
12923         int not supported
12924
12925         * include/winnt.h: Added USN
12926         * include/winnt.h: Changed handling of 64 bit int support
12927
12928         * include/windows.h: Added support for BC,LCC and MSVC
12929
12930         * include/windows.h: Changed handling machine architecture defines
12931
12932         * include/olectl.h: New file
12933
12934 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
12935
12936         * include/oleidl.h: Added IViewObject and IViewObject2
12937
12938         * include/objidl: Corrected prototype for IStorage::DestroyElement and
12939         IStorage::MoveElement
12940
12941         * include/oledlg.h: New file
12942
12943         * include/winresrc.h: New file
12944
12945         * include/wingdi.h: Added LPDOCINFO
12946
12947         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
12948         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
12949         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
12950         TabCtrl_SetImageList and TabCtrl_GetItemCount
12951         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
12952
12953         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
12954
12955         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
12956         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
12957
12958         * include/commdlg.h: Added LPDEVNAMES
12959
12960         * include/windows.h: Include excpt.h
12961
12962         * include/excpt.h: New file. This file just contains some
12963         stubs for SEH that do nothing.
12964
12965         * include/commctrl.h: Added general WM_NOTIFY codes
12966
12967         * include/winuser.h: Added ICON_SMALL and ICON_BIG
12968         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
12969         not be in the headers.
12970         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
12971         * include/winuser.h: Added old WM_SIZE parameter names so
12972         wxWindows compiles.
12973         * include/winuser.h: Added IDC_SIZE and IDC_ICON
12974         * include/winuser.h: Added LPDLGITEMTEMPLATE
12975         * include/winuser.h: HTCAPTION was missing value
12976         * include/winuser.h: Added WM_ACTIVE flags
12977
12978         * include/windowsx.h: Added _fmemcpy so V compiles; also added
12979         _fxx defines for memmove, memset and memcmp
12980
12981         * include/windef.h: Changed _export and __export to empty defines
12982
12983         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
12984         String parameters were not const and ExtractAssociatedIcon takes
12985         a WORD pointer not DWORD pointer as last parameter.
12986
12987         * Makefile: Changed VERSION to 0.1.2
12988
12989         * include/ole2ver.h: New file
12990
12991         * Makefile: Removed all dependencies on GLUT
12992
12993         * include/GL/glut.h: Removed file because of decision to remove
12994         files that are not part of the library.
12995         * lib/glut.def: Likewise
12996         * lib/glut32.def: Likewise
12997
12998         * include/windows.h: Include winperf.h
12999
13000         * include/winperf.h: New file
13001
13002         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13003
13004         * include/winnls.h: Added calendar types
13005         * include/winnls.h: Added country codes
13006
13007 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13008
13009         * include/windef.h: Added PROC and NEARPROC
13010
13011         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13012         * include/wingdi.h: Added OpenGL types and prototypes
13013         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13014         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13015         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13016         * include/wingdi.h: Added truetype character outline types
13017         * include/wingdi.h: Added DEVMODE initialization flags
13018         * include/wingdi.h: Added panose codes
13019         * include/wingdi.h: Added missing character sets
13020         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13021         NONANTIALIASED_QUALITY
13022         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13023         * include/wingdi.h: Added pointer types for EXTLOGPEN
13024         * include/wingdi.h: Added PATTERN type
13025         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13026         * include/wingdi.h: Added new text metric flags
13027         * include/wingdi.h: Added pitch and family flags
13028         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13029         * include/wingdi.h: Added METAHEADER
13030         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13031         * include/wingdi.h: Added TA_MASK
13032         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13033         * include/wingdi.h: Added error codes
13034
13035         * include/winuser.h: Added missing winhelp structures
13036         * include/winuser.h: Added dialog flags/styles/messages
13037         * include/winuser.h: Added EM_SETMARGIN codes
13038         * include/winuser.h: Made it possiblie to use IDI_XX values
13039         in resource files.
13040         * include/winuser.h: Added missing LoadImage load flags
13041         * include/winuser.h: Added missing message box flags
13042         * include/winuser.h: Added ScrollWindow codes
13043         * include/winuser.h: Added DT_WORD_ELLIPSIS
13044         * include/winuser.h: Added drag and drop support
13045         * include/winuser.h: Added WM_MENUCHAR return codes
13046         * include/winuser.h: Added DLGWINDOWEXTRA
13047         * include/winuser.h: Added missing SetWindowPos flags.
13048         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13049         * include/winuser.h: Added IDHOT_xx defines
13050         * include/winuser.h: Added MOD_WIN
13051         * include/winuser.h: Added missing defines and structs for owner draw
13052         controls.
13053         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13054         WPF_SETMINPOSITION
13055         * include/winuser.h: Added DrawAnimatedRects flags
13056         * include/winuser.h: Added WM_PRINT codes
13057         * include/winuser.h: Added CS_IME class style
13058         * include/winuser.h: Added WM_SIZE codes
13059         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13060         * include/winuser.h: Added WM_NCHITTEST return codes
13061         * include/winuser.h: Added WM_SIZING parameters
13062         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13063         * include/winuser.h: Added menu loop codes.
13064         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13065         NF_REQUERY
13066         * include/winuser.h: Added WM_POWER flags
13067         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13068         * include/winuser.h: Added missing message filter codes
13069         * include/winuser.h: Added WM_KEYXX message flags
13070         * include/winuser.h: Added WM_SHOWMESSAGE flags
13071         * include/winuser.h: Added old ShowWindow commands
13072         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13073         structures.
13074
13075         * include/mciavi.h: New file for the MCI AVI driver that for some
13076         reason is not in mmsystem.h.
13077
13078         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13079         * include/winbase.h: Added SECURITY_xx for CreateFile
13080         * include/winbase.h: Added RTS and DTS control values
13081         * include/winbase.h: Fixed SYSTEM_INFO structure
13082         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13083         * include/winbase.h: Added FILE_TYPE_REMOTE
13084         * include/winbase.h: Added modem status flags
13085         * include/winbase.h: Added HINSTANCE_ERROR
13086         * include/winbase.h: Added DefineDosDevice defines
13087         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13088         * include/winbase.h: Added STARTF_XX flags
13089         * include/winbase.h: Fixed typo on _lcreat prototype.
13090         * include/winbase.h: Moved DBG_XX to winnt.h
13091         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13092         winnt.h
13093
13094         * include/unknwn.h: Added extern declaration of IID_IUnknown
13095
13096         * include/windowsx.h: Added hmemcpy.
13097
13098         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13099         * include/winnt.h: Added PACCESS_TOKEN
13100         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13101         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13102         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13103         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13104         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13105         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13106
13107         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13108         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13109         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13110
13111         * include/winsvc.h: Removed conflicting defines which were supposed
13112         to be in winnt.h
13113
13114         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13115         and SERVICE_ERROR_TYPE.
13116
13117         * include/winnt.h: Added SERVICE_XX defines.
13118         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13119         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13120
13121         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13122         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13123         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13124         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13125
13126 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13127
13128         * include/winbase.h: Corrected prototype for CreateProcessA
13129
13130         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13131         driver extensions.
13132
13133         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13134         be LPSHELLFOLDER* not LPSHELLFOLDER.
13135
13136         * include/windows.h: Include commdlg.h
13137
13138         * include/winuser.h: Added MDICREATESTRUCT
13139
13140         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13141         CB_ERRSPACE, and CB_OKAY
13142
13143         * include/wingdi.h: Added LPBITMAPINFOHEADER
13144
13145         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13146         are meaningless.
13147         * include/rpcdce2.h: Likewise.
13148
13149         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13150
13151         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13152         * include/olectlid.h: Likewise
13153         * include/shlguid.h: Likewise
13154
13155         * include/coguid.h: Delete file since it was for 16 bit windows only.
13156
13157         * lib/*.def: Appended .dll to library name where needed.
13158
13159         * include/windef.h: Define _stdcall and __stdcall only if not
13160         previously defined instead of undefining first.
13161
13162         * include/dlgs.h: Put RC_INVOKED around structure defs
13163
13164         * include/intshcut.h: New file
13165         * include/isguids.h: New file
13166
13167         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13168
13169 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13170
13171         * include/winnt.h: Added check if _T is defined before defining it
13172
13173         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13174
13175         * include/dlgs.h: New file
13176
13177         * include/winbase.h: Removed DllEntryPoint define
13178
13179         * include/winbase.h: Added SetupComm prototype
13180
13181         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13182         supported anyway.
13183
13184         * include/basetyps.h: Removed use of COMOBJECT define, instead
13185         DECLARE_INTERFACE directly uses comobject attribute when GCC
13186         is used.
13187
13188         * include/wtypes.h: STGC enum was missing typedef
13189
13190         * include/objidl.h: ADVC enum was missing typedef
13191
13192         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13193         they are nested within the VOID definition.
13194
13195         * include/winbase.h: Added stream ids and attributes
13196
13197         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13198         to an ANYSIZE_ARRAY array.
13199
13200 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13201
13202         * include/windef.h: defined _declspec as __declspec since
13203         some programs (like VWCL) use _declspec instead of __declspec
13204
13205         * include/winnt.h: added COMPRESS_FORMAT defines
13206
13207         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13208
13209         * include/winnt.h: added HEAP_XXXX defines
13210
13211         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13212
13213         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13214         specification.
13215
13216         * include/winnt.h: added NTAPI define
13217
13218 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13219
13220         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13221         instead of CHAR or WCHAR.
13222
13223         * include/winnt.h: added _T define
13224
13225         * include/winnt.h: added test for _TCHAR_DEFINED
13226
13227         * include/winnt.h: included string.h for memory macros
13228
13229         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13230
13231         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13232
13233         * include/prsht.h: added PropSheet_XXX macros
13234
13235
13236 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13237
13238         * include/winspool.h: Changed DeletePrinterProcessor and
13239         DeletePrinterProvidor to DeletePrintXX.
13240
13241         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13242         LOGCOLORSPACEW.
13243
13244         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13245         variants
13246
13247         * include/wingdi.h: Likewise for GetLogColorSpace
13248
13249         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13250
13251         * include/richedit.h: Added missing defines and structures
13252
13253         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13254
13255         * include/winuser.h: Added HWND_DESKTOP
13256
13257 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13258
13259         * Makefile: Include ChangeLog when building source
13260         distribution (srcdist)
13261
13262         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13263         are always defined as STDAPI and STDAPI_
13264
13265         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13266         are always defined as STDAPI and STDAPI_
13267
13268         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13269
13270         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13271
13272         * ChangeLog started