OSDN Git Service

Prepare environment for Earnie's tools.
[mingw/mingw-org-wsl.git] / wslapi / ChangeLog
1 2017-11-09  Keith Marshall  <keith@users.osdn.me>
2
3         Avoid an implication that the API is exclusively 32-bit.
4
5         * Makefile.in (w32api_srcdir): Rename macro...
6         (wslapi_srcdir): ...to this; update all references.
7
8 2017-11-08  Keith Marshall  <keith@users.osdn.me>
9
10         Overhaul WinSock fd_set content management macros.
11
12         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
13         original implementations of each of these macros, redirecting to...
14         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
15         inline functions, respectively; these are more robust, and correct a
16         defect in the original FD_SET macro implementation, whereby duplicate
17         descriptors could be added to an fd_set array, but would not then be
18         removed by the corresponding FD_CLR macro.
19
20         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
21         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
22         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
23         function, which is implemented in each of these libraries.
24
25 2017-11-07  Keith Marshall  <keith@users.osdn.me>
26
27         Identify features which have been deprecated in WinSock v2.
28
29         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
30         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
31         (__MINGW_ATTRIB_DEPRECATED): ...to this.
32
33         * include/winsock.h include/winsock2.h: Qualify...
34         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
35         (WSACancelBlockingCall): ...each of these function prototypes, with...
36         (__WINSOCK2_DEPRECATED): ...this attribute.
37
38 2017-11-07  Keith Marshall  <keith@users.osdn.me>
39
40         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
41
42         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
43         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
44         with preferred convention for system feature test macros.
45
46 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
47
48         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
49
50         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
51         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
52         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
53         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
54         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
55         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
56         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
57         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
58         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
59         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
60         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
61
62         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
63         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
64
65 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
66
67         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
68
69         * include/wtypes.h: Tidy layout; assert copyright.
70         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
71         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
72         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
73         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
74         (__BLOB_T_DEFINED): ...this; do not define...
75         (_WTYPES_H): ...this external guard.
76
77         * include/nspapi.h: Tidy layout; assert copyright.
78         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
79         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
80         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
81         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
82         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
83         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
84         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
85         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
86         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
87         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
88         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
89         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
90         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
91         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
92         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
93         (__AW_ALIAS__): ...this, for definition of each of...
94         (SERVICE_INFO, LPSERVICE_INFO): ...these.
95
96         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
97         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
98         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
99         include nspapi.h selectively, to acquire them.
100
101 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
102
103         Factor <winerror.h> duplicate content out of winsock headers.
104
105         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
106         conditional block, and all of its content; selectively include...
107         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
108         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
109         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
110         define them, to segregate WSA error messages applicable to WinSock v2
111         only, from those applicable to both WinSock v1.1 and WinSock v2.
112         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
113         codes, except WSABASEERR, relative to WSABASEERR itself.
114
115 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
116
117         Factor <sys/time.h> duplicate content out of winsock headers.
118
119         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
120         conditional block, and all its content; include <sys/time.h> instead.
121         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
122         processing this header, such that only selected content from other
123         internally referenced headers is exposed.
124
125 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
126
127         Source BSD non-standard type definitions from mingwrt header.
128
129         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
130         conditional block, and its entire type definition content; include...
131         * include/sys/bsdtypes.h: ...this common file instead; it defines...
132         (u_char, u_int, u_long, u_short): ...these non-standard data types.
133
134 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
135
136         Correct misuse of __INSIDE_MSYS__ feature test.
137
138         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
139         omits "defined" operator; it should be expressed consistently as...
140         [! defined __INSIDE_MSYS__]: ...this; correct it.
141
142 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
143
144         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
145
146         * include/winsock.h: Tidy layout; assert copyright.
147         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
148
149         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
150         sections, which are common with <winsock.h>, are laid out congruently.
151         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
152         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
153         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
154         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
155         [UNICODE]: ...alternative typedefs, and function name aliases...
156         [!UNICODE]: ...versus this case.
157
158 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
159
160         Resolve secondary issue arising from MinGW-Bug [#2350]
161
162         * include/winuser.h (GetTitleBarInfo)
163         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
164         it conflicted with current MSDN documentation, so now falls within...
165         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
166
167 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
168
169         Resolve MinGW-Bug [#2350]
170
171         * include/winuser.h (GetTitleBarInfo): Move prototype after...
172         (PTITLEBARINFO): ...this type definition; it is used as a function
173         argument type, so must be defined beforehand.
174
175 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
176
177         Extend testsuite to cover winsock fd_set macro operations.
178
179         * tests/winsock.at: New file; it implements appropriate tests, and
180         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
181         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
182
183         * tests/testsuite.at.in (winsock.at): Integrate it.
184         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
185         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
186         default list of libraries, or resets the list to this initial default.
187         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
188         library specifications, to be used until subsequently reset.
189
190 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
191
192         Prepare and tag for release of MinGW.org WSL-5.0.1
193
194         * All files (wsl-5.0.1-release): Tag assigned.
195
196 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
197
198         Automate testsuite dependency generation.
199
200         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
201         enumerate all such wildcard matches as prerequisites, instead of...
202         (headers.at): ...this sole explicit dependency.
203
204 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
205
206         Make <winnt.h> header effectively self-contained.
207
208         * include/winnt.h (_WINNT_H): Defer definition unless included via...
209         (windef.h): ...this; include it, to enforce inclusion order, then...
210         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
211
212 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
213
214         Consolidate <winuser.h> version specific conditionals.
215
216         * include/winuser.h: Reorganize file content; group manifest constant
217         definitions into one nested collection of conditional blocks, with one
218         block per Windows version evolution; do likewise for type definitions
219         and function prototypes which are always exposed, and separately...
220         [! defined NOGDI]: ...for those which may be suppressed, when GDI
221         support is not required.
222
223 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
224
225         Make <winuser.h> header effectively self-contained.
226
227         * include/winuser.h (stdarg.h): Include it, in addition to...
228         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
229         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
230
231 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
232
233         Consolidate <wingdi.h> version specific conditionals.
234
235         * include/wingdi.h: Reorganize file content; group manifest constant
236         definitions into a single nested collection of conditional blocks, for
237         those definitions which are common to both Win9x and WinNT, with one
238         block per Windows version evolution, sorting alphabetically within
239         each block; do likewise for additional manifest constant definitions
240         which are specific to WinNT, and also for data type definitions and
241         function prototypes.
242
243 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
244
245         Tidy, and make <wingdi.h> header effectively self-contained.
246
247         * include/wingdi.h: Tidy layout; assert copyright.
248         (windef.h): Include it; this achieves self-containment.
249         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
250         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
251         (__AW_ALIAS__): ...this, when defining each of...
252         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
253         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
254         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
255         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
256         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
257         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
258         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
259         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
260         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
261         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
262         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
263         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
264         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
265         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
266         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
267         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
268         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
269         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
270         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
271         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
272         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
273         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
274         (wglUseFontOutlines, GetGlyphIndices): ...these.
275
276 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
277
278         Declare CONDITION_VARIABLE API, per feature request [#2314]
279
280         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
281         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
282         (InitializeConditionVariable, SleepConditionVariableCS)
283         (SleepConditionVariableSRW, WakeAllConditionVariable)
284         (WakeConditionVariable): ...declare prototypes.
285
286 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
287
288         Declare SRWLOCK API, to support feature request [#2314]
289
290         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
291         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
292         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
293         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
294         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
295         (TryAcquireSRWLockShared): Declare additional prototypes.
296
297 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
298
299         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
300
301         * include/winerror.h: Tidy layout; assert copyright.
302
303         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
304         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
305         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
306         both locations; it permitted inconsistency between the two.
307
308 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
309
310         Consolidate <winbase.h> version specific conditionals.
311
312         * include/winbase.h: Reorganize file content; group manifest constant
313         definitions into one nested collection of conditional blocks, with one
314         block per Windows version evolution, sorting alphabetically within each
315         block; do likewise for data type definitions and function prototypes.
316
317 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
318
319         Tidy, and make <winbase.h> header effectively self-contained.
320
321         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
322         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
323         (__AW_EXTENDED__): ...this; subsequently reimplement...
324         (__AW_ALIAS__): ...this, with original name, now encapsulating...
325         (__AW_SUFFIXED__): ...this.
326
327         * include/dbt.h (__AW_ALIAS__): Replace all references with...
328         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
329         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
330         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
331
332         * include/winbase.h: Tidy layout; assert copyright.
333         (stdarg.h, windef.h): Include them, to achieve self-containment.
334         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
335         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
336         [__AW_ALIAS__]: ...this, to correctly specify each of...
337         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
338         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
339         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
340         [__AW_SUFFIXED__]: ...this, to correctly map each of...
341         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
342         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
343         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
344         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
345         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
346         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
347         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
348         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
349         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
350         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
351         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
352         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
353         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
354         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
355         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
356         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
357         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
358         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
359         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
360         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
361         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
362         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
363         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
364         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
365         (GetPrivateProfileInt, GetPrivateProfileSection)
366         (GetPrivateProfileSectionNames, GetPrivateProfileString)
367         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
368         (GetProfileString, GetShortPathName, GetStartupInfo)
369         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
370         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
371         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
372         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
373         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
374         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
375         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
376         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
377         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
378         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
379         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
380         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
381         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
382         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
383         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
384         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
385         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
386         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
387         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
388         (WritePrivateProfileString, WritePrivateProfileStruct)
389         (WriteProfileSection, WriteProfileString): ...these, and add...
390         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
391         (GetFirmwareEnvironmentVariable): ...these previously missing generic
392         function name aliases.
393
394 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
395
396         Refactor mingwrt and w32api common makefile content.
397
398         * Makefile.in (w32api-srcdist-config-files): Rename it...
399         (w32api-srcdist-common-files): ...as this phoney build rule.
400         (shared_include_file): New macro; define it, and include named file.
401         (configure, config.status, Makefile, config.status.missing, _mingw.h)
402         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
403         out; relocate them to new file in common parent directory...
404         * ../Makefile.comm: ...here.
405
406 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
407
408         Correct a copyright notice update omission.
409
410         * configure.ac: Extend copyright date range to include 2017.  Also
411         clean up superfluous trailing whitespace.
412
413 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
414
415         Fix generated header file dependencies.
416
417         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
418         [VERSION.m4]: ...this; package version changes are no longer made...
419         [configure.ac]: ...here; delete associated prerequisite reference.
420         (distclean-local): Delete them.
421
422 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
423
424         Prepare and tag for release of w32api-5.0 package set.
425
426         * All files (wsl-5.0-release): Tag assigned.
427
428 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
429
430         Implement basic test suite infrastructure.
431
432         * tests: New subdirectory; it hosts...
433         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
434         * tests/headers.at: ...these new files; they implement the basic test
435         suite infrastructure, initially comprising header integrity checks.
436
437         * configure.ac (AC_PROG_CXX): Check it.
438         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
439         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
440         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
441         tests/Makefile.
442
443         * Makefile.in (check test tests): New rules; all are synonymous.
444         (check-recursive): New rule; invoked by each of the preceding three.
445         (w32api-srcdist-testsuite-files): New rule; implement and use it...
446         (w32api-srcdist-files): ...here.
447
448 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
449
450         Add missing constant definition, per issue [#2249].
451
452         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
453
454 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
455
456         Avoid unnecessary duplication of configuration files.
457
458         * Makefile.in (vpath install-sh): Define it; it matches...
459         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
460         rule for creating duplicate file reference links in $top_srcdir.
461         (configure): Add '-I ..' option, when running autoconf.
462         (w32api-srcdist-files): Rename it as...
463         (w32api-srcdist-package-files): ...this; remove dependencies on...
464         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
465         (w32api-srcdist-config-files): ...this new distributable files
466         enumeration goal; add it as one new prerequisite of...
467         (w32api-srcdist-files): ...this repurposed goal; also depends on...
468         (w32api-srcdist-package-files): ...this; populate it using...
469         (SRCDIST_ADD): ...this macro; redefine it accordingly.
470
471 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
472
473         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
474
475         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
476         it was previously transcribed incorrectly, as being equivalent to...
477         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
478         (FILE_DEVICE_DISK): ...this.
479
480 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
481
482         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
483
484         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
485         alternative generic symbol mapping definitions, and typedefs, with...
486         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
487         their respective ANSI and UNICODE specific references.
488
489 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
490
491         Deprecate obsolete <winable.h> and <pbt.h> headers.
492
493         * Makefile.in (%.h.in): Generalize vpath definition.
494         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
495         (w32api_generated_headers, replace_headers, macro_name): New macros.
496         (install-w32api-headers): Add dependency on w32api_dist_headers.
497         (%.h): New static pattern rule; it generates generic dependants of...
498         * include/obsolete.h.in: ...this new template for obsolete headers.
499
500         * include/winable.h include/pbt.h: Delete them; they are obsolete;
501         replace them by install-time generated generic stubs.
502
503 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
504
505         Update <winuser.h> and <dbt.h>; fix issue [#2317].
506
507         * include/winuser.h: Tidy layout; add copyright notice.
508         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
509         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
510         selective inclusion of content from other headers; delete when done.
511         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
512         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
513         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
514         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
515         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
516         them selectively from <dbt.h>, where they are properly defined.
517         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
518         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
519         formerly UINT, which doesn't match 64-bit size required for Win64.
520         (SetTimer): Likewise; also declare similar return type.
521         (WINEVENTPROC): Add missing CALLBACK attribute.
522         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
523
524         * include/w32api.h (__AW_ALIAS__): New macro; define it.
525         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
526
527         * include/dbt.h: Tidy layout; add copyright notice.
528         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
529         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
530         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
531         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
532         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
533         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
534         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
535         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
536         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
537         structure typedef names, and their respectively corresponding...
538         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
539         type names.
540
541 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
542
543         Fix a minor ISO-C++11 conformity issue.
544
545         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
546         by ISO-C++11, between concatenated string literal elements.
547         (GetFiberData, NtCurrentTeb): Likewise.
548
549 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
550
551         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
552
553         * include/ddk/winddk.h: Update per issue [#2307] resolution.
554         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
555
556 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
557
558         Prepare and tag all files for release of w32api-3.18.1
559
560         * configure.ac (AC_INIT): Increment patch level to 3.18.1
561
562 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
563
564         Resolve improper macro expansion issue [#2307].
565
566         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
567         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
568         dependent macro WITHIN the expansion of each of these; hence...
569
570         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
571         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
572         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
573         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
574         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
575         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
576         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
577         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
578         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
579         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
580         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
581         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
582         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
583         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
584         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
585         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
586         ...adjust these dependent macro definitions accordingly.
587
588         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
589         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
590         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
591         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
592         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
593         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
594         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
595         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
596         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
597         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
598
599 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
600
601         Update install-sh to match mingw.org/build-aux package.
602
603         * install-sh: Delete it; use version in parent directory instead,
604         recreating local copy, (as symlink, if supported), on demand.
605
606 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
607
608         Eliminate redundant configuration files.
609
610         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
611         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
612
613         * configure.ac (AC_PROG_LN_S): Add configuration check.
614
615 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
616
617         Discard redundant config.guess and config.sub files.
618
619         * config.guess config.sub: Delete them; they are no longer required.
620         * Makefile.in (SRCDIST_ADD): Remove related references.
621
622 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
623
624         Merge recent legacy branch updates to 5.0-active branch.
625
626         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
627         * include/sdkddkver.h include/setupapi.h include/windows.h
628         * include/winnt.h include/winuser.h include/winver.h
629         * include/wtsapi32.h lib/wtsapi32.def: Updated.
630
631 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
632
633         Prepare and tag all files for release of w32api-3.18.
634
635 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
636
637         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
638
639         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
640         references from $(MAKE) command lines; make passes them implicitly.
641
642 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
643
644         Backport MemoryBarrier() implementation from 4.0-dev branch.
645
646         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
647         Earnie's original inline implementation, but declared 'static' to fix
648         issue [#1661]; it is further modified, to avoid the broken pre-Vista
649         fallback identified by issue [#2131], and to remove references to...
650         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
651         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
652         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
653         back to inline assembly code when necessary.
654
655         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
656         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
657         code, for hosts which do not support the SSE2 'mfence' instruction.
658
659 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
660
661         Merge further W32API updates from Cygwin CVS.
662         Incorporated selected changes from 2012-08-01 to 2012-08-04.
663
664         * include/setupapi.h include/winuser.h include/winver.h
665         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
666
667 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
668
669         Update mapping of GCC to MSVC host identification macros.
670
671         * include/windows.h: Assert copyright; tidy layout.
672         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
673         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
674         [!_WINSVC_H]: Do not explicitly test these here; they are properly
675         managed implicitly, by GCC, when including the associated headers.
676
677         * include/winnt.h: Assert copyright; tidy layout.
678         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
679         (__aligned__, __always_inline__, __selectany__): Prefer these...
680         (aligned, always_inline, selectany): ...to these attribute forms.
681         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
682         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
683         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
684         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
685         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
686         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
687         (_M_IX86): ...also removing this, but relocate it to...
688         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
689         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
690         appropriate.
691
692         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
693         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
694
695 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
696
697         Merge W32API updates, from Cygwin CVS, into legacy branch.
698         Incorporate changes since release of w32api-3.17, until 2012-07-06.
699
700         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
701         2012-04-28 commit to Cygwin CVS.
702
703         * include/gdiplus/gdiplustypes.h include/imagehlp.h
704         * include/routprot.h include/shlwapi.h include/userenv.h
705         * include/winbase.h include/wincon.h include/windef.h
706         * include/winerror.h include/wingdi.h include/winnt.h
707         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
708         match Cygwin CVS state, as of 2012-07-06.
709
710         * include/wincrypt.h: Updated to remove duplicate manifest constant
711         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
712         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
713         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
714         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
715         copies of these further duplicated definitions, identified during
716         the merging operation.
717
718 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
719
720         Synchronize package version management with MinGW Runtime.
721
722         * VERSION.m4: New file; link it to keep in sync with identically named
723         file in top level composite package source directory; it defines...
724         (__VERSION__): ...this new composite package version macro.
725
726         * aclocal.m4: Link it, to keep in sync with identically named files in
727         top level composite source and sibling mingwrt sub-package directories.
728         (__VERSION__): New macro; include VERSION.m4 to define it.
729         (__BUG_REPORT_URL__): New macro; define it.
730
731         * configure.ac (AC_INIT): Assign package version and bug report URL...
732         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
733         automatic inclusion of aclocal.m4
734
735         * Makefile.in (configure): Add dependency on VERSION.m4
736
737 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
738
739         Eliminate redundant <parts/winioctl.h> header.
740
741         * include/parts/winioctl.h: Delete it; distribute its content...
742         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
743         ...among these, separating it into discrete sections based on...
744         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
745         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
746         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
747         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
748
749         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
750         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
751
752 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
753
754         Enforce consistent specification of package version.
755
756         * include/w32api.h: Rename as...
757         * include/w32api.h.in: ...this build-time template file.
758         (__W32API_VERSION): Redefine it, in terms of...
759         (%PACKAGE_VERSION_LONG%): ...this substitution template.
760         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
761         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
762         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
763         (%PACKAGE_VERSION_PATCH%): ...these.
764
765         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
766         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
767         mingwrt/include/_mingw.h.in file.
768
769         * Makefile.in (all-w32api-libs): Add dependency on...
770         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
771         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
772         they apply appropriate substitutions to the renamed template files.
773         (install-w32api-headers): Explicitly add w32api.h
774
775 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
776
777         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
778
779         * include/parts/winioctl.h: New file; it provides infrastructure for
780         sharing of common code between DDK headers and primary <winioctl.h>
781         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
782         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
783         macros; they facilitate more consise expression of factored out IOCTL
784         and FSCTL macros; define them.
785
786         * include/ddk/ntddk.h: Assert copyright; tidy layout.
787         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
788         (_DDK_NTDDK_H): ...this; it provides better indication of location.
789         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
790
791         * include/ddk/winddk.h: Assert copyright; tidy layout.
792         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
793         (_DDK_WINDDK_H): ...this; it provides better indication of location.
794         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
795         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
796         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
797         (METHOD_NEITHER): Redefine as enumeration; factor it out.
798         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
799         (FILE_WRITE_ACCESS): Likewise.
800         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
801         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
802         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
803         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
804         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
805         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
806         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
807         (PPARTITION_INFORMATION_MBR): Likewise.
808         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
809         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
810         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
811         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
812         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
813         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
814         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
815         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
816         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
817         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
818         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
819         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
820         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
821         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
822         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
823         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
824         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
825         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
826         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
827         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
828         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
829         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
830         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
831         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
832         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
833         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
834         was defined only when including this enumeration from winioctl.h
835         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
836         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
837         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
838         include parts/winioctl.h
839
840         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
841         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
842         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
843         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
844         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
845         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
846         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
847         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
848         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
849         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
850         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
851         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
852         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
853         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
854         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
855
856         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
857         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
858         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
859         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
860         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
861         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
862         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
863         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
864         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
865         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
866         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
867         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
868         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
869         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
870         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
871         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
872         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
873         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
874         these macros are now defined in parts/winioctl.h; include it.
875         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
876         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
877         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
878         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
879         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
880         (VALID_NTFT): Redefine as enumeration; factor it out.
881         (IsRecognizedPartition, IsContainerPartition): Factor out.
882         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
883         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
884         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
885         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
886         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
887         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
888         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
889         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
890         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
891         (struct _PARTITION_INFORMATION): Change field data types for...
892         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
893         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
894         with Windows DDK convention, then factor out struct, together with...
895         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
896         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
897         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
898         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
899         (struct _GET_LENGTH_INFORMATION)
900         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
901         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
902         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
903         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
904         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
905         (PFORMAT_EX_PARAMETERS): Factor out.
906         (struct _REASSIGN_BLOCKS): Change field data types for...
907         (Reserved, Count): ...these fields, from WORD to USHORT, and...
908         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
909         convention, then factor out the struct definition, together with...
910         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
911         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
912         (PSET_PARTITION_INFORMATION): Factor out.
913         (struct _VERIFY_INFORMATION): Change field data type for...
914         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
915         factor out the entire struct definition, together with...
916         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
917         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
918         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
919         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
920         (PDISK_GROW_PARTITION): Factor out.
921
922         * include/winioctl.h: Assert copyright; tidy layout; incorporate
923         definitions from Windows DDK headers, by including parts/winioctl.h;
924         delete duplicate definitions already identified as having been factored
925         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
926         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
927         UCHAR, resulting in no significant changes, except that...
928         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
929         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
930         (StorageManagerName): ...these previously missing fields, originally
931         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
932         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
933
934 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
935
936         Windows application module version information API updates.
937
938         * include/winver.h: Assert copyright; tidy layout.
939         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
940         (__AW_SUFFIXED__): Use throughout, to identify generic functions
941         having both ANSI and UTF-16LE specific alternative implementations.
942         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
943         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
944         note that both are generic, with ANSI and UTF-16LE implementations,
945         but the ANSI implementations are missing from MSVCRT.DLL when...
946         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
947
948         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
949         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
950
951 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
952
953         Revert a failed experimental macro construct.
954
955         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
956         code, and doesn't work in the C preprocessor conditional context where
957         its associated constant definitions are most likely to be required.
958         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
959         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
960         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
961         now in terms of their preferred equivalents from <sdkddkver.h>
962
963 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
964
965         Code clean-up; fix MinGW-Bug [#2263].
966
967         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
968         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
969         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
970
971         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
972         style comments, using ISO-C conforming style; remove all redundant
973         parameter names from function prototype declarations, throughout.
974         (pragma GCC system_header): Remove pointless conditional guard.
975         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
976         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
977         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
978         alternatives, respectively; they offer improved self-documentation.
979         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
980         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
981         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
982         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
983         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
984         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
985         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
986         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
987         from their __AW_STRING_A__ equivalent string constant definitions.
988         (GET_ALG_CLASS): Redefine, expressing result in terms of...
989         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
990         a hexadecimal expression of the mask value over the former decimal.
991         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
992         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
993         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
994         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
995         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
996         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
997         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
998         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
999         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1000         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1001         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1002         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1003         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1004         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1005         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1006         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1007         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1008         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1009         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1010         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1011         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1012         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1013         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1014         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1015         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1016         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1017         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1018         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1019         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1020         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1021         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1022         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1023         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1024         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1025         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1026         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1027         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1028         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1029         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1030         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1031         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1032         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1033         express them in hexadecimal, in preference to original decimal form.
1034         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1035         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1036         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1037         a string literal, but was missing delimiting quotes; insert them.
1038         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1039         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1040         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1041         aliases for each of the UNICODE/non-UNICODE cases respectively.
1042         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1043         was declared as type LPTSTR, but should be type LPSTR.
1044         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1045         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1046         type LPSTR, but should be type LPWSTR.
1047         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1048         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1049         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1050
1051 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1052
1053         Correct defect in build system compilation rule.
1054
1055         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1056         source file; it expands to also include prerequisite header files,
1057         which should not appear on the compilation command line.  Rewrite
1058         rule in static pattern format, and use $< instead.
1059
1060 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1061
1062         Build system corrections for GCC build time support.
1063
1064         * configure.ac (AC_PROG_CC): Don't use this; we need...
1065         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1066         building with only a stage 1 partially built GCC installation.
1067
1068         * Makefile.in (install-headers): New make objective; map it to...
1069         (install-w32api-headers): ...this, for which it is a logical alias.
1070
1071 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1072
1073         Overhaul and streamline build system configuration.
1074
1075         * configure.in: Delete obsolete file; replace with...
1076         * configure.ac: New file; rewritten per current autoconf conventions.
1077
1078         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1079         it now processes the entire build without using separate sub-makes.
1080
1081         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1082         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1083
1084 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1085
1086         Remove unused aclocal.m4 configuration file.
1087
1088         * aclocal.m4: Delete it; it provides no content used by this package.
1089
1090 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1091
1092         Adapt platform feature checks to NTDDI_VERSION conventions.
1093
1094         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1095         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1096         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1097         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1098         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1099
1100         * include/w32api.h: Assert copyright; include sdkddkver.h.
1101         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1102         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1103         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1104         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1105         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1106         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1107         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1108         macro definitions by long integer constants, and mark as deprecated.
1109         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1110         mingwrt/include/_mingw.h, whence we similarly relocate...
1111         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1112
1113         * include/windef.h: Assert copyright; include w32api.h, whence we
1114         infer default assignments, per included sdkddkver.h, for each of...
1115         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1116         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1117
1118 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1119
1120         Remove generated configure script from revision control.
1121
1122         * configure: Delete from SCM; maintainer must regenerate it, when
1123         required, as SCM will now ignore it.
1124
1125 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1126
1127         Cosmetic adjustment to match MSDN documentation.
1128
1129         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1130         of parameter #1 to be LPCVOID, in preference to formerly specified,
1131         and functionally equivalent, 'const LPVOID'.
1132
1133 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1134
1135         Correct typos, as identified by issue [#1534].
1136
1137         * include/setupapi.h (SetupCancelTemporary): Should be...
1138         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1139         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1140         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1141         (SetupQueryA, SetupQueryW): ...these respectively to...
1142         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1143         (SetupDiGetWizardage): Misspelled; correct it to...
1144         (SetupDiGetWizardPage): ...this.
1145
1146 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1147
1148         Declare WTSVirtualChannel API functions per issue [#1342].
1149
1150         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1151         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1152         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1153         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1154         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1155
1156         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1157
1158 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1159
1160         Correct MENUITEMINFO structure definition per issue [#1659].
1161
1162         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1163         field was defined as type DWORD; correct it to type ULONG_PTR.
1164
1165 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1166
1167         Extend visibility of winsock definitions when building Cygwin.
1168
1169         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1170         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1171         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1172         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1173         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1174         [__INSIDE_MSYS__]: ...keep them hidden.
1175
1176         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1177         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1178         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1179         [__INSIDE_MSYS__]: ...also keep them hidden.
1180
1181 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1182
1183         Correct version guard for WinXP minimum requirement.
1184
1185         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1186         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1187         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1188         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1189
1190 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1191
1192         Add missing <shobjidl.h> and associated UUID implementation.
1193
1194         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1195         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1196
1197 2012-03-19  Ben Greear  <greear@users.sf.net>
1198
1199         Adjust header file definition order, to fix issue [#1570].
1200
1201         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1202         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1203
1204 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1205
1206         Add missing return value, flagged by 'make test'.
1207
1208         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1209         Return NO_ERROR in virtual definition.
1210
1211 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1212
1213         Remove duplicate definitions, identified by 'make test'.
1214
1215         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1216         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1217         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1218         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1219         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1220         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1221
1222         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1223         correctly defined (per MSDN) in <wincrypt.h>
1224
1225 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1226
1227         Correct misuse of #ifdef, identified by 'make test'.
1228
1229         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1230         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1231
1232 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1233
1234         Replace more incorrectly named manifest constants.
1235
1236         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1237         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1238         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1239         definitions respectively; retain for backward compatibility only.
1240
1241 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1242
1243         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1244
1245         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1246
1247 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1248
1249         Add missing MAPVK manifest constant definitions.
1250
1251         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1252         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1253
1254 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1255
1256         Correct some misspelled manifest constant names.
1257
1258         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1259         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1260         alias to original misspelling, to maintain backward compatibility.
1261         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1262         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1263         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1264         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1265
1266 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1267
1268         Add a missing Win2K sockets IOCTL feature.
1269
1270         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1271
1272 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1273
1274         Fix an incorrectly typed structure member.
1275
1276         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1277         should be LPSTR; correct it.
1278
1279 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1280
1281         Add another missing manifest constant definition.
1282
1283         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1284
1285 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1286
1287         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1288
1289         * include/windef.h (PACKED): Delete macro definition; its name is not
1290         reserved, and may thus conflict with a user defined name; replace it...
1291         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1292         use __attribute__((packed)) directly instead.
1293
1294 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1295
1296         Fix bad typedef, per MinGW-Bug [#1529].
1297
1298         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1299         conform with MSDN reference, as identified by Safety0ff.
1300
1301 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1302
1303         Add a missing manifest constant definition.
1304
1305         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1306
1307 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1308
1309         Win2K and Vista userenv updates.
1310
1311         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1312         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1313         (ExpandEnvironmentStringsForUser): Define function aliases.
1314         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1315         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1316         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1317         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1318         (GetProfileType): Declare function prototypes.
1319         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1320         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1321         New manifest constants; define them.
1322
1323 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1324
1325         * Makefile.in: Increment CYGRELEASE to 2.
1326
1327 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1328
1329         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1330
1331 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1332
1333         * include/w32api.h: Increment version to 3.17.
1334         * Makefile.in: Ditto.
1335
1336 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1337
1338         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1339         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1340         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1341         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1342
1343 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1344
1345         * include/w32api.h: Increment version to 3.16.
1346         * Makefile.in: Ditto.
1347
1348 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1349
1350         * include/commctrl.h (NMTCKEYDOWN): Define.
1351
1352 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1353
1354         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1355         Define.
1356
1357 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1358
1359         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1360         PSAPI_WORKING_SET_INFORMATION): Define.
1361
1362 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1363
1364         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1365
1366 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1367
1368         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1369
1370 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1371
1372         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1373         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1374         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1375
1376 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1377
1378         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1379         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1380         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1381
1382 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1383
1384         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1385         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1386
1387 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1388
1389         * include/winbase.h (__MINGW_EXTENSION): Define.
1390         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1391         struct to correct issue with -std=c99.
1392
1393 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1394
1395         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1396         (TIMER_BASIC_INFORMATION): Define.
1397         (NtQueryTimer): Define.
1398         (ZwQueryTimer): Define.
1399
1400 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1401
1402         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1403
1404 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1405
1406         * include/winbase.h (GetComputerNameEx): Define.
1407
1408 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1409
1410         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1411
1412 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1413
1414         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1415         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1416         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1417         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1418         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1419         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1420         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1421         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1422         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1423
1424 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1425
1426         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1427         Add defines for backward compatibility.
1428
1429 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1430
1431         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1432         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1433         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1434         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1435         EnumResourceTypesW): Ditto.
1436         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1437
1438 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1439
1440         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1441
1442 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1443
1444         * include/bdatypes.h: Add missing semicolons.
1445
1446 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1447
1448         * include/w32api.h: Increment version to 3.15.
1449         * Makefile.in: Ditto.
1450
1451 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1452
1453         * Makefile.in: Update naming convention and compression format (lzma),
1454         leaving existing naming convention and compression format as is for Cygwin.
1455
1456 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1457
1458         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1459         STATE_SYSTEM_PROTECTED): Define.
1460
1461         Thank you to Marcus von Appen for reporting the issue.
1462
1463 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1464
1465         * include/winuser.h (CF_DIBV5): Define.
1466         (CF_MAX): Adjust accordingly.
1467
1468         Thank you to Lenard Lindstrom for reporting the issue.
1469
1470 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1471
1472         * include/sspi.h (QuerySecurityContextToken): Define.
1473         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1474
1475         Thank you to Magnus Hagander for reporting the issue.
1476
1477 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1478
1479         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1480
1481 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1482
1483         * include/shlwapi (ASSOCDATA): Update definition.
1484
1485         Thank you to Frederic Deschamps for reporting the issue.
1486
1487 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1488
1489         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1490         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1491         COPY_FILE_NO_BUFFERING): Define.
1492
1493         Thank you to Roland Schwingel for reporting the issue.
1494
1495 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1496
1497         * include/winuser.h (HHOOK): Move definition from here...
1498         * include/windef.h: ...to here, as per MSDN.
1499
1500         Thank you to Samuel Thibault for reporting the issue.
1501
1502 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1503
1504         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1505         MSDN, change return type to LPCH.
1506         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1507
1508         Thank you to Emmanuel Stapf for reporting the issue.
1509
1510 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1511
1512         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1513         * include/windowsx.h (SNDMSG): Ditto.
1514
1515 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1516
1517         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1518
1519         Thank you to Ozkan Sezer for reporting the issue.
1520
1521 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1522
1523         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1524
1525         Thank you to Chris Oldwood for reporting the issue.
1526
1527 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1528
1529         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1530
1531         Thank you to Rick Walsh for reporting the issue.
1532
1533 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1534
1535         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1536
1537 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1538
1539         * include/winbase.h (OVERLAPPED): Correct definition.
1540
1541 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1542
1543         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1544         definition.
1545
1546         Thank you to Pasi Ruokola for reporting the issue.
1547
1548 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1549
1550         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1551
1552         Thank you to cheznonnon for reporting the issue.
1553
1554 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1555
1556         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1557
1558 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1559
1560         * winnt.h: Fix several SUBLANG ID errors (ref:
1561         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1562         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1563         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1564         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1565         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1566         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1567         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1568         (SUBLANG_LAO_LAO): ... this.
1569         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1570         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1571         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1572         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1573         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1574         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1575         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1576         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1577         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1578         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1579         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1580
1581 2010-08-24  LRN  <lrn1986@gmail.com>
1582
1583         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1584         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1585         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1586         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1587         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1588         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1589         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1590         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1591         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1592         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1593         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1594         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1595         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1596         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1597         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1598         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1599         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1600         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1601         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1602         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1603         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1604         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1605         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1606         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1607         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1608         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1609         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1610         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1611         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1612         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1613         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1614         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1615         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1616         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1617         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1618         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1619         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1620         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1621         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1622         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1623         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1624         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1625         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1626         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1627         WAVE_FORMAT_DTS2): Define.
1628         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1629         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1630         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1631         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1632         Define.
1633
1634 2010-08-23  LRN  <lrn1986@gmail.com>
1635
1636         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1637         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
1638         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
1639         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
1640         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
1641         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
1642         GetFinalPathNameByHandleW): Define.
1643
1644 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1645
1646         * lib/CheckConflicts.sh: New file.
1647
1648 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1649
1650         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
1651         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
1652         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
1653         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
1654         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
1655         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
1656         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
1657         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
1658         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
1659         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
1660         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
1661         conflicting definition.
1662         * lib/th32.def: Remove.
1663         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
1664         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
1665         definition.
1666
1667 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1668
1669         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
1670
1671 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1672
1673         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
1674
1675 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
1676
1677         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
1678         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
1679         * include/ddk/winddk.h: Ditto.
1680
1681 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
1682
1683         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
1684         CreateSymbolicLinkA, CreateSymbolicLink): Define
1685
1686 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1687
1688         * lib/kernel32.def(FatalExit): Correct definiton.
1689
1690 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1691
1692         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
1693         from 2010-07-17 since it breaks several applications.
1694
1695 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1696
1697         * lib/kernel32.def: Regenerate using gendef.
1698
1699 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
1700
1701         * include/commctrl.h (LVIF_GROUPID): Fix definition.
1702
1703 2010-07-20  Michael James  <james.me@gmail.com>
1704
1705         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
1706
1707 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1708
1709         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
1710         definition.
1711         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
1712         NdrMarshSCtxtHdl): Ditto.
1713         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
1714         definition in favour of typedef definition.
1715
1716         Thank you to Yuta Tomino for reporting the issues.
1717
1718 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
1719
1720         * include/gdiplus.h: New file.
1721         * include/gdiplus/gdiplus.h: New file.
1722         * include/gdiplus/gdiplusbase.h: New file.
1723         * include/gdiplus/gdiplusbrush.h: New file.
1724         * include/gdiplus/gdipluscolor.h: New file.
1725         * include/gdiplus/gdipluscolormatrix.h: New file.
1726         * include/gdiplus/gdipluseffects.h: New file.
1727         * include/gdiplus/gdiplusenums.h: New file.
1728         * include/gdiplus/gdiplusflat.h: New file.
1729         * include/gdiplus/gdiplusgpstubs.h: New file.
1730         * include/gdiplus/gdiplusgraphics.h: New file.
1731         * include/gdiplus/gdiplusheaders.h: New file.
1732         * include/gdiplus/gdiplusimageattributes.h: New file.
1733         * include/gdiplus/gdiplusimagecodec.h: New file.
1734         * include/gdiplus/gdiplusimaging.h: New file.
1735         * include/gdiplus/gdiplusimpl.h: New file.
1736         * include/gdiplus/gdiplusinit.h: New file.
1737         * include/gdiplus/gdipluslinecaps.h: New file.
1738         * include/gdiplus/gdiplusmatrix.h: New file.
1739         * include/gdiplus/gdiplusmem.h: New file.
1740         * include/gdiplus/gdiplusmetafile.h: New file.
1741         * include/gdiplus/gdiplusmetaheader.h: New file.
1742         * include/gdiplus/gdipluspath.h: New file.
1743         * include/gdiplus/gdipluspen.h: New file.
1744         * include/gdiplus/gdipluspixelformats.h: New file.
1745         * include/gdiplus/gdiplusstringformat.h: New file.
1746         * include/gdiplus/gdiplustypes.h: New file.
1747         * lib/gdiplus.c: New file containing GDI+ variable definitions
1748         and GUIDs.
1749         * lib/gdiplus.def: New file.
1750         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
1751         add gdiplus.c to SOURCES.
1752         * lib/test.c: Include gdiplus.h.
1753
1754 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
1755
1756         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
1757         GetPerformanceInfo): Define.
1758         * lib/psapi.def (GetPerformanceInfo): Define.
1759         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
1760         CryptEnumProviders): Define.
1761
1762 2010-02-17  LRN  <lrn1986@gmail.com>
1763
1764         * include/shlguid.h (IID_IFolderView): Define.
1765         * include/shlobj.h (IFolderView interface): Define.
1766         * lib/shell32.c (IID_IFolderView): Export.
1767
1768 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1769
1770         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
1771         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
1772
1773 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1774
1775         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
1776
1777 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1778
1779         * include/shlobj.h (SHParseDisplayName): Fix definition.
1780
1781 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1782
1783         * include/w32api.h: Increment version to 3.14.
1784         * Makefile.in: Ditto.
1785
1786 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1787
1788         * include/shlobj.h (SHParseDisplayName): Define.
1789
1790         Thanks to James Roberts-Thomson for the report.
1791
1792 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1793
1794         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
1795
1796         Thanks to Alexander Vassilev for the report.
1797
1798 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1799
1800         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
1801
1802         Thanks to Thomas Denk for the report.
1803
1804 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1805
1806         * include/winbase.h (UnmapViewOfFile): Correct definition.
1807
1808         Thanks to Dimitry Sibiryakov for the report.
1809
1810 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
1811
1812         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
1813
1814 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
1815
1816         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
1817         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
1818
1819 2009-20-10  Michael James  <james.me@gmail.com>
1820
1821         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
1822         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
1823         >= 0x0501.
1824         (WM_UNICHAR,UNICODE_NOCHAR): Define.
1825         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
1826         RemoveWindowSubclass@12): Add exports.
1827         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
1828
1829 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
1830
1831         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
1832         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
1833         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
1834         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
1835         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
1836         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1837         RegisterTouchWindow, UnregisterTouchWindow): Define.
1838         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1839         RegisterTouchWindow, UnregisterTouchWindow): Define.
1840
1841 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
1842
1843         * include/winver.h (VerQueryValue[AW]): Correct definition.
1844
1845 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1846
1847         * include/shlobj.h (SHARD): Add enum.
1848         (SHARD_PATH): Define based on UNICODE.
1849
1850         Thanks to Jacek Caban for the report.
1851
1852 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1853
1854         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
1855
1856         Thanks to Bruno Martinez for the report.
1857
1858 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1859
1860         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
1861         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
1862         SHGetIconOverlayIndex): Define.
1863
1864         Thanks to Tim Kosse for the report.
1865
1866 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1867
1868         * include/wincon.h (AttachConsole): Correct guard.
1869
1870         Thanks to Alexander Shaduri for the report.
1871
1872 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
1873
1874         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
1875         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
1876
1877 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
1878
1879         * include/winerror.h: Fix typos in macro names.
1880
1881 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
1882
1883         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
1884         definition.
1885
1886 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1887
1888         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
1889
1890 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
1891
1892         Honor DESTDIR for winsup/mingw and winsup/w32api.
1893         Detect and report error if installation paths are win32
1894         format, but DESTDIR is non-empty.
1895
1896         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
1897         when invoking make in subdirs.
1898         * lib/Makefile.in (DESTDIR): Honor per convention.
1899         (need-DESTDIR-compatibility): New macro; define it and a
1900         corresponding rule.
1901         (fail-DESTDIR-compatibility): New dependency goal.
1902         (install-libraries, install-headers, uninstall-libraries,
1903         uninstall-headers): Require need-DESTDIR-compatibility.
1904         * lib/ddk/Makefile.in: Ditto.
1905         * lib/directx/Makefile.in: Ditto.
1906
1907 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
1908
1909         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
1910         _WIN32_WINNT >= 0x0500.
1911         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
1912         WRITE_RESTRICTED): Define.
1913         (IsTokenRestricted): Declare for >= Win 2000.
1914
1915 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1916
1917         * include/wtsapi32.h (WTSQuerySessionInformationA,
1918         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
1919         Moved to (_WIN32_WINNT >= 0x0500) guard.
1920         (thanks to Pierre Ossman)
1921
1922 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
1923
1924         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
1925         IS_SURROGATE_PAIR): Define.
1926
1927 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
1928
1929         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
1930         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
1931         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
1932         * include/ddk/ntifs.h: Ditto.
1933         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
1934
1935 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
1936
1937         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
1938         from here...
1939         * lib/gdo32.dll: ...to here.
1940
1941 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
1942
1943         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
1944         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
1945         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
1946         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
1947         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
1948         entry points.
1949
1950 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
1951
1952         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
1953         WTSEnumerateSessionsA): Add function prototypes.
1954         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
1955         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
1956         defines dependent on UNICODE setting.
1957
1958 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
1959
1960         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
1961         and vice versa.
1962         * include/ddk/ntifs.h: Ditto.
1963         * include/ddk/winddk.h: Ditto.
1964         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
1965         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
1966         in header, but missing in lib.  Omit NT4-only entry points.
1967
1968 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1969
1970         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
1971         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
1972         * lib/shell32.def (SHGetImageList): Define.
1973
1974 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
1975
1976         * winnt.h: Add Vista token security extensions.
1977         (SID_HASH_SIZE): Define.
1978         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
1979         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
1980         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
1981         (SID_HASH_ENTRY): Define.
1982         (struct _SID_AND_ATTRIBUTES_HASH): Define.
1983         (struct _TOKEN_LINKED_TOKEN): Define.
1984         (struct _TOKEN_MANDATORY_LABEL): Define.
1985         (struct _TOKEN_MANDATORY_POLICY): Define.
1986         (struct _TOKEN_ELEVATION): Define.
1987         (struct _TOKEN_ACCESS_INFORMATION): Define.
1988         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
1989         information enumeration values.
1990
1991 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
1992
1993         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
1994         from ddk/ntifs.h.
1995
1996 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
1997
1998         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
1999
2000 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2001
2002         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2003
2004 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2005
2006         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2007         NtSetEaFile.
2008
2009 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2010
2011         * include/winbase.h (SCS_64BIT_BINARY): Define.
2012
2013 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2014
2015         * include/w32api.h: Increment version to 3.13.
2016         * Makefile.in: Ditto.
2017
2018 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2019
2020         * lib/glut.def: remove.
2021         * lib/glut32.def: ditto.
2022
2023 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2024
2025         * include/winbase.h (PROCESS_DEP_ENABLE,
2026         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2027         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2028         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2029
2030 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2031
2032         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2033
2034 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2035
2036         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2037
2038 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2039
2040         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2041
2042 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2043
2044         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2045         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2046         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2047         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2048         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2049         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2050         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2051         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2052         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2053         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2054         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2055         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2056         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2057         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2058         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2059         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2060         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2061         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2062         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2063         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2064         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2065         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2066         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2067         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2068         (capSendMessage): Don't undef.
2069
2070 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2071
2072         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2073         undefined.
2074
2075 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2076
2077         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2078         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2079         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2080         SUBLANG_ROMANIAN_MOLDOVA): Define.
2081
2082 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2083
2084         * include/shlwapi.h (ASSOCSTR): Update enum.
2085
2086 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2087
2088         * include/w32api.h: Increment version to 3.12.
2089         * Makefile.in: Ditto.
2090
2091 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2092
2093         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2094
2095 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2096
2097         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2098
2099 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2100
2101         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2102         Thanks to Richard Hughes for report.
2103
2104 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2105
2106         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2107         naming standard for Cygwin.
2108
2109 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2110
2111         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2112
2113 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2114
2115         * include/ddk/scsi.h: Define READ_TOC formats.
2116         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2117
2118 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2119
2120         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2121         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2122         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2123         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2124         NdisMCancelTimer): Define.
2125         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2126         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2127         eliminate warnings.
2128         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2129         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2130         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2131         Export.
2132
2133 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2134
2135         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2136         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2137
2138 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2139
2140         * include/ddk/winddk.h (KeRaiseIrql): Define.
2141         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2142
2143 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2144
2145         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2146         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2147         (InterlockedIncrement, InterlockedDecrement): fix warning.
2148         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2149         (KeNumberProcessors): Export.
2150
2151 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2152
2153         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2154         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2155         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2156         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2157         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2158
2159 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2160
2161         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2162
2163         Thanks to Tim Kosse <botg at users dot sf dot net>.
2164
2165 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2166
2167         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2168         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2169         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2170         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2171         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2172         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2173         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2174
2175 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2176
2177         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2178         WTSQuerySessionInformation, WTSFreeMemory): Define.
2179
2180 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2181
2182         * lib/gdi32.def (SetLayout): Export.
2183
2184 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2185
2186         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2187         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2188         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2189         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2190         CertSetCertificateContextProperty, CertCompareCertificateName,
2191         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2192         CryptGetDefaultProviderW and many corresponding macroes): Define.
2193         * lib/crypt32.def (Export the above 11 functions): Export.
2194         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2195         macroes): Define.
2196
2197
2198 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2199
2200         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2201         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2202
2203 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2204
2205         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2206
2207 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2208
2209         * include/lmaccess.h (struct _USER_INFO_4): Define.
2210         (struct _USER_INFO_23): Define.
2211         (struct _GROUP_INFO_3): Define.
2212
2213 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2214
2215         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2216         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2217         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2218         MIB_TCP6TABLE_OWNER_PID): Define.
2219         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2220
2221 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2222
2223         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2224         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2225         of 0x0502.
2226         Bug reported by Thomas Denk.
2227
2228 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2229
2230         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2231         InterlockedCompareExchange, InterlockedExchange,
2232         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2233         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2234         Bug reported by Erik Blake.
2235
2236 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2237
2238         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2239         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2240         Bug reported by Brian Hawley.
2241
2242 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2243
2244         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2245         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2246         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2247         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2248         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2249         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2250         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2251         (DsGetDcNameW, DsGetDcNameA): Declare.
2252         (DsGetDcName): Define.
2253         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2254
2255 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2256
2257         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2258
2259         Thanks to Tim Kosse <botg at users dot sf dot net>.
2260
2261 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2262
2263         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2264
2265         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2266
2267 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2268
2269         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2270         (FILE_SUPPORTS_TRANSACTIONS): Define.
2271
2272 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2273
2274         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2275         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2276
2277 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2278
2279         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2280         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2281         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2282         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2283         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2284         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2285         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2286         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2287         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2288         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2289         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2290         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2291         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2292         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2293         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2294         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2295         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2296         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2297         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2298         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2299         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2300         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2301         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2302         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2303         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2304         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2305         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2306         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2307         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2308         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2309         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2310         capDriverConnect, capDriverDisconnect, capDriverGetName,
2311         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2312         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2313         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2314         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2315         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2316         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2317         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2318         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2319         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2320         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2321         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2322         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2323         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2324         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2325         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2326
2327 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2328
2329         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2330         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2331         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2332         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2333         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2334         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2335         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2336         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2337         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2338         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2339         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2340         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2341         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2342         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2343         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2344         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2345         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2346         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2347         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2348         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2349         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2350         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2351         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2352         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2353         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2354         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2355         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2356         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2357         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2358         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2359         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2360         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2361         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2362         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2363         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2364         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2365         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2366         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2367         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2368         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2369         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2370         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2371         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2372         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2373         *SpUserModeInitializeFn): Define.
2374         * include/sspi.h (SECURITY_STRING): Define.
2375
2376 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2377
2378         * include/specstrings.h: Add more dummy defines.
2379
2380 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2381
2382         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2383         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2384         (SECURITY_MANDATORY_LOW_RID): Define.
2385         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2386         (SECURITY_MANDATORY_HIGH_RID): Define.
2387         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2388         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2389         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2390         (SE_GROUP_INTEGRITY): Define.
2391         (SE_GROUP_INTEGRITY_ENABLED): Define.
2392
2393 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2394
2395         * include/sddl.h (ConvertStringSidToSidA): Declare.
2396         (ConvertStringSidToSidW): Declare.
2397         (ConvertStringSidToSid): Define.
2398
2399 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2400
2401         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2402         and MPR_INTERFACE_3 structure since they are available only in Windows
2403         Server 2008
2404
2405         Thanks to crackedmind  <crackedmind at sf dot net>.
2406
2407 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2408
2409         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2410         definitions.
2411         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2412
2413 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2414
2415         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2416
2417 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2418
2419         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2420         * include/windef.h (IN, OUT, OPTIONAL): Define.
2421
2422 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2423
2424         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2425         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2426         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2427         __out_bcount_opt): Move to specstrings.h.
2428
2429 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2430
2431         * lib/bthprops.def: new file, bluetooth imports.
2432
2433 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2434
2435         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2436         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2437         __out_bcount_opt): Defined additional pseudo-modifiers.
2438
2439 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2440         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2441         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2442         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2443         dwRedialPause.
2444
2445 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2446
2447         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2448         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2449         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2450         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2451         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2452         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2453         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2454         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2455         * include/winuser.h (RegisterPowerSettingNotification,
2456         UnregisterPowerSettingNotification): Add prototypes.
2457         * lib/user32.def: Added imports for the above prototypes.
2458         * lib/Makefile.in: Added build support for power-uuid.c.
2459         * lib/power-uuid.c: New file containing power GUID definitions.
2460
2461 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2462
2463         * include/ras.h (RAS_MaxDnsSuffix): define.
2464
2465 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2466
2467         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2468         Add prototypes.
2469         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2470         Add exports.
2471
2472 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2473
2474         * include/w32api.h: Increment version to 3.11.
2475         * Makefile.in: Ditto.
2476
2477 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2478
2479         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2480         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2481
2482 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2483
2484         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2485
2486 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2487
2488         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2489         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2490
2491 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2492
2493         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2494
2495 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2496
2497         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2498         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2499         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2500         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2501         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2502         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2503         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2504         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2505         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2506         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2507         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2508         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2509         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2510         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2511         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2512         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2513         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2514         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2515         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2516         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2517         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2518         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2519         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2520         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2521         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2522         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2523         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2524         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2525         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2526         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2527         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2528         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2529         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2530         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2531         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2532         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2533         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2534         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2535         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2536         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2537         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2538         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2539         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2540         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2541         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2542         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2543         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2544         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2545         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2546         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2547         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2548         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2549         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2550         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2551         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2552         CryptEncodeObjectEx): define.
2553
2554 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2555
2556         * include/winbase.h (CheckTokenMembership): define.
2557
2558 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2559
2560         * include/rpcndr.h: Missing NdrClientCall2 entry.
2561         * lib/rpcrt4.def: Ditto.
2562
2563 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2564         * lib/scnsave.c: Multi-monitor support.
2565
2566 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2567
2568         * include/w32api.h: Increment version to 3.10.
2569         * Makefile.in: Ditto.
2570
2571 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2572
2573         * include/winbase.h (ReOpenFile): Add prototype.
2574         * lib/kernel32.def (ReOpenFile@16): Add export.
2575
2576 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2577
2578         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2579
2580 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2581
2582         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2583         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2584
2585 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2586
2587         * include/wtypes.h (LPDECIMAL): Define.
2588         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2589
2590 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2591
2592         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2593
2594 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2595
2596         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2597         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2598
2599 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2600
2601         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2602         Define.
2603
2604 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2605
2606         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2607         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2608         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2609         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2610         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2611         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2612         Sync with include/pbt.h.
2613
2614 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2615
2616         [mingw-Bugs-1751518]
2617         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2618         get_URL.
2619
2620         [mingw-Bugs-1751565]
2621         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2622
2623         [mingw-Bugs-1751595]
2624         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2625         methods.
2626
2627         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2628
2629 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2630
2631         [mingw-Bugs-1750898]
2632         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2633         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2634
2635 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2636
2637         [mingw-Bugs-1749305]
2638         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
2639
2640 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
2641
2642         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
2643
2644 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
2645
2646         * include/oaidl.h: Include windows.h and ole2.h,
2647         unless COM_NO_WINDOWS_H.
2648
2649         [mingw-Bugs-1742130]
2650         * include/oaidl.h (struct tagVARIANT): Add union members
2651         LONGLONG  * pllVal and ULONGLONG * pullVal.
2652
2653 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
2654
2655         * include/ws2tcpip.h (s6_addr32): Correct definition.
2656         Thanks to Alfred E. Heggestad <aeh at db dot org>
2657
2658 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2659
2660         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
2661
2662         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
2663         supplying the information.
2664
2665 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2666
2667         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
2668
2669 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2670
2671         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
2672         Vista.
2673
2674 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
2675
2676          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
2677         CRYPTPROTECT_LOCAL_MACHINE): Define.
2678
2679 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
2680
2681         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
2682         Define.
2683
2684 2007-03-30  Brian Dessent  <brian@dessent.net>
2685
2686         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
2687
2688 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2689
2690         * include/w32api.h: Increment version to 3.9.
2691         * Makefile.in: Ditto.
2692
2693 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
2694
2695         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
2696
2697 2007-03-23  Matthew Gregan  <kinetik@flim.org>
2698
2699         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
2700
2701 2007-03-06  Brandon Sneed  <brandon@oqo.com>
2702
2703         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
2704         Added SetupConfigureWmiFromInfSectionW
2705         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
2706
2707         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
2708
2709         * include/winuser.h: Added PBT_APMQUERYSUSPEND
2710         Added PBT_APMQUERYSTANDBY
2711         Added PBT_APMQUERYSUSPENDFAILED
2712         Added PBT_APMQUERYSTANDBYFAILED
2713         Added PBT_APMSUSPEND
2714         Added PBT_APMSTANDBY
2715         Added PBT_APMRESUMECRITICAL
2716         Added PBT_APMRESUMESUSPEND
2717         Added PBT_APMRESUMESTANDBY
2718         Added PBT_APMBATTERYLOW
2719         Added PBT_APMPOWERSTATUSCHANGE
2720         Added PBT_APMOEMEVENT
2721         Added PBT_APMRESUMEAUTOMATIC
2722
2723         * include/wtsapi32.h: New file
2724
2725         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
2726
2727 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2728
2729         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
2730         argument to constant.
2731
2732 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
2733
2734         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
2735         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
2736         Add prototypes.
2737         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
2738
2739 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
2740
2741         * lib/user32.def (InternalGetWindowText): Add stub.
2742
2743 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
2744
2745         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
2746         LANG_BOSNIAN_NEUTRAL): Define.
2747
2748 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
2749
2750         * include/winuser.h: Add guards around TITLEBARINFO and
2751         GetTitleBarInfo().
2752
2753 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
2754
2755         * include/winbase.h (struct _OVERLAPPED): Change type of
2756         Internal, InternalHigh members to ULONG_PTR.
2757         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
2758         (CreateIoCompletionPort): Likewise.
2759         (PostQueuedCompletionStatus): Likewise.
2760         (QueueUserAPC): Likewise.
2761
2762 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
2763
2764         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
2765         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
2766         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
2767         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
2768         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
2769         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
2770         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
2771         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
2772         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
2773         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
2774
2775 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
2776
2777         * Makefile.in: Add aclocal.m4 to source release.
2778
2779 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2780
2781         * include/w32api.h: Increment version to 3.8.
2782         * Makefile.in: Ditto.
2783
2784 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
2785
2786         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
2787         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
2788
2789         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
2790
2791 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
2792
2793         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
2794
2795         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
2796         inline static.
2797         (GetFiberData): Likewise.
2798         * lib/kernel32.c: Remove.
2799         * lib/Makefile.in: Remove reference to kernel32.[co].
2800
2801 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2802
2803         * include/winnt.h (SE_RELABEL_NAME): Define.
2804         (SE_INCREASE_WORKING_SET_NAME): Define.
2805         (SE_TIME_ZONE_NAME): Define.
2806         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
2807
2808 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2809
2810         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
2811         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
2812         SymbolicLinkReparseBuffer substructure.
2813
2814 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
2815
2816         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
2817
2818 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2819
2820         * lib/Makefile.in: Fix order for 'all' rule.
2821
2822 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
2823
2824         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
2825
2826 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
2827
2828         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
2829         mappings.
2830         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
2831         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
2832
2833 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2834
2835         * include/rpc.h: Add whitespace.
2836         * include/winnt.h (C_ASSERT): Define.
2837
2838 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2839
2840         [mingw-Bugs-1568067]
2841         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
2842         * include/wingdi.h: (DM_POSITION): Define.
2843
2844 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
2845
2846         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
2847         * lib/user32.def: Likewise.
2848
2849 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2850
2851         * lib/Makefile.in: fix typo.
2852         * lib/ddk/Makefile.in: fix typo.
2853         * lib/directx/Makefile.in: fix typo.
2854
2855         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
2856         for pointing it out.
2857
2858 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2859
2860         * Makefile.in: Remove files from lib directory with distclean target
2861
2862 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2863
2864         * include/winuser.h (CS_DROPSHADOW): Define.
2865
2866 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
2867
2868         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
2869         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
2870         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
2871         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
2872
2873         Increase each constant by 1.
2874
2875 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2876
2877         [mingw-Bugs-1553275]
2878         * include/wingdi.h (SetLayout): Add prototype.
2879         (GetLayout): Likewise.
2880
2881 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
2882
2883         [mingw-Bugs-1550139]
2884         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
2885         Tanks to:  Samit Basu <samitbasu at sf dot net>
2886         (GetRecordInfoFromGuids): Add prototype.
2887
2888 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
2889
2890         * include/winbase.h: Add comment about 'missing' SEM flag.
2891
2892 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
2893
2894         * configure.in: Substitute with_cross_host in depending files.
2895         * configure: Regenerate.
2896         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
2897         Set installation directories accordingly.
2898         * lib/ddk/Makefile.in: Ditto.
2899         * lib/directx/Makefile.in: Ditto.
2900
2901 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
2902
2903         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
2904         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
2905         Bug reported by: <macleone at users dot sf dot net>
2906
2907 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
2908
2909         Update some more IMAGE relocation type indicators
2910         to PECOFF v8 (May, 2006) specs.
2911
2912         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
2913         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
2914         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
2915         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
2916         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
2917         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
2918         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
2919         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
2920         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
2921         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
2922         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
2923         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
2924         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
2925         IMAGE_REL_SHM_NOMODE): Add defines.
2926
2927         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
2928         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
2929         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
2930         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
2931         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
2932         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
2933         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
2934         IMAGE_REL_M32R_TOKEN): Add defines.
2935
2936         (IMAGE_REL_MIPS_JMPADDR16): Add define.
2937
2938 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
2939
2940         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
2941         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
2942         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
2943         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
2944         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
2945         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
2946         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
2947         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
2948         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
2949         Add defines.
2950
2951         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
2952         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
2953         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
2954         Add defines.
2955
2956         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
2957
2958         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
2959         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
2960         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
2961         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
2962         IMAGE_DLLCHARACTERISTICS_NO_BIND,
2963         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
2964
2965         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
2966
2967         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
2968         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
2969         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
2970         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
2971         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
2972         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
2973         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
2974         Add defines.
2975
2976         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
2977         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
2978         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
2979         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
2980         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
2981         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
2982         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
2983         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
2984         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
2985         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
2986         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
2987         IMAGE_REL_IA64_ADDEND): Add defines.
2988
2989         (IMAGE_SCN_GPREL): Add define.
2990
2991 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2992
2993         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2994         * include/basetyps.h:  Likewise.
2995         (_COM_interface): New define.
2996         (interface): Define to _COM_interface, conditional on !__OBJC__.
2997         Replace 'interface' with '_COM_interface', throughout.
2998         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
2999         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3000         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3001         * include/mshtml.h: Likewise.
3002         * include/oaidl.h: Likewise.
3003         * include/objfwd.h: Likewise.
3004         * include/objidl.h: Likewise.
3005         * include/ocidl.h: Likwise.
3006         * include/olectl.h: Likewise.
3007         * include/oleidl.h: Likewise.
3008         * include/shlobj.h: Likewise.
3009         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3010         * include/vfw.h: Likewise.
3011         * include/windows.h. Likewise. Add comment.
3012         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3013         throughout.
3014
3015         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3016         Add test for conflict with '@interface'
3017
3018 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3019
3020         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3021         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3022         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3023         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3024         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3025         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3026         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3027         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3028         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3029         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3030         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3031         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3032         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3033         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3034         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3035         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3036         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3037         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3038         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3039         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3040         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3041         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3042         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3043         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3044         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3045         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3046         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3047         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3048         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3049         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3050         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3051         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3052         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3053         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3054         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3055         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3056         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3057         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3058         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3059         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3060         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3061         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3062         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3063         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3064         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3065         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3066         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3067         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3068         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3069         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3070         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3071         CertDeleteCertificateFromStore): Define.
3072         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3073         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3074         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3075         CertAddCertificateContextToStore, CertCompareCertificate,
3076         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3077         Define.
3078
3079 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3080
3081         * lib/uuid.c: Remove.
3082
3083 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3084
3085         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3086         declarations. They were extracted from the registry with a script.
3087         * lib/devguid.c: Add new file with the implementation of the
3088         missing GUIDs.
3089         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3090
3091 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3092
3093         * include/winuser.h (WM_INPUT): Add missing Raw Input
3094         notification define.
3095         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3096         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3097
3098 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3099
3100         [mingw-Bugs-1525021]
3101         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3102         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3103         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3104         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3105         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3106         (IP_ADAPTER_ADDRESSES): Likewise.
3107
3108 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3109
3110         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3111         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3112         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3113         extras-uuid.c.
3114         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3115         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3116         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3117         * lib/hlguids-uuid.c: State source of CLSIDs.
3118
3119 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3120
3121         * lib/Makefile.in: Added extras-uuid as an object and source.
3122         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3123         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3124         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3125         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3126         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3127         * lib/extras-uuid.c: New file.
3128         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3129         net).
3130
3131 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3132
3133         [mingw-Bugs-1424461]
3134         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3135         throughout.
3136         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3137         _NO_W32_PSEUDO_MODIFIERS.
3138         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3139         throughout.
3140         *include/rpcnsip.h: Likewise.
3141         *include/windef.h: Don't define IN, OUT or OPTIONAL
3142         if _NO_W32_PSEUDO_MODIFIERS.
3143         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3144         throughout.
3145         *include/ddk/cfgmgr32.h: Likewise.
3146         *include/ddk/ddkmapi.h: Likewise.
3147         *include/ddk/hidclass.h: Likewise.
3148         *include/ddk/hidpi.h: Likewise.
3149         *include/ddk/kbdmou.h: Likewise.
3150         *include/ddk/mcd.h: Likewise.
3151         *include/ddk/miniport.h: Likewise.
3152         *include/ddk/minitape.h: Likewise.
3153         *include/ddk/ndis.h: Likewise.
3154         *include/ddk/ndistapi.h: Likewise.
3155         *include/ddk/ndiswan.h: Likewise.
3156         *include/ddk/ntapi.h: Likewise.
3157         *include/ddk/ntdd8042.h: Likewise.
3158         *include/ddk/ntddpcm.h: Likewise.
3159         *include/ddk/ntifs.h: Likewise.
3160         *include/ddk/ntpoapi.h: Likewise.
3161         *include/ddk/parallel.h: Likewise.
3162         *include/ddk/pfhook.h: Likewise.
3163         *include/ddk/scsiwmi.h: Likewise.
3164         *include/ddk/smbus.h: Likewise.
3165         *include/ddk/srb.h: Likewise.
3166         *include/ddk/storport.h: Likewise.
3167         *include/ddk/tdikrnl.h: Likewise.
3168         *include/ddk/upssvc.h: Likewise.
3169         *include/ddk/usbcamdi.h: Likewise.
3170         *include/ddk/usbscan.h: Likewise.
3171         *include/ddk/video.h: Likewise.
3172         *include/ddk/videoagp.h: Likewise.
3173         *include/ddk/win2k.h: Likewise.
3174         *include/ddk/winddi.h: Likewise.
3175         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3176         if _NO_W32_PSEUDO_MODIFIERS.
3177         Comment out IN, OUT and OPTIONAL, throughout.
3178         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3179         throughout.
3180         *include/ddk/ws2san.h: Likewise.
3181
3182 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3183
3184         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3185
3186 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3187
3188         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3189         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3190         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3191         * lib/hlguids-uuid.c: New file.
3192         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3193         net).
3194
3195 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3196
3197         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3198         objects.
3199         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3200         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3201         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3202         IID_IHlinkTarget): Remove.  Moved to new files.
3203         * lib/urlmon-uuid.c: New file.
3204         * lib/hlink-uuid.c: New file.
3205
3206 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3207
3208         * lib/Makefile.in: Added ativscp-uuid as source and object.
3209         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3210         IID_IActiveScriptParse, IID_IActiveScriptSite,
3211         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3212         * lib/ativscp-uuid.c: New file.
3213
3214 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3215
3216         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3217         Remove.  Moved to objidl-uuid.c
3218         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3219         IID_IServerSecurity): Defined.
3220
3221 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3222
3223         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3224         objects.
3225         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3226         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3227         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3228         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3229         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3230         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3231         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3232         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3233         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3234         files.
3235         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3236         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3237         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3238         * lib/cguid-uuid.c: New file.
3239         * lib/olectlid-uuid.c: New file.
3240
3241 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3242
3243         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3244         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3245         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3246         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3247         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3248         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3249         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3250         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3251         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3252         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3253         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3254         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3255         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3256         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3257         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3258         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3259         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3260         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3261         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3262         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3263         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3264         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3265         * lib/comcat-uuid.c: New file.
3266         * lib/docobj-uuid.c: New File.
3267         * lib/exdisp-uuid.c: New file.
3268         * lib/mlang-uuid.c: New file.
3269         * lib/oaidl-uuid.c: New file.
3270         * lib/objidl-uuid.c: New file.
3271         * lib/objsafe-uuid.c: New file.
3272
3273 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3274
3275         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3276         objects.
3277         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3278         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3279         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3280         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3281         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3282         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3283         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3284         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3285         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3286         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3287         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3288         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3289         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3290         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3291         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3292         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3293         * lib/oleidl-uuid.c: New file.
3294         * lib/oleacc-uuid.c: New file.
3295         * lib/ocidl-uuid.c: New file.
3296
3297 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3298
3299         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3300         objects.
3301         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3302         Remove.  Moved to unknwn-uuid and servprov-uuid.
3303         * lib/unknwn-uuid.c: New file.
3304         * lib/servprov-uuid.c: New file.
3305
3306 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3307
3308         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3309         enum.
3310
3311 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3312
3313         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3314
3315 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3316
3317         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3318         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3319         wingdi.h defines.
3320
3321 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3322
3323         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3324         duplicate defines.
3325
3326         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3327         removal.
3328         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3329
3330 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3331
3332         * configure.in: Update to newer autoconf.
3333         (thanks to Steve Ellcey)
3334         * configure: Regenerate.
3335         * aclocal.m4: New file.
3336
3337 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3338
3339         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3340
3341 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3342
3343         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3344         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3345         as macros.
3346         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3347
3348 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3349
3350         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3351         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3352         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3353         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3354         (MprAdminMIBSetTrapInfo): Declare functions.
3355         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3356         (MIB_SERVER_HANDLE): New typedef.
3357         (MprConfigTransportSetInfo): Declare function.
3358         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3359         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3360
3361 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3362
3363         * lib/rtutils.def: New file. Generated on Windows XP.
3364         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3365         * include/rtutils.h: New file.
3366         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3367         Commented out, they're missing from rtutils.def.
3368
3369 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3370
3371         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3372         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3373         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3374         (MprInfoRemoveAll): Declare functions.
3375
3376 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3377
3378         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3379         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3380         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3381         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3382         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3383         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3384         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3385         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3386         (MprConfigServerConnect,MprConfigServerDisconnect)
3387         (MprConfigServerGetInfo,MprConfigServerInstall)
3388         (MprConfigServerRestore,MprConfigTransportCreate)
3389         (MprConfigTransportDelete,MprConfigTransportEnum)
3390         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3391         (MprConfigTransportSetInfo): Declare functions.
3392
3393 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3394
3395         * include/mprapi.h (MprAdminBufferFree)
3396         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3397         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3398         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3399         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3400         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3401         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3402         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3403         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3404         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3405         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3406         (MprAdminInterfaceTransportSetInfo)
3407         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3408         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3409         (MprAdminServerConnect,MprAdminServerDisconnect)
3410         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3411         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3412         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3413
3414 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3415
3416         * include/ipxtfflt.h: New file.
3417
3418 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3419
3420         * include/mprapi.h: Fix header guard. Cleanup.
3421         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3422         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3423         (MprAdminConnectionHangupNotification)
3424         (MprAdminConnectionHangupNotification2)
3425         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3426         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3427         (MprAdminReleaseIpAddress): Declare functions.
3428         * lib/mprapi.def: Regenerate on Windows XP.
3429
3430 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3431
3432         * include/ipifcons.h: Cleanup.
3433         * include/ipxconst.h: Fix header guard.
3434         * include/ipxrtdef.h: include <ipxconst.h>.
3435
3436 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3437
3438         * include/ipxrtdef.h: Cleanup.
3439         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3440         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3441         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3442         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3443         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3444         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3445         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3446         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3447         * include/routprot.h: Cleanup.
3448         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3449         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3450         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3451         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3452         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3453         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3454         * include/fltdefs.h: New file.
3455         * include/ipinfoid.h: New file.
3456
3457 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3458
3459         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3460         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3461         (IAMCertifiedOutputProtection): Add interfaces.
3462         * include/adsprop.h: New file.
3463         * include/cmnquery.h: New file.
3464         * include/dsadmin.h: New file.
3465         * include/dsclient.h: New file.
3466         * include/dsgetdc.h: New file.
3467         * include/dsquery.h: New file.
3468         * include/dsrole.h: New file.
3469         * include/ntdsapi.h: New file.
3470         * include/ntdsbcli.h: New file.
3471         * include/objsel.h: New file.
3472
3473 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3474
3475         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3476         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3477         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3478         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3479         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3480         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3481         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3482         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3483
3484 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3485
3486         * include/qedit.h: New file.
3487         * include/errors.h: Cleanup.
3488
3489 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3490
3491         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3492         avoid dependency on <string.h>.
3493         There's no Win32 equivalent for memcmp:
3494         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3495
3496 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3497
3498         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3499         instead of memset to avoid dependency on <string.h>.
3500         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3501         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3502         (AM_WST_STYLE): Add enums.
3503         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3504         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3505         structures.
3506         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3507         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3508         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3509         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3510         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3511         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3512         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3513         (VFW_E_DVD_NO_RESUME_INFORMATION)
3514         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3515         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3516         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3517         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3518         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3519         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3520         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3521         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3522         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3523         * include/strmif.h: ... to here. New file.
3524         * include/aviriff.h: New file.
3525         * include/bdatypes.h: New file.
3526         * include/control.h: New file.
3527         * include/dvdmedia.h: New file.
3528         * include/il21dec.h: New file.
3529         * include/ks.h: New file.
3530         * include/ksmedia.h: New file.
3531         * include/mmreg.h: New file.
3532         * include/mpegtype.h: New file.
3533         * include/vidcap.h: New file.
3534         * include/vmr9.h: New file.
3535         * include/vptype.h: New file.
3536         * include/xprtdefs.h: New file.
3537
3538 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3539
3540         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3541         Documented as defined on Windows 2000 or later.
3542         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3543         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3544         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3545         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3546         but values unknown, Windows Vista or later.
3547         (CAL_UMALQURA): Cleanup.
3548         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3549         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3550         (CAL_SSHORTESTDAYNAME7): Cleanup.
3551         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3552         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3553
3554 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3555
3556         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3557         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3558         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3559         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3560         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3561         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3562         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3563         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3564         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3565         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3566         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3567         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3568         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3569         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3570         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3571         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3572         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3573         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3574         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3575         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3576         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3577         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3578         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3579         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3580         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3581         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3582         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3583         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3584         (DMDFO_CENTER): Define.
3585         (GetDCBrushColor,GetDCPenColor): Declare.
3586         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3587
3588 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3589
3590         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3591         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3592         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3593         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3594         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3595         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3596         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3597         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3598         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3599         (LANG_DARI,LANG_MALAGASY)
3600         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3601         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3602         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3603         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3604         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3605         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3606         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3607         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3608         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3609         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3610         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3611         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3612         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3613         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3614         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3615         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3616         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3617         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3618         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3619         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3620         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3621         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3622         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3623         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3624         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3625         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3626         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3627         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3628         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3629         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3630         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3631         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3632         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3633         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3634         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3635         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3636         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3637         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
3638         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
3639         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
3640         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
3641         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
3642         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
3643         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
3644         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
3645         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
3646         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3647         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
3648         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
3649         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
3650         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
3651         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
3652         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
3653         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
3654         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
3655         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
3656         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
3657         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
3658         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
3659         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
3660         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
3661         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
3662         (SUBLANG_MARATHI_INDIA): Defined twice by error.
3663
3664 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3665
3666         * lib/directx/Makefile.in: Remove reference to libquartz.a since
3667         it was moved.
3668
3669 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
3670
3671         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
3672         SPI_SETSCREENSAVERUNNING.
3673         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
3674
3675 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3676
3677         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
3678         It had been removed because it's no documented, but Cygwin needs it.
3679
3680 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3681
3682         * include/amvideo.h (IFullScreenVideo): Define.
3683         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
3684         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
3685
3686 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3687
3688         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
3689         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
3690         as available on Windows 98 and better.
3691         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3692         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3693         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
3694
3695 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3696
3697         * include/amvideo.h: New file.
3698         * include/dshow.h: Include <amvideo.h>.
3699
3700 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3701
3702         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
3703         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
3704         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
3705         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
3706         (HWND_BROADCAST): Cleanup.
3707         (HWND_MESSAGE): Windows 2000 only.
3708         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
3709         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
3710         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
3711         (SIF_ALL): Cleanup.
3712         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
3713         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
3714         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
3715         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
3716         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
3717         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
3718         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
3719         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
3720         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
3721         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
3722         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
3723         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3724         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3725         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3726         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3727         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3728         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3729         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
3730         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
3731         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
3732         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
3733         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
3734         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
3735         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
3736         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
3737         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
3738         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
3739         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
3740         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
3741         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
3742         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
3743         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
3744         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
3745         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
3746         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
3747         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
3748         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
3749         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
3750         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
3751         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
3752         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
3753         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
3754         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
3755         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
3756         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
3757         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
3758         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
3759         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
3760         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
3761         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
3762         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
3763         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
3764         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
3765         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
3766         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
3767         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
3768         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
3769         (SPI_SCREENSAVERRUNNING): Removed.
3770         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
3771         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
3772         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
3773         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
3774
3775 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3776
3777         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
3778         (MprAdminGetPDCServer): Add prototype.
3779         (MprAdminSendUserMessage): Add prototype.
3780         (MprAdminUserGetInfo): Add prototype.
3781         (MprAdminUserSetInfo): Add prototype.
3782         * lib/mprapi.def: Add stubs for above functions.
3783
3784 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3785
3786         * lib/directx/quartz.def: Move from here...
3787         * lib/quartz.def: ... to here.
3788
3789 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3790
3791         * include/amaudio.h: New file.
3792         * include/dshow.h: Include <amaudio.h>.
3793
3794 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3795
3796         * include/errors.h: New file.
3797         * include/dshow.h: Include <errors.h>.
3798
3799 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3800
3801         * include/dshow.h: New file.
3802         * include/evcode.h: New file.
3803         * include/audevcod.h: New file.
3804         * include/dvdevcod.h: New file.
3805
3806 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3807
3808         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
3809         (MprAdminConnectionClearStats): Add prototype.
3810         (MprAdminConnectionEnum): Add  prototype.
3811         (MprAdminConnectionGetInfo): Add prototype.
3812         (MprAdminConnectionRemoveQuarantine): Add prototype.
3813         (MprAdminPortClearStats): Add prototype.
3814         (MprAdminPortDisconnect): Add prototype.
3815         (MprAdminPortEnum): Add prototype.
3816         (MprAdminPortGetInfo): Add prototype.
3817         (MprAdminPortReset): Add prototype.
3818         * lib/mprapi.def: New file.
3819
3820 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3821
3822         *  include/mprapi.h: #include <lmcons.h>
3823         (MAX_DEVICETYPE_NAME): Add define.
3824         (MAX_PHONE_NUMBER_LEN): Add define.
3825         (ATADDRESSLEN): Add define.
3826         (IPADDRESSLEN): Add define.
3827         (IPXADDRESSLEN): Add define.
3828         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
3829         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
3830         (RAS_FLAGS_PPP_CONNECTION): Add define.
3831         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
3832         (RAS_FLAGS_RAS_CONNECTION): Add define.
3833         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
3834         (RASCCPCA_STAC): Add define.
3835         (RASCCPCA_MPPC): Add define.
3836         (PPP_CCP_COMPRESSION): Add define.
3837         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
3838         (PPP_CCP_ENCRYPTION40BIT): Add define.
3839         (PPP_CCP_ENCRYPTION128BIT): Add define.
3840         (PPP_CCP_ENCRYPTION56BIT): Add define.
3841         (PPP_CCP_HISTORYLESS): Add define.
3842         (RASPRIV_NoCallback): Add define.
3843         (RASPRIV_AdminSetCallback): Add define.
3844         (RASPRIV_CallerSetCallback): Add define.
3845         (RASPRIV_DialinPrivilege): Add define.
3846         (RASPRIV_CallbackType): Add define.
3847         (RASPRIV2_DialinPolicy): Add define.
3848         (PPP_LCP_PAP): Add define.
3849         (PPP_LCP_SPAP): Add define.
3850         (PPP_LCP_CHAP): Add define.
3851         (PPP_LCP_EAP): Add define.
3852         (PPP_LCP_CHAP_MD5): Add define.
3853         (PPP_LCP_CHAP_MS): Add define.
3854         (PPP_LCP_CHAP_MSV2): Add define.
3855         (PPP_LCP_MULTILINK_FRAMING): Add define.
3856         (enum _RAS_HARDWARE_CONDITION): Add.
3857         (enum _RAS_PORT_CONDITION): Add.
3858         (struct _PPP_ATCP_INFO): Add.
3859         (struct _PPP_ATCP_INFO): Add.
3860         (struct _PPP_IPCP_INFO): Add.
3861         (struct _PPP_IPCP_INFO2): Add.
3862         (struct _PPP_IPXCP_INFO): Add.
3863         (struct _PPP_LCP_INFO): Add.
3864         (struct _PPP_NBFCP_INFO): Add.
3865         (struct _PPP_INFO): Add.
3866         (struct _PPP_INFO_2): Add.
3867         (struct _RAS_CONNECTION_0): Add.
3868         (struct RAS_CONNECTION_1): Add.
3869         (struct _RAS_CONNECTION_2): Add.
3870         (struct RAS_PORT_0): Add.
3871         (struct _RAS_PORT_1): Add.
3872         (struct _RAS_USER_0): Add.
3873         (struct _RAS_USER_1): Add.
3874
3875 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3876
3877         * include/mprapi.h: New file.
3878         * include/routprot.h: New file.
3879         * include/ipxrtdef.h: New file.
3880         * include/ipxconst.h: New file.
3881         * include/stm.h: New file.
3882
3883 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3884
3885         * include/ddk/winddk.h (KAFFINITY): Fix typo.
3886         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3887
3888 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3889
3890         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
3891         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
3892         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
3893         versions.
3894         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3895
3896 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3897
3898         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
3899         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3900
3901 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3902
3903         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
3904
3905 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3906
3907         * include/basetyps.h (REFFMTID): Define properly.
3908
3909 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3910
3911         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
3912         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3913
3914 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3915
3916         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
3917         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
3918         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
3919         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
3920         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
3921         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
3922         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
3923         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
3924         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
3925         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
3926         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
3927         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
3928         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
3929         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
3930         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
3931         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
3932         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
3933         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
3934         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
3935         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
3936         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
3937         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
3938         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
3939         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
3940         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
3941         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
3942         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
3943         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
3944         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
3945         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
3946         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
3947         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
3948         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
3949         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
3950         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
3951         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
3952         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
3953         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
3954         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
3955         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
3956         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
3957         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
3958         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
3959         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
3960         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
3961         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
3962         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
3963         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
3964         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
3965         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
3966         (IF_OPER_STATUS_OPERATIONAL): Define.
3967         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
3968         Add function declaration.
3969         * include/mgm.h: New file.
3970         * lib/rtm.def: New file.
3971         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3972
3973 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3974
3975         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
3976         This function cannot be made thread-safe, the API would have to be
3977         changed for that, just like strerror() -> strerror_r() and similar
3978         ISO C or POSIX functions...
3979
3980 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3981
3982         * include/edevdefs.h: New file.
3983
3984 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3985
3986         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
3987         Use as guard for the WAVEFORMATEX structure instead of
3988         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
3989         _WAVEFORMATEX_ for compatibility.
3990         Thanks to:    Andrew Jones <guln at sf dot net>
3991
3992 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3993
3994         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
3995         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
3996         Thanks to:    David Golub <david_golub at sf dot net>
3997
3998 2006-04-18  Eric House  <ehouse@eehouse.org>
3999
4000         PocketPC support.
4001         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4002         functions for using aygshell on PocketPC:
4003         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4004         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4005
4006         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4007         command bar API on PocketPC:
4008         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4009         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4010         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4011         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4012         CommandBar_InsertButton, CommandBar_Destroy.
4013
4014         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4015         fields not present on PocketPC.
4016         (GetCurrentThreadId): Conditionally declare as extern function
4017         without dllimport attribute on PocketPC.
4018         (ResetEvent): Likwise.
4019         (SetEvent): Likewise.
4020
4021         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4022         Conditionally declare as extern function without dllimport
4023          attribute on PocketPC.
4024         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4025         declare as extern function without dllimport attribute on PocketPC.
4026
4027 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4028
4029         * lib/test.c: Include icm.h.
4030
4031 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4032
4033         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4034         (CreateColorSpace): Add UNICODE mappings.
4035         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4036         * include/icm.h: New file.
4037         * lib/mscms.def: New file.
4038         * lib/icmui.def: New file.
4039
4040 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4041
4042         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4043         (IMAGE_FILE_MACHINE_AMD64): New define.
4044         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4045         New defines.
4046         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4047         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4048         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4049         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4050         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4051         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4052         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4053         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4054         New defines.
4055         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4056         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4057         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4058         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4059         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4060         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4061         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4062         definitions and typedefs.
4063         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4064         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4065         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4066         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4067         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4068         New structure definition and typedefs.
4069         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4070         Likewise.
4071         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4072
4073 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4074
4075         * lib/test.c: Fix typo in #inlcude.
4076         * include/aclui.h: INTERFACE should not remain
4077         defined at the end of the header.
4078         * include/servprov.h: Ditto.
4079
4080 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4081
4082         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4083
4084 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4085
4086         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4087
4088 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4089
4090         * include/wsahelp.h (system_header): Add pragma.
4091         * include/ws2spi.h (system_header): Add pragma.
4092         * include/rasdlg.h (system_header): Add pragma.
4093         * include/rasdlg.h (_RASDLG_H): Define.
4094         Define instead of _RASDLG_H_, this is the w32api standard.
4095         * include/mlang.h (_MLANG_H): Define.
4096         Define instead of _MLANG_H_, this is the w32api standard.
4097         * include/setupapi.h (_SETUPAPI_H): Define.
4098         Define instead of _SETUPAPI_H_, this is the w32api standard.
4099
4100 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4101
4102         * include/rpcndr.h (boolean): Add typedef.
4103         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4104         * include/rpcndr.h (_RPCNDR_H): Define.
4105         Define in addition to __RPCNDR_H__, this is the w32api standard.
4106
4107 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4108
4109         * include/w32api.h: Increment version to 3.7.
4110         * Makefile.in: Ditto.
4111
4112 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4113
4114         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4115         GET_MODULE_HANDLE_EX_FLAG_PIN,
4116         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4117         Thanks to:    Brandon Sneed <brandon at redf dot net>
4118
4119 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4120
4121         * include/secext.h: Enclose function declarations in extern "C"
4122         if __cplusplus.
4123
4124 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4125
4126         * include/comcat.h: INTERFACE should not remain defined
4127         at the end of the header.
4128         * include/docobj.h: Ditto.
4129         * include/exdisp.h: Ditto.
4130         * include/intshcut.h: Ditto.
4131         * include/mlang.h: Ditto.
4132         * include/mshtml.h: Ditto.
4133         * include/oaidl.h: Ditto.
4134         * include/objidl.h: Ditto.
4135         * include/objsafe.h: Ditto.
4136         * include/ocidl.h: Ditto.
4137         * include/oleacc.h: Ditto.
4138         * include/oledlg.h: Ditto.
4139         * include/oleidl.h: Ditto.
4140         * include/richole.h: Ditto.
4141         * include/shldisp.h: Ditto.
4142         * include/shlobj.h: Ditto.
4143         * include/unknwn.h: Ditto.
4144         * include/vfw.h: Ditto.
4145         Thanks to:    Brandon Sneed <brandon at redf dot net>
4146
4147 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4148
4149         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4150         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4151         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4152
4153 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4154
4155         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4156         here also.
4157
4158 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4159
4160         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4161         We should probably remove PROV_MS_MAIL but I'm keeping it for
4162         now for compatibility reasons.
4163         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4164
4165 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4166
4167         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4168         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4169         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4170
4171 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4172
4173         * include/wingdi.h [WINVER >= 0x0410]
4174         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4175         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4176
4177 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4178
4179         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4180         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4181         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4182         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4183         (L_MAX_URL_LENGTH): Define.
4184         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4185         Thanks to:    Brandon Sneed <brandon at redf dot net>
4186
4187 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4188
4189         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4190
4191 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4192
4193         * include/w32api.h (_W32API_H): Define.
4194         Define in addition to _W32API_H_, this is the w32api standard.
4195
4196 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4197
4198         * include/w32api.h (WindowsVista): Define.
4199
4200 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4201
4202         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4203         on SOCKET_ADDRESS only if winsock2.h has already been included.
4204
4205 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4206
4207         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4208
4209 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4210
4211         * include/iphlpapi.h (GAA_FLAG_*): Define.
4212         (GetAdaptersAddresses): Add function declaration.
4213         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4214         Thanks to:    ross <rossboulet at users dot sf dot net>
4215
4216 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4217
4218         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4219         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4220         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4221         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4222         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4223         SCOPE_LEVEL): Add enums.
4224         (IP_ADAPTER_*): Define.
4225
4226 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4227
4228         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4229         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4230
4231 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4232
4233         * include/objidl.h (PIDSI_*): Define.
4234         (PRSPEC_*): Define.
4235         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4236
4237 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4238
4239         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4240         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4241         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4242         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4243         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4244
4245 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4246
4247         * include/mq.h: New file.
4248         * lib/mqrt.def (MQ*): Define a few missing functions.
4249
4250 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4251
4252         * lib/mqrt.def: New file.
4253         Needs the mq.h file to work properly, working on it.
4254         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4255
4256 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4257
4258         * include/winerror.h (STG_E_*):  Define.
4259         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4260         * include/winerror.h (STG_S_*): Define.
4261         (CO_S_MACHINENAMENOTFOUND): Define.
4262         (RPC_E_*): Define.
4263         (NTE_*): Define.
4264
4265 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4266
4267         * include/commctrl.h (ListView_*):  Define and correct.
4268         (LVM_*): Define.
4269
4270 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4271
4272         * include/winuser.h (WM_IME_*): Define (DWORD type).
4273         (EM_*IMESTATUS): Define.
4274         (WM_*): Define.
4275         (XBUTTON*): Define.
4276         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4277
4278 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4279
4280         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4281         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4282
4283 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4284
4285         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4286         version conditional.
4287
4288 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4289
4290         * include/winspool.h (JOB_INFO_3): Add structure.
4291         (PROVIDOR_INFO_*{AW}): Add structure.
4292         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4293         (PRINTER_ENUM_VALUES{AW}): Add structure.
4294         (PRINTPROCESSOR_CAPS): Add structure.
4295
4296 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4297
4298         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4299         (PRINTER_INFO_7A): Correct definition.
4300
4301 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4302
4303         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4304         (DRIVER_INFO_*{AW}): Add structure.
4305         (PRINTER_INFO_*{AW}): Add structure.
4306         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4307
4308 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4309
4310         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4311         (DRIVER_*MODE): Define (DWORD type).
4312         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4313
4314 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4315
4316         * include/wincon.h (GetConsoleProcessList): Declare.
4317
4318 2006-03-27  Hansres Engel  <engel@node.ch>
4319
4320         * include/mlang.h: New file.
4321
4322 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4323
4324         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4325
4326 2006-03-26  Hansres Engel  <engel@node.ch>
4327
4328          Add Uniscribe API for typography and for complex scripts.
4329         * include/usp10.h: New file.
4330         * lib/usp10.def: New file.
4331
4332         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4333
4334         * include/imm.h (IMECHARPOSITION): Add structure.
4335         (RECONVERTSTRING): Likwise.
4336
4337         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4338
4339         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4340         (IMLangFontLink2): Likewise.
4341         (IMultiLanguage): Likewise.
4342
4343 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4344
4345         * include/wincon.h  (ENABLE_*): Add more defines.
4346
4347 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4348
4349         * include/winnt.h (INHERITED_ACE): Define.
4350         (VALID_INHERIT_FLAGS): Correct definition.
4351
4352 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4353
4354          * lib/wtsapi32.def: New file.
4355
4356 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4357
4358         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4359         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4360
4361 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4362
4363         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4364         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4365         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4366         (DSPRINT_*): Define (DWORD type).
4367         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4368
4369 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4370
4371         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4372         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4373
4374 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4375
4376         * include/shellapi.h [_WIN32_IE >= 0x0600]
4377         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4378         Windows XP SP1 and Windows XP respectively.
4379
4380 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4381
4382         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4383         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4384         * include/shellapi.h [_WIN32_IE >= 0x0500]
4385         (NIS_*): Introduced in Version 5.0.
4386
4387 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4388
4389         * include/wingdi.h (CS_*): Correct WINVER guard on
4390         Image Color Matching colour definitions.
4391
4392 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4393
4394         * include/shlobj.h (SFGAO_ISSLOW): Define.
4395         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4396         attribute constants.
4397
4398 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4399
4400         * include/wingdi.h [WINVER >= 0x0500]
4401         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4402         Thanks to: David A. Capello <dacap at users dot sf dot net>
4403
4404 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4405
4406         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4407         (INTERNET_STATE_*): Define flags.
4408         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4409
4410 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4411
4412         * include/sddl.h: New file.
4413
4414 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4415
4416         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4417         last change.
4418         Remove file level #pragma pack(push,4)/#pragma pop.
4419
4420 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4421
4422         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4423         value to force correct alignment.
4424
4425 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4426
4427         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4428         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4429         (PNM_CACHEHINT): Add backward compatibilty define.
4430         (LPNM_CACHEHINT): Likewise.
4431
4432 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4433
4434         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4435
4436 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4437
4438         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4439         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4440         * lib/shell32.def (PathResolve): Define.
4441
4442 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4443
4444         * include/shlobj.h (PathResolve): Fix typo.
4445
4446 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4447
4448         * include/shlobj.h (PathResolve): Define.
4449         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4450         PRF_DONTFINDLNK): Ditto.
4451         * lib/shell32.def (PathResolve): Define.
4452
4453 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4454
4455         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4456
4457 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4458
4459         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4460         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4461         (NotifyRouteChange@8): Define.
4462
4463 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4464
4465         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4466         prototypes.
4467
4468 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4469
4470         * include/winnt.h (FORCEINLINE): Define.
4471
4472 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4473
4474         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4475
4476 2006-01-26  Filip Navara  <xnavara@volny.cz>
4477
4478         * include/winnt.h (DECLSPEC_ALIGN): Define.
4479
4480 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4481
4482         * include/commctrl.h: Correct spelling of 'compatibility' in
4483         comments.
4484         * include/setupapi.h: Likewise.
4485         * include/ws2tcpip.h: Likewise.
4486
4487 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4488
4489         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4490
4491 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4492
4493         WATCOM compatibility changes.
4494         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4495         rather than __attribute__.
4496         (DECL_EXPORT): Likewise.
4497         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4498         (DDKFASTAPI): Likewise.
4499         (DDKCDECLAPI): Likwise.
4500         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4501
4502 2006-01-23  Brandon Sneed  <brandon@redf.net>
4503
4504         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4505         to exports.
4506
4507 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4508
4509         * include/w32api.h: Increment version to 3.6.
4510         * Makefile.in: Ditto.
4511
4512 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4513
4514         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4515         advapi32.dll functions.
4516
4517 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4518
4519         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4520         names for padding size constants.
4521
4522 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4523
4524         * include/aclapi.h (WINADVAPI): Add to prototypes.
4525         * include/winreg.h (WINADVAPI): Likewise.
4526         * include/winsvc.h (WINADVAPI): Likewise.
4527
4528 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4529
4530         * include/winbase.h (WINADVAPI): Define.
4531
4532 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4533
4534         * include/winuser.h (CreateWindowStation): Correctly identify first
4535         argument as constant.
4536         (CreateWindowStation@): Ditto.
4537
4538 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4539
4540         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4541         (TMT_*, BT_*): Add constants.
4542
4543 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4544
4545         * include/winsock2.h: Don't define struct sockaddr_storage when
4546         building Cygwin.
4547
4548 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4549
4550         * lib/ws2_32.c: New file, defining IPv6 constants.
4551         * lib/Makefile.in (SOURCES): Add ws2_32.c
4552         (EXTRA_OBJS): Add ws2_32.o.
4553
4554 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4555
4556         * lib/user32.def (PrivateExtractIconsA@32,
4557         PrivateExtractIconsW@32): Define.
4558         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4559
4560 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4561
4562         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4563
4564 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4565
4566         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4567
4568 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4569             Danny Smith <dannysmith@users.sourceforge.net>
4570
4571         * lib/msxml-uuid.c: New file to generate UUIDs for
4572         MSXML interfaces.
4573         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4574
4575 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4576
4577         * include/winbase.h (GetDevicePowerState): Add prototype.
4578         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4579
4580 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4581
4582         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4583         Define as macro if !_WIN64.
4584         (SetClassLongPtr{AW}): Likewise.
4585         (GCLP_*): Add GetClassLongPtr defines.
4586         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4587         (SetClassLongPtr{AW}): Likewise.
4588
4589 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4590
4591         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4592         (SetClassLongPtr{AW}): Likewise.
4593         (GCLP_*): Add GetClassLongPtr defines.
4594         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4595         (SetClassLongPtr{AW}): Likewise.
4596
4597 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4598
4599         * include/commdlg.h (OPENFILENAMEW): Add members for
4600         _WIN32_WINNT >= 0x0500.
4601         Thanks to Ricardo Dalcorsso Fodra.
4602         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4603
4604 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4605
4606         * include/wingdi.h (GetICMProfileA): Correct prototype.
4607         (GetICMProfileW): Likewise.
4608         Thanks to: Paul J Lucas
4609
4610 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4611
4612         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4613
4614 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4615
4616         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4617         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4618         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4619         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4620
4621 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4622
4623         * include/objbase.h: Fix typo.
4624         * include/w32api.h: Increment version to 3.5.
4625         * Makefile.in: Ditto.
4626
4627 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4628
4629         * include/w32api.h: Increment version to 3.4.
4630         * Makefile.in: Ditto.
4631
4632 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4633
4634         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4635         Use _WIN32_WINNT >= 0x0501 guard.
4636
4637 2005-10-11  Christopher Faylor  <cgf@timesys.com>
4638
4639         * include/winbase.h (GetProcessId): Declare.
4640
4641 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4642
4643         * lib/ddk/newdev.def: Added.
4644         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
4645
4646 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4647
4648         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
4649         component.
4650         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
4651
4652 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4653
4654         * lib/shell32.def (SHILCreateFromPath): Add stub.
4655         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
4656
4657 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4658
4659         * include/winbase.h (RegisterWaitForSingleObject,
4660         RegisterWaitForSingleObjectEx): Define.
4661         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
4662         (RegisterWaitForSingleObject@16): Changed to
4663         RegisterWaitForSingleObject@24.
4664         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
4665
4666 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
4667
4668         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
4669         Thanks to: Gisle Vanem  <giva at bgnett dot no>
4670
4671 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4672
4673         * include/reason.h [_WIN32_WINNT >= 0x0501]
4674         (SHTDN_REASON_*): New file.
4675         * include/objbase.h: Avoid double header guard.
4676
4677 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
4678
4679         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
4680         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
4681         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
4682
4683 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4684
4685         * include/shlobj.h (IContextMenu3): Define.
4686         * include/shlguid.h (IID_IContextMenu3): Declare.
4687         * lib/shell32.c (IID_IContextMenu3): Define.
4688
4689 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4690
4691         * include/shlobj.h (SHFormatDrive): Declaration of function
4692         and associated constants.
4693
4694 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4695
4696         * include/ddk/hidsdi.h:  New file.
4697         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
4698         functions declared in hidsdi.h.
4699         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
4700
4701 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4702
4703         * lib/imm32.def (ImmDisableIME): Add stub.
4704         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
4705
4706 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4707
4708         * include/w32api.h: Increment version to 3.3.
4709         * Makefile.in: Ditto.
4710
4711 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
4712
4713         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
4714         Correct their values.
4715         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
4716
4717 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4718
4719         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
4720
4721 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4722
4723         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
4724         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
4725
4726 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4727
4728         * include/richedit.h (SETTEXTEX): Define structure and
4729         associated constants.
4730         (GT_SELECTION): Define GETTEXTEX flag constant.
4731
4732 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4733
4734         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
4735
4736 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4737
4738         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
4739         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
4740         prototypes.
4741
4742 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4743
4744         * include/commctrl.h (RBBS_USECHEVRON): Define.
4745         (RBBS_*): Use hex notation, group together.
4746
4747 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4748
4749         * lib/kernel32.def (GetUserGeoID): Correct suffix.
4750         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
4751
4752 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4753
4754         * include/commctrl.h (TreeView_SetItemState): Initilise
4755         _tvi.hItem.
4756         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
4757
4758 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
4759
4760         * include/commctrl.h (NMLVFINDITEM): Add structure.
4761
4762 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4763
4764         * include/wininet.h (WININET_API_FLAG_*): Add defines.
4765
4766 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
4767
4768         * include/winnt.h (VER_SET_CONDITION): Define.
4769
4770 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4771
4772         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
4773         (ATTACH_PARENT_PROCESS): Define.
4774         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
4775         documentation.
4776
4777 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4778
4779         * include/winbase.h (QueueUserWorkItem): Add prototype.
4780
4781 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4782
4783         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
4784         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
4785         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
4786         CM_CMYK_COLOR): Define.
4787
4788 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
4789
4790         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
4791         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
4792         Thanks to: Christian  <chhd at users dot sf dot net>
4793
4794 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4795
4796         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
4797         field.
4798         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
4799
4800 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4801
4802         * include/winbase.h (GlobalDiscard): Define as macro.
4803         Thanks to: David Golub  <david_golub  at users dot sf dot net>
4804
4805 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
4806
4807         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
4808         (WNetGetResourceParentW): Ditto.
4809         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
4810         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
4811
4812 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
4813
4814         * include/wininet.h (FtpGetFileSize): Add prototype.
4815         (FtpCommand[AW]): Correct prototypes.
4816         Reported by: <siger at users dot sf dot net>
4817
4818 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
4819
4820         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
4821         (capGetDriverDescription[AW]): Likewise.
4822
4823 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
4824
4825         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
4826         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
4827         (SE_IMPERSONATE_NAME TEXT): Ditto.
4828         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
4829         (SE_SYNC_AGENT_NAME TEXT): Ditto.
4830
4831 2005-03-16  Christopher Faylor  <cgf@timesys.com>
4832
4833         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
4834         change.
4835
4836 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
4837
4838         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
4839         Thanks to:
4840         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
4841
4842 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4843
4844         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
4845         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
4846         (gai_strerror[AW]): Put into #if 0 block.
4847
4848 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4849
4850         * include/basetyps.h (__int16): Correct define.
4851
4852 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
4853             Danny Smith  <dannysmith@users.sourceforge.net>
4854
4855         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
4856         define for Open Watcom portability.
4857         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
4858         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
4859         of local c_rgodfDI* objects. Replace .rdata section attribute
4860         with 'const' keyword in definition of global c_dfDI* objects.
4861
4862 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
4863
4864         * include/winioctl.h (IOCTL_VOLUME_BASE,
4865         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
4866         Copy defines from include/ddk/ntdddvol.h.
4867         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
4868
4869 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
4870
4871         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
4872
4873 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4874
4875         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
4876         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
4877
4878 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4879
4880         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
4881
4882 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
4883
4884         * lib/user32.def (MonitorFromPoint): Correct suffix.
4885
4886 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4887
4888         * include/wininet.h (InternetCheckConnectionA,
4889         InternetCheckConnectionW) Add prototypes.
4890         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
4891         INTERNET_CONNECTION_CONFIGURED): Add defines.
4892
4893 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4894
4895         * include/commctrl.h (ComboBox_SetMinVisible,
4896         ComboBox_GetMinVisible): Added Macros.
4897         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
4898         Added definitions.
4899
4900 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
4901
4902         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
4903         assembly code conditional on _X86_.
4904
4905 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
4906
4907         * include/w32api.h: Increment version to 3.2.
4908         * Makefile.in: Ditto.
4909         * include/afxres.h: Remove the \r from the line ending.
4910         * include/errorrep.h: Ditto.
4911         * include/shldisp.h: Ditto.
4912         * include/tschema.h: Ditto.
4913         * lib/dhcpcsvc.def: Ditto.
4914         * lib/uxtheme.def: Ditto.
4915         * lib/wldap32.def: Ditto.
4916
4917 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
4918
4919         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
4920         Correct typo.
4921         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
4922
4923 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4924
4925         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
4926         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
4927         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
4928         SPI_GETFOREGROUNDLOCKTIMEOUT,
4929         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
4930         *include/imm.h (WM_IME_REQUEST): Added definition.
4931         *include/shlobj.h (SLGP_RAWPATH,
4932         SLGP_UNCPRIORITY): Added definition.
4933
4934 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4935
4936         *include/winuser.h (HSHELL_FLASH): Added definition.
4937
4938 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4939
4940         * include/shldisp.h (IAutoComplete): Added interface definiton.
4941         * include/shldisp.h (IAutoComplete2): Added interface definiton.
4942         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
4943         * include/shlobj.h (IObjMgr): Added interface definiton.
4944         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
4945         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
4946         CLSID_ACListISF, IID_IACList): Added GUIDs.
4947         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
4948         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
4949         CLSID_ACListISF, IID_IACList): Added GUIDs.
4950
4951 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
4952
4953         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
4954         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
4955         (CDRF_*): Use hex notation for constants.
4956
4957 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
4958
4959         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
4960         Reported by Eric Sharkey <sharkey at netrics dot com>
4961
4962 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4963
4964         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
4965         TokenGroupsAndPrivileges, TokenSessionReference,
4966         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
4967         Reformat.
4968         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
4969         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
4970
4971 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
4972
4973         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
4974         ImageList_Duplicate): Add stubs.
4975
4976 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
4977
4978         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
4979         Thanks to "Pete" <pross@xvid.org>
4980
4981 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
4982
4983         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
4984         AC_DST_NO_ALPHA, ...): Add defines.
4985         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
4986         ULW_OPAQUE): Add defines.
4987
4988 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
4989
4990         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
4991         guard.
4992         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
4993         suffix.
4994         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
4995
4996 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
4997
4998         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
4999         (CreateProcessWithLogonW): Declare.
5000         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5001         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5002
5003 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5004
5005         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5006         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5007
5008 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5009
5010         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5011         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5012
5013 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5014
5015         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5016
5017 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5018
5019         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5020         Add defines.
5021         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5022
5023 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5024
5025         * include/shellapi.h (NIF_GUID): Add another define.
5026
5027 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5028
5029         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5030         Changed it twice due to inconsistent MSDN documentation.
5031         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5032
5033 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5034
5035         * include/shlobj.h (SHGFP_TYPE): Add enum.
5036
5037 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5038
5039         * include/winuser.h (WM_THEMECHANGED): Add define.
5040
5041 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5042
5043         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5044         ExFreeToPagedLookasideList): Guard inline versions with
5045         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5046         external functions for earlier _WIN32_WINNT.
5047
5048 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5049
5050         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5051
5052 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5053
5054         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5055         if  undefined and __W32API_USE_DLLIMPORT__.
5056         Add WINBASEAPI token to prototypes, throughout.
5057
5058 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5059
5060         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5061         (GetFiberData): Likewise.
5062         (NtCurrentTeb): Likewise.
5063
5064 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5065
5066         * include/shellapi.h (NIF_INFO): Add define.
5067         (NIIF_*) Add defines..
5068         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5069         (NIF_*): Convert constants to hex.
5070
5071 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5072
5073         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5074         GetGlyphIndicesW): Declare.
5075         (GGI_MARK_NONEXISTING_GLYPHS): Define
5076         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5077         GetGlyphIndicesW): Add stubs.
5078
5079 2004-10-24  Dan Aloni  <da-x@colinux.org>
5080
5081         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5082         ZwQueryFullAttributesFile): Declare.
5083         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5084         Declare.
5085         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5086         ZwQueryVolumeInformationFile): Add stubs.
5087
5088 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5089
5090         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5091         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5092
5093 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5094             Danny Smith  <dannysmith@users.sourceforge.net>
5095
5096         * include/winbase.h (InitializeSListHead, Interlocked*):
5097         Guard with !__USE_NTOSKRNL__.
5098
5099         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5100         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5101         Guard with  __USE_NTOSKRNL__.
5102         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5103         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5104         && _WIN32_WINNT >= 0x0501
5105         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5106         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5107         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5108         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5109
5110         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5111         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5112         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5113         ExWindowStationObjectType, IoAdapterObjectType,
5114         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5115         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5116         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5117         Uncomment stubs.
5118
5119 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5120
5121         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5122         definition
5123         (IoReleaseRemoveLock): Add definition.
5124
5125 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5126
5127         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5128         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5129         Add prototypes.
5130         * include/winddk.h (ExInterlockedAddUlong,
5131         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5132         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5133         ExInterlockedPushEntryList): Change calling convention to
5134         DDKAPI.
5135         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5136         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5137         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5138         Add prototypes for DDKFASTAPI versions.
5139         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5140         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5141         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5142         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5143         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5144         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5145         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5146         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5147         Add fastcall stubs.
5148         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5149         Exi386InterlockedIncrementLong); Add stdcall stubs.
5150
5151 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5152
5153         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5154          if __W32API_USE_DLLIMPORT__ is defined.
5155         * include/winuser.h (WINUSERAPI): Likewise.
5156
5157 2004-09-29  Filip Navara  <xnavara@volny.cz>
5158
5159         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5160         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5161         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5162         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5163         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5164         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5165         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5166         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5167         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5168         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5169         winnt4.h, ws2san.h): Fixed packing.
5170         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5171         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5172         HID_INTERFACE_NOTIFY_PNP): Likewise.
5173         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5174         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5175         <ayerkes@speakeasy.net>.
5176         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5177         declaration.
5178         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5179         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5180         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5181         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5182         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5183         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5184         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5185         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5186         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5187         (SYNCH_LEVEL): Added definition.
5188         (KPCR, KPCR_TIB): Fixed declaration.
5189         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5190         included and _WIN32_WINNT >= 0x0501.
5191         (RtlEqualLuid): Fixed macro definition.
5192         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5193         KeRaiseIrql on i386 architectures.
5194
5195 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5196
5197         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5198         declaration.
5199         (IHTMLSelectionObject): Correct get_type declaration.
5200         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5201         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5202         IHTMLBodyElement2): Add interfaces.
5203         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5204         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5205         typedefs.
5206         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5207         Add IIDs.
5208
5209 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5210
5211         * include/w32api.h: Increment version to 3.1.
5212         * Makefile.in: Ditto.
5213
5214 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5215
5216         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5217         MonitorFromWindow): Add prototypes.
5218         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5219         MonitorFromWindowMonitorFromWindow): Add stubs.
5220         * include/shellapi.h (DuplicateIcon): Add prototype.
5221
5222 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5223
5224         * include/winuser.h (WINUSERAPI): New define.
5225         Use it to mark user32.dll imports, throughout.
5226
5227 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5228
5229         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5230         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5231         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5232         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5233         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5234         HidD_GetPreparsedData, HidD_GetProductString,
5235         HidD_GetSerialNumberString, HidD_SetConfiguration,
5236         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5237         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5238
5239 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5240
5241         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5242         Add XP defines.
5243         (PCOORD): Add typedef.
5244         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5245
5246 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5247
5248         * include/winldap.h: Don't check value of UNICODE.
5249         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5250
5251 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5252
5253         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5254
5255 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5256
5257         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5258         guard.
5259
5260 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5261
5262         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5263
5264 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5265
5266         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5267
5268 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5269
5270         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5271
5272 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5273
5274         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5275
5276 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5277
5278         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5279         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5280         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5281         Add defines.
5282         (CALG_SHA1): Add define.
5283         (HP_HMAC_INFO): Add define.
5284         (HMAC_INFO): Add struct.
5285         (BLOBHEADER): Add typedef.
5286
5287 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5288
5289         * include/commctrl.h (TreeView_SetItemState): Define macro.
5290
5291 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5292
5293         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5294         macros together.
5295
5296 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5297
5298         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5299         (FILEGROUPDESCRIPTOR): LIkewise.
5300
5301 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5302
5303         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5304
5305 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5306
5307         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5308         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5309         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5310         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5311         (IMAGE_ORDINAL): Map to ...
5312         (IMAGE_ORDINAL{32,64}: New defines.
5313         (IMAGE_THUNK_DATA):  Map to ...
5314         (IMAGE_THUNK_DATA{32,64}: New structures.
5315         (IMAGE_THUNK_DATA): Map to ...
5316         (IMAGE_THUNK_DATA{32,64}: New structures.
5317         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5318         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5319         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5320         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5321
5322 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5323
5324         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5325         _WIN32_WINNT >= 0x0500.
5326
5327 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5328
5329         * include/winbase.h (GetWriteWatch): Correct prototype.
5330         (WRITE_WATCH_FLAG_RESET): Define.
5331         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5332
5333 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5334
5335         * include/commctrl.h (Animate_OpenEx): Define.
5336         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5337         (ListView_GetNumberOfWorkAreas): Correct macro.
5338         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5339         ListView_SetItemCountEx, ListView_GetISearchString,
5340         TreeView_GetLastVisible, Header_CreateDragImage,
5341         Header_SetImageList, Header_GetImageList): Define.
5342         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5343         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5344         TBSTATE_ELLIPSES): Define.
5345         (MonthCal_SetRange): Correct macro.
5346         (ImageList_Duplicate): Declare.
5347
5348 2004-05-29  Filip Navara  <xnavara@volny.cz>
5349
5350         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5351
5352 2004-05-25  Al Slater  <al.slater@scluk.com>
5353
5354         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5355         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5356
5357 2004-05-15  Filip Navara  <xnavara@volny.cz>
5358
5359         * include/ddk/kbdmou.h: New file.
5360         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5361         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5362         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5363         _vsnwprintf, sprintf, swprintf): Export.
5364
5365 2004-05-15  Filip Navara  <xnavara@volny.cz>
5366
5367         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5368         headers.
5369
5370 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5371
5372         * include/wingdi.h: Correct non-unicode typedefs of
5373         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5374
5375 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5376
5377         * include/winsock.h (IN_CLASSA): Fix macro.
5378         * include/winsock2.h (IN_CLASSA): Fix macro.
5379
5380 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5381
5382         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5383         * include/aclui.h: Remove '\r', throughout.
5384         * include/msacm.h: Likewise.
5385         * lib/aclui.def: Likewise.
5386
5387 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5388
5389         * lib/comctl32.def (SetWindowSubclass): Add stub.
5390         Thanks to Eugene <egladysh@users.sourceforge.net>.
5391
5392 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5393
5394         * include/winbase.h (EXECUTION_STATE): Add typedef.
5395         (SetThreadExecutionState): Declare.
5396         * include/wingdi.h (_WINGDI_): Define.
5397         * include/objbase.h (_OBJBASE_H_): Define.
5398
5399 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5400
5401         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5402         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5403         (SM_CMETRICS): Adjust value.
5404         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5405         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5406         Add defines.
5407         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5408
5409 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5410
5411         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5412         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5413         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5414         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5415         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5416         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5417
5418 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5419
5420         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5421         DNSREC_ADDITIONAL): Add defines.
5422
5423 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5424
5425         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5426
5427 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5428
5429         * include/aclui.h: New file.
5430         * lib/aclui.def: New file.
5431         * lib/test.c: Add aclui.h to includes.
5432
5433 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5434
5435         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5436         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5437         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5438
5439 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5440
5441         * include/wingdi.h: Protect non-unicode case of below.
5442
5443 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5444
5445         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5446         LPENUMLOGFONTEXDV with appropriate version check.
5447
5448 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5449
5450         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5451         DSPROPSETID_DirectSoundDevice): Add defines.
5452
5453 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5454
5455         * include/msacm.h: New file.
5456
5457 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5458
5459         * include/objbase.h (STGFMT): Declare enum.
5460         (STGOPTIONS): Declare structure.
5461         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5462         (STGOPTIONS_VERSION): Define.
5463         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5464
5465 2004-04-13  Filip Navara  <xnavara@volny.cz>
5466
5467         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5468         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5469         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5470         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5471         HELP_SETWINPOS): Define.
5472         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5473         (SPI_*): Add new definitions for WINVER >= 0x500.
5474         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5475         (InternalGetWindowText, SetWindowsHookW): Declare.
5476         * include/winbase.h (InitializeSListHead): Avoid conflicting
5477         definition with DDK headers.
5478
5479 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5480
5481         * include/winuser.h (GetLastError): Move from here...
5482         * include/winbase.h: ... to here.
5483
5484 2004-04-13  Filip Navara  <xnavara@volny.cz>
5485
5486         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5487
5488 2004-04-13  Filip Navara  <xnavara@volny.cz>
5489
5490         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5491         WINVER >= 0x400.
5492         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5493         (ENUMLOGFONTEXW): Fix definition.
5494         (ENUMLOGFONTEXDV[AW]): Declare.
5495
5496 2004-04-13  Filip Navara  <xnavara@volny.cz>
5497
5498         * include/wingdi.h: Declare the DirectDraw structures only if
5499         the DirectDraw kernel mode headers aren't included.
5500         (EMFINFO): Declare.
5501         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5502         STROBJ_bEnumPositionsOnly): Correct prototypes.
5503
5504 2004-04-13  Filip Navara  <xnavara@volny.cz>
5505
5506         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5507         * include/rpc.h (RPCRTAPI): Define.
5508         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5509         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5510         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5511         (I_RpcBindingSetAsync): Correct prototype.
5512         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5513         to w2kReserved.
5514         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5515         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5516         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5517         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5518         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5519         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5520         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5521         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5522         NdrUserMarshalFree): Declare.
5523         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5524         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5525
5526 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5527
5528         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5529         LPC_MESSAGE_BASE_SIZE): Define.
5530         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5531
5532 2004-04-13  Filip Navara  <xnavara@volny.cz>
5533
5534         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5535         Declare.
5536
5537 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5538
5539         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5540         MONITORINFO when compiling as C++.
5541
5542 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5543
5544         * README.w32api: List separate copyright conditions for some headers.
5545         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5546
5547 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5548
5549         * include/wingdi.h (RGB): Correct macro.
5550
5551 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5552
5553         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5554
5555 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5556
5557         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5558
5559 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5560
5561         * lib/Makefile.in: Add directx to .PHONY target.
5562         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5563         Don't include stdio.h or tchar.h.
5564         Replace _T() macro with TEXT() macro, throughout.
5565         Replace _stprintf with wsprintf, throughout.
5566
5567 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5568
5569         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5570         Add define.
5571         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5572         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5573         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5574
5575 2004-03-27  Filip Navara  <xnavara@volny.cz>
5576
5577         * include/directx: New subdir.
5578         * lib/directx: Ditto.
5579         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5580         dxerr9.h): New files.
5581         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5582         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5583         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5584         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5585         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5586         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5587         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5588         strmiids.c, test.c): Ditto.
5589         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5590         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5591
5592 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5593
5594         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5595         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5596         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5597
5598 2004-03-24  Filip Navara  <xnavara@volny.cz>
5599
5600         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5601         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5602
5603 2004-03-24  Filip Navara  <xnavara@volny.cz>
5604
5605         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5606         TaggedQueueing to TaggedQueuing.
5607         (_HW_INITIALIZATION_DATA): Likewise.
5608
5609 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5610
5611         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5612         prototype.
5613         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5614
5615 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5616
5617         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5618         (MmMapIoSpace): Likewise.
5619         Thanks to Dan Aloni  <da-x@colinux.org>
5620
5621 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5622
5623         * include/shellapi.h (NIM_* NIS_*): Define constants for
5624         notification icons with _WIN32_IE >= 0x0500.
5625         (NOTIFYICONDATA): Add new structure members for notification
5626         icons with _WIN32_IE >= 0x0500.
5627
5628 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5629
5630         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5631         Add defines.
5632         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5633         (GROUPID) Add typedef.
5634         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5635         (CreateUrlCacheGroup): Add prototype.
5636         (DeleteUrlCacheGroup): Add prototype.
5637         (FindFirstUrlCacheGroup): Add prototype.
5638         (FindNextUrlCacheGroup): Add prototype.
5639         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
5640         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
5641
5642 2004-03-10  Al Slater  <al.slater@scluk.com>
5643
5644         * include/winsock2.h: Add missing LPFN_ typdefs for
5645         function pointers.
5646         Clean up whitespace.
5647
5648 2004-03-05  Filip Navara  <xnavara@volny.cz>
5649
5650         * include/ddk/scsi.h: Replace assert with ASSERT.
5651         * include/ddk/video.h: Ditto.
5652         * include/ddk/winddk.h: Ditto. Remove the assert macro.
5653         * include/ddk/tdi.h: Correct packing.
5654
5655 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
5656
5657         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
5658         NONAMELESSUNION case.
5659
5660 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
5661
5662         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
5663         __VARIANT_NAME_ constants.
5664
5665 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5666
5667         * include/uxtheme.h: Include <commctrl.h>
5668
5669 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5670
5671         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
5672
5673 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
5674
5675         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
5676         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
5677         together.
5678         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
5679         (V_I8, V_I8REF): Correct macros.
5680         (V_DECIMAL): Correct macro definitions.
5681         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
5682         constants.
5683         (VTBIT_*): Define constants.
5684         (UDATE): Add structure definition.
5685         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
5686         functions.
5687         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
5688         (SafeArrayCreateVectorEx): Declare function.
5689         (Var*): declare VARIANT manipulation functions.
5690         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
5691         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
5692         macros.
5693
5694 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
5695
5696         * include/oaidl.h (FADF_*): Define missing constants.
5697         (IDispatch_*): Define COBJ macros.
5698         (VARIANT): Add missing union members llVal and ullVal.
5699         (wireVARIANT): Likewise.
5700         (ITypeinfo_*): Define COBJ macros.
5701         * include/oleauto.h (Var*FromDisp): Correct parameter type from
5702         LPDISPATCH* to LPDISPATCH.
5703         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
5704         VAR_CALENDAR_*): Add missing constants.
5705         (SafeArray[Get/Set]*): Add prototypes.
5706         (Var*From*):  Add missing prototypes.
5707         (NUMPRS_*): Add defines.
5708         (NUMPARSE): Define structure.
5709         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
5710         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
5711         * include/winuser.h (COLOR_*): Define missing constants.
5712         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
5713         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
5714
5715 2004-02-23  Filip Navara  <xnavara@volny.cz>
5716
5717         * include/ddk/video.h: Corrected packing.
5718
5719 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5720
5721         * include/GL/glu.h (GLU_ERROR): Define.
5722         Thanks to Philip Lamb  <phil at rave dot co dot nz>
5723
5724 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5725
5726         * include/GL/glu.h: Include <stddef.h>.
5727         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
5728
5729 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
5730
5731         * include/w32api.h: Increment version to 3.0.
5732         * Makefile.in: Ditto.
5733         * README.win32api: Modify license to Public Domain per agreement as
5734         found in the mingw-dvlpr list archive.
5735
5736 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
5737
5738         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
5739         (DIRECTORY_TRAVERSE): Ditto.
5740         (DIRECTORY_CREATE_OBJECT): Ditto.
5741         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
5742         (DIRECTORY_ALL_ACCESS): Ditto.
5743         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
5744
5745 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
5746
5747         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
5748
5749         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
5750         Thanks to Mike Nordell <tamlin at algonet dot se>.
5751
5752 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5753
5754         * lib/dnsapi.def: New file.
5755         * lib/test.c: Include windns.h.
5756
5757 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
5758
5759         * include/windns.h: New file.
5760
5761 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5762
5763         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
5764         defines.
5765         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
5766         (SQLSetDescFieldW): Correct prototype.
5767         (SQLSetDescFieldA): Add prototype.
5768         (SQLGetDescFieldW): Add prototype.
5769
5770 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
5771
5772         * include/winuser.h (DFC_POPUPMENU): Add define.
5773
5774 2004-02-07  Dan Aloni  <da-x@gmx.net>
5775
5776         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
5777         suffix.
5778
5779 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5780
5781         * include/oleacc.h (LIBID_Accessibility): Declare.
5782         * lib/uuid.c (LIBID_Accessibility): Define.
5783
5784 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5785
5786         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
5787         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
5788
5789 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5790
5791         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
5792         defines.
5793
5794 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
5795
5796         * include/winuser.h (RT_MANIFEST): Make conditional on
5797         RC_INVOKED.
5798         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
5799         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
5800         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
5801         defines.
5802
5803 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
5804
5805         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
5806
5807 2004-01-15  Filip Navara  <xnavara@volny.cz>
5808
5809         * include/ddk/mcd.h: Don't care about value of DBG define.
5810         * include/ddk/srb.h: Ditto.
5811         * include/ddk/storport.h: Ditto.
5812         * include/ddk/video.h: Ditto.
5813         * include/nspapi.h (SetServiceW, GetAddressByNameA,
5814         GetAddressByNameW): Correct protoype.
5815         * include/ntsecapi.h (PCUNICODE_STRING): Define.
5816
5817 2004-01-05  Filip Navara  <xnavara@volny.cz>
5818
5819         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
5820         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
5821         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
5822         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
5823         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
5824         FOF_NOCOPYSECURITYATTRIBS): Add defines.
5825         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
5826         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
5827         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
5828         SSF_*): Add defines.
5829         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
5830         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
5831         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
5832         Correct.
5833         (IEnumIDList): Add COBJMACROS.
5834         * include/winuser.h (MIM_*): Add define.
5835
5836 2004-01-04  Filip Navara  <xnavara@volny.cz>
5837
5838         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
5839         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
5840         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
5841         PERSIST_FOLDER_TARGET_INFO): Define structures.
5842         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
5843         IPersistFolder2, IPersistFolder3): Add COM interface
5844         definitions.
5845         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
5846         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
5847         Add COBJMACROS.
5848         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
5849         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
5850         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
5851
5852 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
5853
5854         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
5855         declarations.
5856         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
5857
5858 2004-01-03  Filip Navara  <xnavara@volny.cz>
5859
5860         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
5861         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
5862         declare IID's.
5863         (IErrorInfo): Add COBJMACROS.
5864         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
5865         (CoGetPSClsid): Add protototype,
5866         (CoRegisterPSClsid): Likewise.
5867         * include/objidl.h (IMarshal): Correct methods.
5868         (IMallocSpy): Likewise,
5869         (LPPSFACTORYBUFFER): Add typedef.
5870         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
5871         IID.
5872         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
5873         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
5874         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
5875         structures.
5876         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
5877         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
5878         IQuickActivate): Define interfaces. Declare IID's.
5879         (IPersistPropertyBag2): Add COBJMACROS.
5880         (LPOLEUNDOMANAGER): Add typedef.
5881         (LPPROPERTYBAG2): Likewise.
5882         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
5883         (BINDSPEED): Add definition.
5884         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
5885         IDropTarget): Add COBJMACROS.
5886         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
5887         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
5888         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
5889         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
5890         Add IID definitions.
5891
5892 2004-01-02  Filip Navara  <xnavara@volny.cz>
5893
5894         * include/ddk/winddk.h: Don't care about value of
5895         DBG define.
5896
5897 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
5898             Filip Navara  <xnavara@volny.cz>
5899
5900         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
5901         _DDK_DUMMYUNION_N_MEMBER): New macros.
5902         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
5903         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
5904         Use them.
5905
5906 2004-01-01  Filip Navara  <xnavara@volny.cz>
5907
5908         * include/objbase.h: Don't care about value of DBG define.
5909         * include/objidl.h: Add some COBJMACROS.
5910         * include/ocidl.h: Ditto.
5911         * include/oleidl.h: Ditto.
5912         * include/servprov.h: Ditto.
5913         * include/shlobj.h: Ditto.
5914         * include/shlobj.h (IContextMenu2): Correct parent in
5915         DECLARE_INTERFACE.
5916         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
5917         Define interfaces.
5918         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
5919         Add new constants for _SETUPAPI_VER >= 0x501.
5920
5921 2004-01-01  Filip Navara  <xnavara@volny.cz>
5922
5923         * include/winnt.h (NtCurrentTeb): Add inline definition.
5924
5925 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
5926
5927         * include/shlobj.h (SHCoCreateInstance): Add prototype.
5928         * lib/shell32.def (SHCoCreateInstance): Add export stub.
5929
5930 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
5931
5932         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
5933         (CM_Request_Device_Eject_Ex[AW]): Likwise.
5934         * include/ddk/cfg.h (DN_*): Add defines.
5935
5936 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5937
5938         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
5939
5940 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
5941
5942         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
5943         (NMTVGETINFOTIP): Add structure.
5944
5945 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5946
5947         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
5948         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
5949         DISPLAY_DEVICE_MODESPRUNED): Add defines.
5950
5951 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5952
5953         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
5954         Add macros.
5955         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
5956         constants.
5957         * include/shlobj.h (SHCOLUMNINIT): Add structure.
5958         (SHCOLUMNDAT): Likwise.
5959         (SHCOLUMNID): Likewise.
5960         (SHCOLUMNINFO): Likewise.
5961         (SHCOLSTATE): Add enum.
5962         (IColumnProvider): Add COM interface.
5963         (IQueryInfo): Likewise.
5964         (IShellIconOverlayIdentifier): Likewise.
5965         * include/shlguid.h (IID_IColumnProvider) Declare.
5966         (IID_IQueryInfo): Likweise.
5967         (IID_IShellIconOverlayIdentifier): Likwise.
5968         * lib/shell32.c (IID_IColumnProvider) Define.
5969         (IID_IQueryInfo): Likweise.
5970         (IID_IShellIconOverlayIdentifier): Likwise.
5971
5972 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
5973
5974         * include/winuser.h (RT_MANIFEST): Add define.
5975
5976 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
5977
5978         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
5979
5980 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
5981
5982         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
5983         (GetFiberData): Likewise.
5984         (GetCurrentFiber): Change volatile to __volatile__.
5985         (GetFiberData): Likewise.
5986
5987 2003-11-27  Christopher Faylor  <cgf@redhat.com>
5988
5989         * lib/Makefile.in: Use make function to locate .mri file to allow
5990         building in directory other than source directory.
5991
5992 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
5993
5994         * lib/vfw32.def: Remove, replacing with ...
5995         * lib/msvfw32.def: New file.
5996         * lib/avicap32.def: New file.
5997         * lib/avifil32.def: New file.
5998         * lib/vfw32.mri: New file.
5999         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6000         import libs with multiple dll's.
6001         (LIBS): Add MIMPLIBS.
6002         (DISTFILES): Add MRI_FILES.
6003         (libvfw32.a): Build using mri script.
6004
6005 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6006
6007         * include/winnt.h (PAGE_*): Group defines together. Change
6008         constants to hex notation.
6009
6010 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6011
6012         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6013
6014 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6015
6016         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6017         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6018         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6019         Add prototypes.
6020         * lib/shell32.def: Add stubs.
6021
6022         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6023         compiler warnings.
6024
6025 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6026
6027         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6028
6029 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6030
6031         * include/windows.h (CopyCursor): Define as macro.
6032
6033 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6034
6035         * include/winnt.h (CONTAINING_RECORD): Add macro.
6036
6037 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6038
6039         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6040         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6041         defines.
6042
6043 2003-10-13  Filip Navara  <xnavara@volny.cz>
6044
6045         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6046         defines for Dynamic Storage Arrays.
6047         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6048         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6049         and defines for Flat ScrollBars.
6050         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6051         DefSubclassProc): Add prototypes for subclassing.
6052         (DrawShadowText): Add prototype.
6053         (COMCTL32_VERSION): Define.
6054
6055 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6056
6057         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6058         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6059
6060 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6061
6062         * include/winnt.h (SM_REMOTESESSION): Add define.
6063         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6064
6065 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6066
6067         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6068         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6069         duplicate definitions.
6070         (KP_X, KP_Y): Correct typos.
6071
6072 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6073
6074         * include/afxres.h: New file.
6075
6076         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6077         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6078         ENM_SCROLLEVENTS): Add constants.
6079
6080         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6081
6082 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6083
6084         * include/errorep.h: New file.
6085
6086         * lib/faultrep.def: New file.
6087
6088 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6089
6090         * include/winbase.h (AddVectoredExceptionHandler): Define if
6091         _WIN32_WINNT >= 0x0500.
6092
6093         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6094         _WIN32_WINNT >= 0x0500.
6095
6096 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6097
6098         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6099         _WIN32_WINNT >= 0x0501.
6100
6101 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6102
6103         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6104         UnregisterWaitEx): Add functions.
6105
6106         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6107         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6108         or guard function. The MSDN says it is available on Windows XP and
6109         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6110         Huh?
6111
6112         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6113         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6114         ZombifyActCtx, QueryActCtxW): Add functions.
6115
6116         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6117         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6118         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6119         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6120
6121         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6122         SetFirmwareEnvironmentVariable[AW]): Add functions.
6123
6124         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6125         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6126         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6127         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6128         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6129
6130         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6131         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6132
6133         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6134         (ACTIVATION_CONTEXT_INFO_CLASS,
6135         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6136         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6137         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6138         Add structures.
6139
6140         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6141         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6142         SetFileShortName[AW], SetFileValidData,
6143         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6144         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6145
6146 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6147
6148         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6149         ResetWriteWatch): Add function.
6150
6151         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6152         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6153         Add functions.
6154
6155         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6156         (GetSystemWow64Directory[AW], HeapQueryInformation,
6157         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6158         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6159         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6160         RemoveVectoredExceptionHandler): Add functions.
6161
6162         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6163         Add enumeration.
6164
6165         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6166         Add function.
6167
6168         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6169         Add function. The MSDN Magazine of June 2003 reads:
6170                 RestoreLastError is an enigma. It's code is identical to
6171                 SetLastError. It's unclear to me why it was made into a
6172                 separate API.
6173
6174         * lib/user32.def (GetSystemWindowsDirectory[AW],
6175         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6176         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6177         InterlockedFlushSList, InterlockedPopEntrySList,
6178         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6179         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6180         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6181         RestoreLastError): Add functions.
6182
6183 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6184
6185         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6186         GetProcessIoCounters): Add functions.
6187
6188         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6189         Move around, needed by GetComputerNameEx.
6190
6191         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6192         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6193         Add functions.
6194
6195         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6196         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6197
6198         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6199         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6200         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6201         Windows XP SP1 and better.
6202
6203         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6204         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6205         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6206         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6207         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6208         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6209         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6210         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6211         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6212
6213         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6214         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6215         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6216         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6217         Add functions.
6218
6219 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6220
6221         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6222         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6223         DebugSetProcessKillOnExit): Add functions.
6224
6225         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6226         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6227         DnsHostnameToComputerName[AW]): Add functions.
6228
6229         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6230         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6231         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6232
6233 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6234
6235         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6236         on Windows XP and later.
6237
6238 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6239
6240         * include/commctrl.h (TreeView_Select): Returns BOOL.
6241
6242 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6243
6244         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6245
6246         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6247         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6248
6249         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6250         CreateTimerQueueTimer): Add function.
6251
6252         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6253         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6254
6255         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6256         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6257
6258         * include/winnt.h (WT_*): Add constants.
6259
6260         * lib/user32.def (CancelDeviceWakeupRequest,
6261         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6262         DeactivateActCtx): Add functions.
6263
6264 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6265
6266         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6267         Add function. Sometimes I don't understand MSDN. This function is
6268         available on Windows XP and Server 2003, but the SDK is supposed to
6269         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6270         Mmmh...
6271
6272         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6273         Guard function. Same remark as above.
6274
6275         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6276         Add functions.
6277
6278 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6279
6280         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6281         Add constants.
6282
6283         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6284         structures.
6285
6286         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6287         function. MSDN says the first argument is HACTCTX but I'm not sure
6288         where such a specialized handle is defined, so use HANDLE instead.
6289
6290         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6291         CheckNameLegalDOS8Dot3[AW]): Add functions.
6292
6293         * lib/user32.def (ActivateActCtx, AttachConsole,
6294         CheckNameLegalDOS8Dot3[AW]): Add functions.
6295
6296         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6297         Unfortunately I don't know which header to put the declarations in.
6298
6299 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6300
6301         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6302         Add constants.
6303
6304         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6305         constants for National Language Support.
6306
6307         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6308         Language Support.
6309
6310         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6311         Language Support.
6312
6313         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6314         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6315         Add functions.
6316
6317         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6318         functions. Strange... I am unable to find which library contains
6319         these functions. Can't find anything with pexports. Any clue?
6320
6321         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6322         SetUserGeoID): Add functions.
6323
6324 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6325
6326         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6327         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6328
6329         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6330         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6331         value for constants.
6332
6333 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6334
6335         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6336         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6337         the algorithms.
6338
6339 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6340
6341         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6342
6343 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6344
6345         * include/wincrypt.h (KP_*): Add constants. Needed by
6346         CryptSetKeyParam() and other functions.
6347
6348 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6349
6350         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6351         Add constants, related to Console Accessibility.
6352
6353 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6354
6355         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6356         wrong value for constant.
6357
6358 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6359
6360         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6361
6362         * include/uxtheme.h: Cleanup.
6363         * include/tmschema.h: Cleanup.
6364
6365 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6366
6367         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6368         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6369
6370 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6371
6372         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6373
6374 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6375
6376         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6377         both winuser.h and dbt.h.
6378         * include/dbt.h (BSF_*, BSM_*): Likewise.
6379
6380         * include/winuser.h (struct tagRAWINPUT): Remove
6381         _ANONYMOUS_UNION tag from named union.
6382         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6383
6384 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6385
6386         * include/dhcpcdsk.h: New file.
6387         Note that MSDN is confused about whether it should start constant
6388         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6389         experience suggests it's DHCPCAPI with `C'.
6390
6391         * lib/dhcpcsvc.def: New file.
6392
6393 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6394
6395         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6396         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6397
6398         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6399         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6400         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6401         for use in RAWINPUTDEVICE.
6402
6403         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6404         (GetRawInputDeviceInfo[AW]): Ooops... there are
6405         ANSI/Unicode versions of this function.
6406
6407         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6408         are ANSI/Unicode versions of this function.
6409
6410 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6411
6412         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6413         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6414         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6415         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6416         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6417         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6418         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6419         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6420         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6421         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6422         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6423         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6424         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6425         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6426         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6427         RIDI_DEVICEINFO): Add constants.
6428
6429         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6430         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6431         RAWINPUTDEVICELIST): Add structures.
6432
6433         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6434         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6435         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6436
6437         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6438         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6439         GetRegisteredRawInputDevices): Add functions.
6440
6441 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6442
6443         * include/winable.h (BlockInput): Add function.
6444
6445         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6446         For use with WINDOWINFO structure.
6447
6448         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6449         Add function.
6450
6451         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6452         Add function.
6453
6454         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6455         Add function...
6456
6457         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6458         ...and duplicate.
6459
6460         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6461         Guard function...
6462
6463         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6464         ...and duplicate.
6465
6466         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6467         Guard function...
6468
6469         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6470         ...and duplicate.
6471
6472         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6473         HARDWAREINPUT, INPUT): Guard structures...
6474
6475         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6476         HARDWAREINPUT, INPUT): ...and duplicate.
6477
6478         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6479         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6480
6481         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6482         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6483
6484         * include/winuser.h: Move around some lines. Reformat according
6485         to recommended or dominant style. Remove FAR keyword.
6486
6487         * include/winable.h: Move around some lines.
6488
6489         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6490         LockWorkStation, UnhookWinEvent): Add functions.
6491
6492 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6493
6494         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6495         PW_CLIENTONLY): Add function and constant.
6496
6497         * lib/user32.def (PrintWindow): Add function.
6498
6499 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6500
6501         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6502
6503         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6504
6505 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6506
6507         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6508         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6509         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6510
6511         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6512
6513 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6514
6515         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6516         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6517         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6518
6519         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6520         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6521         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6522
6523         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6524         Add function.
6525
6526         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6527         Add functions.
6528
6529 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6530
6531         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6532         ACE_OBJECT_TYPE_PRESENT): Add constants.
6533         For use with OBJECTS_AND_NAME structure.
6534
6535 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6536
6537         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6538         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6539         void* instead.
6540
6541         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6542         PINHERITED_FROM[AW]): Add structures.
6543
6544         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6545
6546 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6547
6548         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6549
6550 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6551
6552         * lib/version.def (LIBRARY): Quote name.
6553
6554 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6555
6556         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6557         and constants.
6558
6559         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6560         GR_USEROBJECTS): Add functions and constants.
6561
6562         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6563         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6564
6565         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6566         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6567         constants.
6568
6569         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6570         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6571
6572 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6573
6574         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6575         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6576         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6577         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6578         BSF_RETURNHDESK): Add functions and constants.
6579
6580         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6581         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6582
6583         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6584         GetProcessDefaultLayout, SetProcessDefaultLayout,
6585         RealChildWindowFromPoint, SetProcessDefaultLayout,
6586         SwitchToThisWindow): Add functions.
6587
6588         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6589         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6590         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6591         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6592         RealChildWindowFromPoint, SetProcessDefaultLayout,
6593         SwitchToThisWindow): Add function.
6594
6595 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6596
6597         * include/winuser.h (DeregisterShellHookWindow): Add function.
6598
6599         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6600
6601         * lib/user32.def (EndTask): Add function.
6602
6603         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6604         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6605
6606         * include/winable.h: Reorder target macros.
6607
6608         * lib/*.def: Cleanup.
6609
6610 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6611
6612         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6613         function.
6614
6615         * lib/user32.def (AnimateWindow): Add function. By the way
6616         there are ~ 140 symbols missing from this file when comparing
6617         to user32.dll on Windows XP.
6618
6619 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6620
6621         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6622         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6623         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6624         AnimateWindow().
6625
6626 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6627
6628         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6629         LPGUITHREADINFO): Add function and associated typedef...
6630
6631         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6632         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6633         seems to be required on older versions of Windows.
6634
6635 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6636
6637         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
6638         function. MSDN suggests using gluErrorUnicodeStringWIN
6639         instead of gluErrorString, as it allows both ANSI and Unicode
6640         error strings.
6641
6642         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
6643         returned pointer const for consistency reasons.
6644
6645 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6646
6647         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
6648         Function exists in glu32.def but is undocumented on MSDN.
6649         A Google search came up with this declaration.
6650
6651 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6652
6653         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
6654         headers from OpenGL Sample Implementation. Windows ships with
6655         GLU 1.2 so some constants and functions were removed. Then some
6656         typedef's and function declarations were reworked to look like
6657         the previous GL/glu.h.
6658
6659 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6660
6661         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
6662         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
6663         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
6664
6665         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
6666         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
6667         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
6668         and `enum THEMESIZE'.
6669
6670 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6671
6672         * include/uxtheme.h: New file.
6673         * include/tmschema.h: New file.
6674         * include/uxtheme.def: New file.
6675         * lib/test.c: Include uxtheme.h, tmschema.h.
6676
6677 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6678
6679         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
6680         Add defines.
6681
6682 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6683
6684         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6685         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
6686         <winable.h> as seems to be required on older versions of
6687         Windows.
6688
6689 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6690
6691         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
6692         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6693         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
6694         Add defines, the last one only on Windows XP...
6695
6696         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
6697         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6698         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
6699         them in <winable.h> as seems to be required on older
6700         versions of Windows.
6701
6702 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6703
6704         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
6705         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6706         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6707         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
6708         back into <winuser.h>...
6709
6710         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
6711         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6712         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6713         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
6714         comment out in <winable.h>. MSDN may say <winable.h> but this
6715         breaks many programs. It seems it used to be <winable.h> on
6716         older versions of Windows.
6717
6718 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
6719
6720         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
6721         Thanks to Will Levine  <willll@users.sourceforge.net>
6722
6723 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6724
6725         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
6726         const struct sockaddr*.
6727         (LPWSPCONNECT): Likewise.
6728         (LPWSPJOINLEAF): Likewise.
6729         (LPWSPSENDTO): Likewise.
6730         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
6731
6732 2003-09-15  Filip Navara  <xnavara@volny.cz>
6733
6734         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
6735         Add definitions.
6736
6737 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
6738
6739         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
6740         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
6741         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
6742         DISPLAY_DEVICE_MODESPRUNED): Define constants.
6743         (ChangeDisplaySettingsEx[A,W]): Add prototype.
6744
6745         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
6746         (EnumDisplayDevices[A,W]): Likewise.
6747
6748 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6749
6750         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
6751         throughout.
6752
6753 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6754
6755         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6756         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6757         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6758         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6759         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
6760         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6761         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6762         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
6763         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6764         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6765         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6766         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6767         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
6768         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6769         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6770         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
6771         with documentation.
6772         * include/olectl.h: Do #include <ocidl.h>.
6773         * include/ocidl.h: Don't #include <olectl.h>.
6774
6775 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6776
6777         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
6778         Change guards to use numeric constants, throughout.
6779
6780 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
6781
6782         * include/w32api.h: Increment version to 2.5.
6783         * Makefile.in: Ditto.
6784
6785 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
6786
6787         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
6788         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
6789
6790 2003-09-08  Filip Navara  <xnavara@volny.cz>
6791
6792         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
6793         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
6794
6795 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
6796
6797         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
6798         * include/winbase.h (_NT5, etc): Ditto.
6799
6800 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
6801
6802         * lib/snmpapi.def (LIBRARY) Add library name.
6803         Remove '\r', throughout.
6804         * lib/wsnmp32.def: Remove '\r', throughout.
6805         * lib/igmpagnt.def: Likewise.
6806
6807 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
6808
6809         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
6810         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
6811         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
6812         (MWMO_*): Add flags.
6813
6814         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
6815         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
6816         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
6817         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
6818
6819 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6820
6821         * lib/test.c: Add vfw.h to includes.
6822         * include/mmsystem.h: Add #ifndef guard to definition of
6823         mmioFOURCC macro.
6824         * include/vfw.h: Protect __OBJC__ from COM declarations.
6825
6826 2003-08-26  Filip Navara  <xnavara@volny.cz>
6827
6828         * include/vfw.h: New file.
6829
6830 2003-08-26  Filip Navara  <xnavara@volny.cz>
6831
6832         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
6833         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
6834         PIO_COMPLETION_ROUTINE.
6835
6836 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6837
6838         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
6839         includes.
6840
6841 2003-08-26  Filip Navara  <xnavara@volny.cz>
6842
6843         * include/snmp.h: New file.
6844         * include/winsnmp.h: New file.
6845         * include/mgmtapi.h: New file.
6846         * lib/snmpapi.def: New file.
6847         * lib/wsnmp32.def: New file.
6848         * lib/igmpagnt.def: New file.
6849         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
6850         (SnmpMgrGetTrapEx): Ditto.
6851         (SnmpMgrMIB2Disk): Remove.
6852         (dbginit): Remove.
6853
6854 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
6855
6856         * include/ddk/ntifs.h: Change all C++ style comments to C.
6857         * include/GL/gl.h: Ditto.
6858
6859 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
6860
6861         * include/shlobj.h (SFGAO_GHOSTED): Correct.
6862         (SFGAO_HIDDEN): Add define.
6863
6864 2003-08-25  Filip Navara  <xnavara@volny.cz>
6865
6866         * include/commctrl.h (ILCF_*): Add defines.
6867         (ILD_*): Ditto.
6868         (HDS_*): Ditto.
6869         (IPN_FIRST, IPN_LAST): Cast to UINT.
6870         (SBN_FIRST, SBN_LAST): Add defines.
6871         (PGN_*): Ditto.
6872         (HDF_JUSTIFYMASK): Fix typo.
6873         (HDM_*): Add defines.
6874         (HICF_*): Ditto.
6875         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
6876         (TBSTATE_MARKED): Add define.
6877         (TBSTYLE_EX_*): Add defines.
6878         (TBCDRF_*): Ditto.
6879         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
6880         (TB_*): Ditto.
6881         (TBN_*): Ditto.
6882         (TBNRF_*): Ditto.
6883         (TTF_*): Ditto.
6884         (TBCD_*): Ditto.
6885         (TBDDRET_*): Ditto.
6886         (TBIMHT_*): Ditto.
6887         (TTM_*): Ditto.
6888         (UDM_*): Ditto.
6889         (TBIF_BYINDEX): Define as hex constant.
6890         (CDIS_*): Add defines.
6891         (CDDS_SUBITEM): Add define.
6892         (LVIF_*): Add defines.
6893         (LVM_*): Ditto.
6894         (LVGIT_UNFOLDED): Add define.
6895         (TVM_): Add defines.
6896         (TVE_EXPANDPARTIAL): Add define.
6897         (TVGN_LASTVISIBLE): Ditto.
6898         (TVN_*): Add defines.
6899         (TVNRET_*): Add defines.
6900         (TCIF_STATE): Add define.
6901         (NM_TOOLTIPSCREATED): Ditto.
6902         (CCM_*): Add defines.
6903         (INFOTIPSIZE): Add numeric value.
6904         (ODT_LISTVIEW): Ditto.
6905         (MCM_GETMAXTODAYWIDTH): Ditto.
6906         (MCHT_*): Add defines.
6907         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
6908         (PGF_*): Add defines.
6909         (PGM_*): Ditto.
6910         (TBINSERTMARK): Add structure.
6911         (LPIMAGEINFO) Add typedef.
6912         (LPHDHITTESTINFO): Ditto.
6913         (NMLVGETINFOTIP[AW]: Add structures.
6914         (NMTBCUSTOMDRAW): Add structure.
6915         (TTTOOLINFOA_V*_SIZE): Add macros.
6916         (TTTOOLINFOW_V1_SIZE): Ditto.
6917         (IMAGELISTDRAWPARAMS): Add new members for WXP.
6918         (LVITEM[AW]: Ditto.
6919         (TCITEM[AW]):Ditto.
6920         (CCSIZEOF_STRUCT): Correct macro definition.
6921         (ListView_*): Add new macros.
6922         (HIMAGELIST): Correct typedef.
6923         (HTREEITEM): Ditto.
6924
6925 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
6926
6927         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
6928         TCHITTESTINFO for backward compatibility.
6929         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
6930         compatibility.
6931
6932 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
6933
6934         * include/objidl.h (COBJMACROS): Define macros only
6935         if using C interace.
6936         * include/unknwn.h: Ditto.
6937         * include/comcat.h: Ditto.
6938
6939 2003-08-24  Filip Navara  <xnavara@volny.cz>
6940
6941         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
6942         PSH_NOCONTEXTHELP): Define.
6943         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
6944         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
6945         (LPDLGTEMPLATE[AW]): Add typedefs.
6946
6947 2003-08-22  Filip Navara  <xnavara@volny.cz>
6948
6949         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
6950         Add prototypes.
6951         BuildImpersonateTrustee[AW]): Add prototypes.
6952         GetMultipleTrustee[AW]): Add prototypes.
6953         GetMultipleTrusteeOperation[AW]): Add prototypes.
6954
6955 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
6956
6957         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
6958
6959 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
6960
6961         * include/shlobj.h (IPersistFolder::GetClassID):
6962         Correct declaration.
6963         (CMF_*) Add missing defines.
6964
6965 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
6966
6967         * include/winuser.h (DC_BUTTONS): Add define.
6968
6969 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
6970
6971         * include/winuser.h (DC_GRADIENT): Add define.
6972
6973 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
6974
6975         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
6976         older TBSTYLE_* constants.
6977
6978 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
6979
6980         * include/commctrl.h (TB_*) Group defines together.
6981
6982 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
6983
6984         * include/winuser.h (ICON_SMALL2): Define.
6985         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
6986         Define.
6987         * include/shlobj.h (SHDRAGIMAGE): Define structure.
6988         (IDragSourceHelper) Define interface.
6989         (IDropTargetHelper): Likewise.
6990         (IExtractIcon): Unicode it.
6991         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
6992         OnStateChange and IncludeObject methods.
6993
6994 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
6995
6996         * include/commctrl.h (TreeView_GetScrollTime,
6997         TreeView_SetScrollTime): Define macros.
6998         * include/winuser.h (GetShellWindow): Add prototype.
6999         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7000
7001 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7002
7003         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7004         IID_IDragSourceHelper): Declare.
7005         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7006         IID_IDragSourceHelper): Define.
7007
7008 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7009
7010         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7011         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7012         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7013
7014 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7015
7016         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7017         CGID_ShellServiceObject): Remove definitions.
7018         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7019
7020 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7021
7022         * include/shlobj.h (SHELLSTATE): Add structure.
7023         (SHGetSetSettings): Add prototype.
7024         (SHGetSettings): Add prototype.
7025         * lib/shell32.def (SHGetSetSettings): Add stub.
7026
7027 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7028
7029         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7030         (Header_OrderToIndex): Add macro.
7031         (Header_GetOrderArray): Add macro.
7032
7033         * include/commdlg.h (FR_MATCHALEFHAMZA,
7034         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7035
7036 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7037
7038         * include/commctrl.h (TVM_GETSCROLLTIME,
7039         TVM_SETSCROLLTIME): Add defines.
7040
7041 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7042
7043         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7044         (SHGetInstanceExplorer): Correct return type.
7045         (SHGetFolderPath[AW]): Likewise.
7046         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7047         for report.
7048
7049 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7050
7051         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7052
7053 2003-08-01  Filip Navara  <xnavara@volny.cz>
7054
7055         * include/winldap.h: New file.
7056         * include/ntldap.h: New file.
7057         * include/winber.h: New file.
7058         * lib/winldap32.def: New file.
7059
7060 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7061
7062         * include/ddk/atm.h: Remove stray '.';
7063
7064 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7065
7066         * include/ddk/winddk.h: Remove trailing ';' from macros,
7067         throughout. Add () around defines with cast returns, throughout.
7068
7069 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7070
7071         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7072         (SFGAOF, SHGDNF): Add typedef's.
7073         (SHCONTF): Extend enum.
7074
7075 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7076
7077         * include/shellapi.h: Include all structs within pshpack2.h/
7078         poppack.h block.
7079
7080 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7081
7082         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7083         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7084         _WIN32_WINDOWS, not WINVER.
7085         (AllowSetForegroundWindow,LockSetForegroundWindow,
7086         SetLayeredWindowAttributes): Likewise.
7087         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7088         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7089         Add stubs.
7090
7091 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7092
7093         * include/objidl.h (IMalloc): Fix typo.
7094
7095 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7096
7097         * include/dkk/ntifs.h: Fix typo in guard for
7098         #pragma GCC system_header.
7099
7100 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7101
7102         * include/objidl.h (PropVariant): Add CHAR cVal field
7103         to union.
7104         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7105         FMTID_UserDefinedProperties): Declare.
7106
7107 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7108
7109         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7110
7111 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7112
7113         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7114         DUPLICATE_SAME_ACCESS): Remove defines.
7115         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7116         ddk/ntapi.h defines.
7117         (SEM_*) : Likewise.
7118         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7119         ddk/ntifs.h defines.
7120         (FILE_*): Likewise.
7121         (MEM_IMAGE, SEC_*): Likewise.
7122         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7123         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7124         (TOKEN_*): Sync with ddk/ntifs.h defines.
7125         * include/ddk/ntapi.h: Add comments noting definitions in
7126         winbase.h.
7127         * include/ddk/ntifs.h: Add comments noting definitions in
7128         winnt.h.
7129         * include/ddk/winddk.h: Add comments noting definitions in
7130         winnt.h.
7131
7132 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7133
7134         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7135         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7136
7137 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7138
7139         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7140
7141 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7142
7143         Clean up warnings in ddk.
7144
7145         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7146         conditional on  __cplusplus.
7147         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7148         defines, throughout.
7149         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7150         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7151         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7152         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7153         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7154         defines, throughout.
7155         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7156         defines, throughout. Remove trailing semicolon from *_S 'structure'
7157         macro expansion, throughout. Remove trailing semicolon from
7158         DECLARE_UNKNOWN_STRUCT macro expansion.
7159         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7160         _ANONYMOUS_UNION.
7161         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7162         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7163         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7164         Add _ANONYMOUS_UNION.
7165         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7166         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7167         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7168         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7169         match proto in ntapi.h.
7170         (ZwSetInformationObject): Likewise.
7171         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7172         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7173         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7174         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7175         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7176         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7177         last comma.
7178         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7179         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7180         trailing semicolon when expanding macro.
7181         (GENERAL_LOOKASIDE_S): Likewise.
7182         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7183         Change inline to __inline, throughout.
7184         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7185
7186 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7187
7188         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7189         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7190         KPRIORITY.
7191         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7192         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7193         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7194         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7195         to anonymous structs.
7196
7197 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7198
7199         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7200
7201         * include/winuser.h (mouse_event): Correct type of fifth param,
7202         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7203
7204 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7205
7206         * include/winnt.h (HANDLE): Define based on STRICT filter.
7207         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7208         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7209
7210 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7211
7212         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7213         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7214         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7215         for report.
7216
7217 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7218
7219         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7220
7221 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7222
7223         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7224         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7225         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7226         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7227         (TPM_RECURSE): Add guard for Win98/Win2K.
7228         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7229
7230 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7231
7232         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7233         avoid user namespace conflicts.
7234
7235 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7236
7237         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7238         _IE3, _IE4, _IE5, _IE6): Add definitions.
7239         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7240         >= Win98.
7241         Change existing guards to use the above macro names as appropriate.
7242         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7243         Note: Also added to mingw/include/_mingw.h.
7244
7245 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7246
7247         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7248         PathFindSuffixArrayA, PathFindSuffixArrayW,
7249         PathFindExtensionA, PathFindExtensionW, StrStrW
7250         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7251         explicit type.
7252
7253 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7254
7255         * include/richedit.h (PARAFORMAT2): Add definition.
7256         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7257         missing constants.
7258
7259 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7260
7261         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7262         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7263         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7264         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7265
7266 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7267
7268         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7269         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7270         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7271         that these are obsolete no-ops.
7272
7273 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7274
7275         * include/winbase.h (GetProcessWorkingSetSize,
7276         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7277         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7278         Correct prototypes.
7279
7280 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7281
7282         * include/winuser.h (TPM_RECURSE): Add define.
7283
7284 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7285
7286         * lib/test.c: #include <powrprof.h>.
7287
7288 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7289
7290         * include/powerprof.h: New file.
7291         * lib/powerprof.def: New file.
7292
7293 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7294
7295         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7296         protection.
7297
7298 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7299
7300         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7301         hInstance members to HINSTANCE.
7302         Thanks to: Brenden T. <brenden@rcsis.com>
7303
7304 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7305
7306         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7307         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7308
7309 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7310
7311         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7312         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7313         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7314         Remove.
7315         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7316
7317 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7318
7319         * lib/oleacc.def: New file.
7320         * include/winable.h: New file.
7321         * include/oleacc.h: Add extern "C" guard.
7322         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7323         (AccessibleChildren, AccessibleObjectFromEvent,
7324         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7325         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7326         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7327         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7328         * include/winuser.h (NotifyWinEvent): Add prototype.
7329         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7330         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7331         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7332         OBJID_SOUND): Move from here to...
7333         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7334         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7335         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7336         OBJID_SOUND): Here, as per documentation.
7337         * lib/test.c: Include winable.h.
7338         * lib/user32.def (NotifyWinEvent): Add missing export.
7339
7340 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7341
7342         * include/winbase.h (HeapCompact): Correct prototype.
7343         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7344         SLIST_HEADER): Add.
7345
7346 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7347
7348         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7349
7350 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7351
7352         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7353
7354 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7355
7356         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7357         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7358
7359 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7360
7361         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7362         lpGlyphs field to LPWSTR.
7363
7364 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7365
7366         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7367         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7368         (PP_*): Add defines.
7369         (CryptContextAddRef): Add prototype.
7370         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7371
7372 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7373
7374         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7375
7376 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7377
7378         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7379         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7380         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7381         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7382         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7383         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7384         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7385         readability.
7386         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7387         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7388
7389 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7390
7391         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7392         Unname anonymous unions if NONAMELESSUNION not defined.
7393
7394 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7395
7396         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7397
7398 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7399
7400         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7401         anonymous unions as GCC extension.
7402
7403 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7404
7405         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7406         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7407         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7408         commented out).
7409         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7410
7411 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7412
7413         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7414         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7415         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7416
7417 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7418
7419         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7420         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7421         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7422         IProvideClassInfo2,IConnectionPointContainer,
7423         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7424         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7425         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7426         IPicture,IPictureDisp): Move from here to...
7427         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7428         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7429         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7430         IProvideClassInfo2,IConnectionPointContainer,
7431         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7432         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7433         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7434         IPicture,IPictureDisp): Here, as per documentation.
7435
7436 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7437
7438         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7439         * include/winbase.h (TerminateJobObject,
7440         AssignProcessToJobObject): Likewise.
7441         * include/servprov.h: New header.
7442         * lib/test.c: Include servprov.h.
7443
7444 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7445
7446         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7447         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7448         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7449         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7450         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7451         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7452
7453 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7454
7455         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7456         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7457         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7458
7459 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7460
7461         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7462         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7463         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7464         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7465         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7466         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7467         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7468
7469 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7470
7471         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7472
7473 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7474
7475         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7476         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7477
7478 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7479
7480         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7481         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7482         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7483
7484 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7485
7486         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7487
7488 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7489
7490         * include/oaidl.h (ITypeMarshal): Add interface.
7491
7492 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7493
7494         * include/winioctl.h: Clean up formatting.
7495         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7496         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7497         (DISK_CACHE_INFORMATION): Likewise.
7498         (DISK_DETECTION_INFO): Likewise.
7499         (DISK_PARTITION_INFO): Likewise.
7500         (PARTITION_INFORMATION_EX): Likewise.
7501         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7502
7503 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7504
7505         * include/winbase.h (DeleteVolumeMountPoint[AW],
7506         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7507         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7508         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7509         SetVolumeMountPoint[AW]): Add prototypes.
7510         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7511         IOCTL_DISK_SET_PARTITION_INFO_EX,
7512         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7513         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7514         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7515         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7516         IOCTL_DISK_GET_CACHE_INFORMATION,
7517         IOCTL_DISK_SET_CACHE_INFORMATION,
7518         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7519         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7520         FSCTL_MOVE_FILE): Define.
7521         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7522         DISK_CACHE_INFORMATION,
7523         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7524         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7525         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7526         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7527         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7528         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7529         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7530         MOVE_FILE_DATA,
7531         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7532         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7533         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7534         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7535         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7536         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7537         F3_240M_512, and F3_32M_512.
7538         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7539         stubs.
7540
7541 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7542
7543         * include/wingdi.h (DM_SPECVERSION): Define.
7544         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7545         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7546         appropriate _WIN32_WINNT values.
7547
7548 2003-04-15  Chris January  <chris@atomice.net>
7549
7550         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7551         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7552
7553 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7554
7555         * include/winuser.h (VK_*): Add missing defines.
7556
7557 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7558
7559         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7560         documented typedefs for struct _NM_UPDOWN.
7561         Add defines for backward comapatibility.
7562         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7563         * include/wininet.h (IRF_*): Add missing defines.
7564
7565 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7566
7567         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7568
7569 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7570
7571         * include/sspi.h: Add comment for FreeCredentialsHandle.
7572
7573 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7574
7575         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7576
7577 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7578
7579         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7580
7581 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7582
7583         * lib/uuid.c (IID_IHTML*): Move definitions to...
7584         * lib/mshtml-uuid.c: New file.
7585         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7586
7587 2003-03-30  Michael Sazonov  <traip@comset.net>
7588
7589         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7590         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7591         IHTMLImgElement): Add interface definitions.
7592
7593 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7594
7595         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7596         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7597         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7598         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7599         RC_INVOKED guard.
7600         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7601         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7602
7603 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7604
7605         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7606
7607 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7608
7609         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7610         TranslateName[AW]): Add prototypes.
7611         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7612         TranslateName[AW]): Add stubs.
7613         * lib/test.c: Include secext.h.
7614
7615 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7616
7617         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7618         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7619         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7620         _SpinLock.
7621
7622 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7623
7624         * include/w32api.h: Increment version to 2.4.
7625         * Makefile.in: Ditto.
7626
7627 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7628
7629         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7630         Move structure from here...
7631         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7632
7633         * include/ddk/ntapi.h (JOBOBJECT_*):
7634         Remove structures and enums definitions.
7635         (JOB_OBJECT*): Move defines from here...
7636         * include/winnt.h (JOB_OBJECT* ): To here.
7637
7638         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
7639         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7640         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7641         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7642         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7643         SYSTEM_POWER_CAPABILITIES): Move enums, structures
7644         and associated defines from here ...
7645         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
7646         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7647         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7648         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7649         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7650         SYSTEM_POWER_CAPABILITIES):To here.
7651
7652         * include/ddk/winddk.h (DEVICE_POWER_STATE,
7653         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
7654         from here...
7655         * include/winnt.h (DEVICE_POWER_STATE,
7656         SYSTEM_POWER_STATE, POWER_ACTION): To here.
7657
7658 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
7659
7660         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
7661         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
7662         (NdisUpdateSharedMemory): Likewise.
7663         (NdisMFreeSharedMemory: Likewise.
7664         (NdisMMapIoSpace: Likewise.
7665
7666 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
7667
7668         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
7669         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
7670         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
7671
7672 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
7673
7674         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
7675         (EnumResourceNames[AW]): Ditto.
7676         (EnumResourceTypes[AW]): Ditto.
7677         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
7678
7679 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
7680
7681         * include/winuser.h (SendInput): Add prototype.
7682         * lib/user32.def (SendInput): Add stub.
7683
7684 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
7685
7686         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
7687         (FSCTL_DELETE_REPARSE_POINT): Likewise.
7688
7689 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
7690
7691         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
7692         (JOBOBJECT_*): Define corresponding structures.
7693
7694 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
7695
7696         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
7697         typedef.
7698
7699 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
7700
7701         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
7702         (Process32{First,Next}{,W}): Ditto.
7703         (Thread32{First,Next}): Ditto.
7704         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
7705
7706 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
7707
7708         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
7709         Thanks to Jim Barton <jmbarton@users.sf.net>.
7710
7711 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
7712
7713         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
7714         member SectionAlignment.
7715
7716 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
7717
7718         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
7719         warnings.
7720         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
7721         * Makefile.in (bindist): Correct process.
7722         * lib/Makefile.in (install): Ditto.
7723         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
7724
7725 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
7726
7727         * include/rasdlg.h: New file.
7728         * lib/rasdlg.def: New file.
7729         * lib/test.c: Include rasdlg.h.
7730
7731 2003-03-06  Christopher January  <chris@atomice.net>
7732
7733         * include/winbase.h (FindFirstVolume): Add declaration.
7734         (FindNextVolume): Add declaration.
7735         (FindVolumeClose): Add declaration.
7736         (GetSystemTimes): Add declaration.
7737         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
7738
7739 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
7740
7741         *lib/kernel32.def (GetSystemTimes): Add stub.
7742
7743 2003-03-04  Heiko Gerdau  <hg@technosis.de>
7744
7745         * oleidl.h (IOleObject): Correct GetUserType prototype.
7746         (IViewObject2): Correct GetExtent prototype.
7747         * olectl.h (DISPIP_): Add new defines
7748         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
7749
7750 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7751
7752         * include/olectl.h (OleLoadPictureEx) Add prototype.
7753         (OleLoadPictureFile): Ditto.
7754         (OleLoadPictureFileEx): Ditto.
7755         (OleLoadPicturePath): Ditto.
7756         (OleSavePictureFile): Ditto.
7757
7758 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7759
7760         * include/objbase.h (CoAddRefServerProcess): Add prototype.
7761         (CoAddReleaseServerProcess): Ditto.
7762         (CoResumeClassObjects): Ditto.
7763         (CoSuspendClassObjects): Ditto.
7764         * include/oleauto.h (V_I1): Define.
7765         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
7766
7767 2003-03-01  Heiko Gerdau  <hg@technosis.de>
7768
7769         * include/oleidl.h (USERCLASSTYPE): Add enum.
7770         * include/ocidl.h (IObjectWithSite): Add interface.
7771
7772 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
7773
7774         Fixup UNICODE thinko in 2003-02-22 patch.
7775         * include/wingdi.h (AddFontMemResourceEx): Add.
7776         (RemoveFontMemResourceEx): Ditto.
7777         (AddFontMemResourceEx[AW]): Remove.
7778         (RemoveFontMemResourceEx[AW]): Ditto
7779         * lib/gdi32.def: (AddFontResourceEx): Add.
7780         (RemoveFontMemResourceEx): Ditto.
7781         (AddFontMemResourceEx[AW]): Remove.
7782         (RemoveFontResourceEx[AW]): Ditto.
7783
7784 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
7785
7786         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
7787         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
7788
7789 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
7790
7791         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
7792         (RemoveFontMemResourceEx[AW]): Ditto
7793         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
7794         (RemoveFontMemResourceEx[AW]): Ditto.
7795
7796 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
7797
7798         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
7799         (NtCurrentTeb): Remove.
7800
7801 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7802
7803         * include/wsahelp.h: Remove ';' after closing
7804         #ifdef __cplusplus brace.
7805         * include/ws2spi.h: Likewise.
7806
7807 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7808
7809         * include/winbase.h (MEMORYSTATUSEX): Add structure.
7810         (GlobalMemoryStatusEx): Add prototype.
7811         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
7812
7813 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
7814
7815         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
7816
7817 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
7818
7819         * include/wingdi.h (AddFontResourceEx[AW]): Add.
7820         (RemoveFontResourceEx[AW]): Ditto
7821         (FR_PRIVATE): Define.
7822         (FR_NOT_ENUM): Define.
7823         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
7824         (RemoveFontResourceEx[AW]): Ditto.
7825
7826 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
7827
7828         * include/w32api.h: Increment version to 2.3.
7829         * Makefile.in: Ditto.
7830
7831 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
7832
7833         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
7834         (Ke386QueryToAccessMap): Ditto.
7835         (Ke386SetIoAccessMap): Ditto.
7836         Thanks to Marcel Telka <telka@users.sf.net>
7837         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
7838         * include/security.h: Include secext.h.
7839         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
7840         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
7841         * include/GL/gl.h: Remove include of glext.h.
7842         Thanks to Greg Couch <gregcouch@users.sf.net>
7843
7844 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
7845
7846         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
7847         using GUID_DEFINED instead.
7848         * include/sqltypes.h: Ditto.
7849         * include/winnt.h: Ditto.
7850         * include/ddk/scsiwmi.h: Ditto.
7851
7852 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
7853
7854         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
7855         prototypes.
7856         Thanks to: John Dallaway  <jld@ecoscentric.com>.
7857
7858 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
7859
7860         * include/commctrl.h (TCM_*): Add missing defines.
7861
7862 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
7863             Danny Smith  <dannysmith@users.sourceforge.net>
7864
7865         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
7866         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
7867         for (_WIN32_IE >= 0x0400).
7868         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
7869         fields for (_WIN32_IE >= 0x0400).
7870
7871 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
7872
7873         * include/winbase.h (CreateFiber): Change first parameter
7874         to SIZE_T.
7875         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
7876         if (_WIN32_WINNT >= 0x0500).
7877
7878 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
7879
7880         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
7881         Add missing typedefs.
7882         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
7883         prototypes.
7884         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
7885
7886 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
7887
7888         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
7889         define.
7890         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
7891
7892 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
7893
7894         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
7895         define.
7896         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
7897         definition.
7898         (WAIT_FAILED): Cast to DWORD.
7899         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
7900         definition.
7901
7902 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
7903
7904         * include/winerror.h: Protect against multiple
7905         definition of WSA* error codes.
7906         * include/winsock.h: Likewise.
7907         * include/winsock2.h: Likewise.
7908
7909 2003-01-27  Bang Dong-Heui
7910             Bang Jun-Young  <junyoung@netbsd.org>
7911
7912         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
7913         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
7914         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
7915
7916
7917 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
7918
7919         * include/ras.h (RASCONN[AW]): Add dwSessionId for
7920         (WINVER >= 0x501).
7921
7922 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
7923
7924         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
7925         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
7926         fields for (WINVER >= 0x501).
7927
7928 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
7929
7930         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
7931         Add stubs.
7932         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
7933         options.
7934
7935 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7936
7937         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
7938         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
7939
7940 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7941
7942         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
7943         SE_REGISTRY_WOW64_32KEY.
7944         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7945
7946 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7947
7948         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
7949         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
7950         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
7951
7952 2003-01-10  Christopher Faylor  <cgf@redhat.com>
7953
7954         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
7955
7956 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
7957
7958         * lib/dxguid.c: Don't #include <objbase.h>.
7959         * include/unknwn.h: Partially revert change of 2002-12-26.
7960         Don't include <ole2.h>.
7961
7962 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
7963
7964         * lib/dinput.c: Don't #include <objbase.h>.
7965
7966 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7967
7968         * include/windows.h (ole2.h):Do #include for
7969         __WATCOMC__.
7970
7971 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
7972
7973         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
7974         * include/zmouse.h (WHEEL_DELTA): Guard against prior
7975         definition.
7976         (WHEEL_PAGESCROLL): Likewise.
7977         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
7978
7979 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7980
7981         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
7982         (WHEEL_PAGESCROLL): Add define.
7983
7984 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7985
7986         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
7987         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
7988         compatability. Add RECT field. Add UNICODE mappings for new
7989         names.
7990         (tagNMREBARCHEVRON): Add struct and typedefs for
7991         _WIN32_IE >= 0x0500.
7992
7993 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7994
7995         * include/commctrl.h (TOOLINFO[AW]): Update structures.
7996         (LVHITTESTINFO): Likewise.
7997
7998         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
7999         (GRADIENT_RECT): Likewise.
8000
8001 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8002
8003         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8004         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8005         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8006         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8007         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8008         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8009         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8010         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8011         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8012         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8013         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8014         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8015         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8016         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8017         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8018         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8019         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8020         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8021         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8022         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8023         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8024         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8025         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8026         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8027         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8028         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8029         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8030         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8031         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8032         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8033         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8034         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8035         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8036         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8037         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8038         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8039         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8040         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8041         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8042         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8043         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8044         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8045         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8046         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8047         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8048         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8049         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8050         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8051         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8052         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8053         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8054         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8055         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8056         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8057         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8058         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8059         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8060         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8061         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8062         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8063         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8064         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8065         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8066         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8067         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8068         Add missing error codes.
8069
8070 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8071
8072         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8073         asm code.
8074         (GetFiberData): Likewise.
8075
8076 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8077
8078         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8079         asm code.
8080         (GetFiberData): Likewise.
8081
8082 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8083
8084         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8085         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8086         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8087         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8088         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8089         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8090         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8091         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8092         error codes.
8093         Re-sort codes.
8094
8095 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8096
8097         * include/winspool.h (PRINTER_INFO_6): Add.
8098         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8099
8100 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8101
8102         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8103
8104         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8105         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8106         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8107         Add stubs.
8108
8109 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8110
8111         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8112         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8113
8114 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8115
8116         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8117
8118 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8119
8120         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8121         VIETNAMESE_CHARSET): Remove duplicate defines.
8122         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8123
8124 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8125
8126         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8127         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8128
8129 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8130
8131         * include/unknwn.h: Include windows.h and ole2.h before header
8132         guard to avoid circular inclusion of COM headers.
8133
8134 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8135
8136         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8137         ReuseDDElParam): Use __WIN64 compatible typedefs.
8138
8139 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8140
8141         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8142         lpInheritProperty member const.
8143         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8144         const.
8145
8146 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8147
8148         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8149         COM_NO_WINDOWS_H.
8150         * include/unknwn.h: Ditto.
8151
8152 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8153
8154         * include/imm.h (ImmGetCompositionFont[AW],
8155         ImmSetCompositionFont[AW]): Add NOGDI guard.
8156
8157 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8158
8159         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8160         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8161         before using.
8162         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8163         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8164         definition.
8165         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8166         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8167         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8168         definition.
8169         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8170         (LPCGUID): Likewise.
8171         * include/ddk/tdi.h: Close "Listen flags" comment.
8172         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8173         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8174         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8175         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8176         * include/ddk/win2k.h: Likewise.
8177         * include/ddk/winddi.h: Likewise.
8178         * include/ddk/winddk.h: Likewise.
8179         * include/ddk/winnt4.h: Likewise.
8180         * include/ddk/ws2san.h: Likewise.
8181         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8182         * include/ddk/video.h: Don't process rest of file ifdef
8183         __WINDDI_H.
8184         * include/ddk/winddi.h: Don't process rest of file ifdef
8185         __VIDEO_H.
8186         * include/ddk/usb.h: Don't process rest of file ifdef
8187         __USBDI_H.
8188         * include/ddk/usbdi.h: Don't process rest of file ifdef
8189         __USB_H.
8190         * include/ddk/usbcamdi.h: Don't process rest of file if
8191         !defined(__USB_H) && !defined(__USBDI_H)
8192
8193 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8194
8195         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8196         prototypes.
8197         * include/winuser.h (GetAncestor) Add prototype.
8198         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8199         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8200         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8201         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8202         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8203         defines.
8204         * lib/user32.def (GetAncestor@8): Add stub.
8205
8206 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8207
8208         * include/windows.h: Guard inclusion of wingdi.h,
8209         commdlg.h, winspool.h, ole2.h with NOGDI.
8210         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8211         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8212         Guard with NOGDI.
8213
8214 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8215
8216         * include/oleacc.h (SELFLAG_*): Change to enum.
8217
8218 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8219
8220         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8221         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8222
8223 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8224
8225         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8226         to UINT.
8227         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8228
8229 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8230
8231         * include/winuser.h (AllowSetForegroundWindow,
8232         LockSetForegroundWindow): Add prototypes.
8233         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8234         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8235         * lib/winuser.def (AllowSetForegroundWindow,
8236         LockSetForegroundWindow): Add stubs.
8237
8238 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8239
8240         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8241         UNICODE mappings.
8242         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8243         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8244         compatability. Add lParam field. Add UNICODE mappings for new
8245         names.
8246
8247 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8248
8249         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8250         Wrap with pshpack2.h/poppack.h to correct alignment.
8251
8252 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8253
8254         * include/commctrl.h (LVBKIF_*): Add defines.
8255         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8256         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8257         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8258         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8259         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8260         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8261         (ListView_GetBkImage): Add define.
8262         (ListView_SetBkImage): Add define.
8263         (LVBKIMAGE): Add structures and typedefs.
8264
8265 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8266
8267         * include/w32api.h: Increment to version 2.2
8268         * Makefile.in: Ditto.
8269
8270 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8271
8272         * lib/Makefile.in (dist, install): Correct the install destinations.
8273         * lib/ddk/Makefile.in (dist, install): Ditto.
8274
8275 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8276
8277         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8278         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8279         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8280         in definitions.
8281         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8282         IID_IOleControlSite89): Remove.
8283
8284 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8285
8286         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8287         (IID_IStdMarshalInfo): Ditto.
8288
8289 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8290
8291         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8292         (IID_IPersistStorage): Ditto.
8293
8294 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8295
8296         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8297         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8298         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8299         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8300         Correct definitions.
8301
8302 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8303
8304         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8305         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8306         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8307         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8308         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8309         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8310         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8311         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8312         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8313         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8314         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8315         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8316         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8317         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8318         xfilter.h): Change comment to refer w32api package, not MinGW.
8319
8320 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8321
8322         * include/ddk/ntddk.h: Include winnt.h as system header.
8323
8324 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8325
8326         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8327         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8328         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8329         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8330         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8331         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8332         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8333         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8334         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8335         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8336         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8337         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8338         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8339         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8340         xfilter.h): Fix typo in disclaimer comment.
8341
8342 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8343
8344         * include/exdisp.h: Include oaidl.h as system header.
8345
8346 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8347
8348         * include/w32api.h (__W32API_VERSION): Fix.
8349
8350 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8351
8352         * lib/uuid.c (IID_ICatInformation): Correct definition.
8353
8354 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8355
8356         * include/oleauto.h (DeregisterTypeLib): Remove.
8357         (UnRegisterTypeLib): Add prototype.
8358
8359 2002-11-07  Christopher January  <chris@atomice.net>
8360
8361         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8362
8363 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8364
8365         * include/winnt.h (VerSetConditionMask): Add prototype.
8366         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8367
8368 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8369
8370         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8371         definitions and ANSI/UNICODE mappings.
8372         Cleanup whitespace.
8373
8374 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8375
8376         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8377         * configure.in: Ditto.
8378         * lib/Makefile.in: Ditto.
8379         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8380         autoconf-2.53.
8381         * configure: Regenerate.
8382
8383 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8384
8385         * include/windows.h: Don't include basetyps.h.
8386         * include/objfwd.h: Do include basetyps.h.
8387
8388 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8389
8390         * include/objbase.h: Include rpc.h and rpcndr.h
8391         before header guard.
8392
8393 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8394
8395         * include/olectl.h (PROPPAGEINFO): Change type of
8396         field cb to ULONG.
8397
8398 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8399
8400         * lib/ntdll.def (RtlAcquireResourceExclusive,
8401         RtlAcquireResourceShared, RtlDeleteResource,
8402         RtlInitializeResource, RtlReleaseResource,
8403         RtlTimeToSecondsSince1970) : Added missing exports.
8404
8405 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8406
8407         * include/oleacc.h: New file.
8408         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8409         (OBJID_*) Add defines.
8410         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8411         * lib/test.c: Include oleacc.h.
8412
8413 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8414
8415         * include/ddk: New subdir.
8416         * lib/ddk: Ditto.
8417         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8418         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8419         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8420         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8421         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8422         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8423         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8424         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8425         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8426         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8427         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8428         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8429         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8430         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8431         xfilter.h): New files.
8432         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8433         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8434         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8435         win32k.def): Ditto.
8436
8437 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8438
8439         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8440         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8441         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8442         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8443         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8444         RtlAddAccessAllowedAce, RtlCreateAcl,
8445         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8446         RtlGetAce, RtlGetControlSecurityDescriptor,
8447         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8448         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8449         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8450         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8451         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8452         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8453         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8454         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8455         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8456         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8457         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8458         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8459         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8460
8461 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8462
8463         *include/windef.h (WPARAM): Update typedef.
8464         (LPARAM): Ditto.
8465         (LRESULT): Ditto.
8466
8467 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8468
8469         * include/shlobj.h (CSIDL_*): Add defines.
8470
8471 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8472
8473         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8474         has been included first.
8475
8476 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8477
8478         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8479         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8480         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8481
8482 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8483
8484         * include/winuser.h (DS_SHELLFONT): Define.
8485
8486 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8487
8488         * include/winnt.h (VER_SUITE_BLADE): Define.
8489
8490 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8491
8492         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8493         Add _WIN32_IE guard. Correct prototype for wide version.
8494         (SHGetFolderPath): Add comment on shfolder.dll.
8495         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8496         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8497
8498 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8499
8500         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8501         * lib/shfolder.def: New file.
8502
8503 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8504
8505         * include/winsock.h (timeval): Guard struct and associated
8506         macros with _TIMEVAL_DEFINED.
8507         * include/winsock2.h (timeval): Likewise.
8508
8509 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8510
8511         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8512         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8513         SHCreateShellItem,SHEmptyRecycleBin[AW],
8514         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8515         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8516         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8517         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8518         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8519         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8520         SHLoadNonloadedIconOverlayIdentifiers,
8521         SHOpenFolderAndSelectItems,SHParseDisplayName,
8522         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8523         SHSetLocalizedName,SHSetUnreadMailCountW,
8524         SHUpdateRecycleBinIcon: Add missing stubs.
8525
8526 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8527
8528         * include/windef.h (WINVER): Add documentation.
8529         (_WIN32_WINNT): Ditto.
8530         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8531
8532 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8533
8534         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8535
8536 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8537
8538         * include/winbase.h (AllocateUserPhysicalPages,
8539         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8540         FreeUserPhysicalPages): Add prototypes.
8541         * lib/kernel32.def: Add function stubs for above.
8542
8543 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8544
8545         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8546         Add WINVER guards for dialog box command id defines.
8547
8548 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8549
8550         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8551
8552 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8553
8554         * include/wincon.h: Define GetConsoleWindow(void).
8555
8556 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8557
8558         * include/w32api.h: Increment version to 2.1.
8559         * Makefile.in: Ditto.
8560
8561 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8562
8563         * include/winsock2.h (SOCKET_ADDRESS): Define if
8564         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8565         (CSADDR_INFO): Ditto.
8566         (nspapi.h) : Don't include. Removed FIXME comment.
8567         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8568         __CSADDR_T_DEFINED is not defined.
8569         (CSADDR_INFO): Ditto.
8570         (BLOB): Add structure and typedef if not already defined.
8571         (NS_*): Add defines.
8572         (SERVICE_*): Ditto.
8573         (SERVICE_ADDRESS): Add structure and typedefs.
8574         (SERVICE_ADDRESSES): Ditto.
8575         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8576         (LPSERVICE_ASYNC_INFO): Add typedef.
8577         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8578         mappings.
8579         * include/wsipx.h: New file.
8580         * include/svcguid.h: New file.
8581         * lib/test.c: Include wspix.h and svcguid.h.
8582
8583 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8584
8585         * include/wsahelp.h: New file.
8586         * lib/test.c: Include wsahelp.h.
8587
8588 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8589
8590         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8591         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8592
8593 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8594
8595         * include/ws2spi.h: Modify comment about being part of
8596         mingw32 package.
8597         (winsock2.h): Change "" to <>.
8598
8599 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8600
8601         * include/ws2spi.h: New file.
8602         * lib/test.c: Include ws2spi.h.
8603
8604 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8605
8606         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8607         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8608         functions.
8609
8610 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8611
8612         * include/winuser.h (CURSOR_SHOWING) Add define.
8613         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8614
8615 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8616
8617         * include/winerror.h: Cast OLE error codes to HRESULT.
8618         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8619
8620 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8621
8622         * include/wincrypt.h (ALG_*): Add defines.
8623         (CALG_*): Ditto.
8624         (CRYPT_*): Ditto.
8625         (PP_*): Ditto.
8626         (PROV_*): Ditto.
8627         (PRIVATEKEYBLOB): Add define.
8628
8629 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8630
8631         * include/shlobj.h (SHGetFolderPath): Add define.
8632         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8633         (SHGetFolderPath): Ditto.
8634
8635 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8636
8637         * include/commdlg.h: Don't include COM headers or use
8638         COM-dependent symbols if __OBJC__.
8639
8640 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8641
8642         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
8643         Add prototypes.
8644
8645 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
8646
8647         * include/shellapi.h (FOF_NOERRORUI): Add define.
8648
8649 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
8650
8651         * include/objidl.h (IEnumMoniker): Put 'interface' back.
8652
8653 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
8654
8655         * include/objidl.h (IEnumMoniker): Correct declaration.
8656
8657 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
8658
8659         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
8660
8661 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
8662
8663         * include/commctrl.h: Whitespace change.
8664
8665 2002-08-09  Lars Munch  <lars@segv.dk>
8666
8667         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
8668         struct name _TVHITTESTINFO and typedefs and add defines for
8669         backward compatability.
8670         (ListView_SetExtendedListViewStyleEx): Add macro.
8671
8672 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
8673
8674         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
8675         Add prototypes.
8676         * lib/msimg32.def: New file, with stubs for above.
8677
8678 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
8679
8680         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
8681         GetFileSizeEx, SetFilePointerEx): Add prototypes.
8682         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
8683         and UNICODE mappings.
8684
8685 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
8686
8687         * include/winbase.h (ReadFileScatter, WriteFileGather):
8688         Change second parameter to pointer.
8689
8690 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
8691
8692         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
8693         UNICODE mappings.
8694         * lib/wininet.def: Regenerate.
8695
8696 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
8697
8698         * include/windef.h (PVOID): Move typedef to...
8699         * include/winnt: ...here.
8700         (PVOID64): New typedef.
8701
8702         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
8703         * include/winbase.h (ReadFileScatter, WriteFileGather):
8704         Add prototypes.
8705
8706         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
8707         (PROCESSOR_INTEL_IA64): Add define.
8708
8709 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8710
8711         * include/oleidl.h (MK_ALT): Define.
8712
8713 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8714
8715         * include/exdisp.h: New file.
8716         * include/exdispid.h: New file.
8717         * include/mshtml.h: New file.
8718         * lib/test.c: #include exdisp.h and mshtml.h
8719         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
8720         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
8721         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
8722         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
8723         New GUIDs.
8724
8725 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8726
8727         * include/docobj.h: New file.
8728         * include/idispids.h: New file.
8729         * include/objidl.h (IID_IMoniker): Declare.
8730         * include/ocidl.h (READYSTATE): New enum.
8731         (IOleInPlaceSiteEx): New interface.
8732         * include/olectlid.h (IID_IEnumSTATSTG): New interface
8733         identifier.
8734         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
8735         IOleInPlaceSite): New interfaces.
8736         * lib/test.c: #include docobj.h,idispids.h,
8737
8738 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8739
8740         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
8741         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
8742
8743 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
8744
8745         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
8746         * include/commdlg.h: Likewise.
8747
8748 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
8749
8750         * include/oleauto.h (V_UNION): Correct definition for case of
8751         NONAMELESSUNION:
8752         (V_VT): Likewise.
8753
8754 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
8755
8756         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
8757         not bool, for C as well as C++.
8758
8759 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
8760
8761         * include/shlwapi.h: New file.
8762         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
8763         Victor Porton  <porton@narod.ru> for contributions.
8764         * lib/shlwapi.def: New file.
8765         * lib/test.c: #include shlwapi.h.
8766
8767 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
8768
8769         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
8770         character.
8771         * include/winsock2.h (struct sockaddr): Use __int64 instead of
8772         long long.
8773         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
8774         does not need external *Fiber library functions.
8775
8776 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8777
8778         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
8779         definition.
8780         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
8781         avoid compile error when already defined.
8782
8783 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
8784
8785         * include/winuser.h (WM_MENURBUTTONUP): Add define.
8786
8787 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8788
8789         * include/commdlg.h: Define CDN_* notification message constants
8790         as UINT.
8791
8792 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
8793
8794         * include/commctrl.h: Define notification message constants for
8795         NMHDR.code as UINT.
8796
8797 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
8798
8799         * include/ddeml.h (MH_*) Add defines.
8800         (MONHSZSTRUCT): Add structure and typedefs.
8801         (MONLINKSTRUCT): Ditto.
8802         (MONCONVSTRUCT): Ditto.
8803         (MONCBSTRUCT): Ditto.
8804         (MONERRSTRUCT): Ditto.
8805         (MONMSGSTRUCT): Ditto.
8806         * include/windef.h: Don't define __cdecl or _cdecl for
8807         __WATCOM__.
8808         Don't define _export or __export for __WATCOM__.
8809         * include/windows.h (imm.h): #include.
8810         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
8811
8812 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8813
8814         * include/wtypes.h: Remove duplicate #includes of rpc.h and
8815         rpcndr.h.
8816
8817 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
8818
8819         * include/winbase.h (OpenThread): Add prototype.
8820         * lib/kernel32.def (OpenThread): Add symbol.
8821
8822 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
8823
8824         * include/wtypes.h (HMETAFILEPICT): Add typedef.
8825
8826 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
8827
8828         * include/rpc.h: Conditionally include <windows.h> before
8829         header guard.
8830         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
8831         header guard.
8832
8833 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
8834
8835         * include/commctrl.h (WC_*): Remove some duplicate defines.
8836
8837 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
8838
8839         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
8840         UNICODE mappings.
8841         (IPM*): Add defines.
8842         (IPN_*): Add defines.
8843         (NMIPADDRESS): Add structure and typedefs.
8844         (MAKEIPADDRESS): Add macro.
8845         (MAKEIPRANGE): Add macro.
8846         (FIRST_IPADDRESS): Add macro.
8847         (SECOND_IPADDRESS): Add macro.
8848         (THIRD_IPADDRESS): Add macro.
8849         (FOURTH_IPADDRESS): Add macro.
8850
8851 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
8852
8853         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
8854
8855 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8856
8857         * include/winbase.h (WINBASEAPI): Don't define if prior
8858         definition.
8859
8860         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
8861         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
8862         PARTITION_UNIX): Add defines.
8863         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
8864         (IsRecognizedPartition): Also check for PARTITION_FAT32,
8865         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
8866         (IsContainerPartition): Add macro.
8867
8868 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
8869
8870         * include/commctrl.h: (CBEIF_*): Add defines.
8871         (CBEN_*): Add defines and UNICODE mappings
8872         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
8873         (CBEMAXSTRLEN): Add define.
8874         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
8875         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
8876         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
8877         (NMCBEENDEDIT[AW]): Add structure and typedefs.
8878
8879 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
8880
8881         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
8882         union member _VARIANT_BOOL bool.
8883
8884 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
8885
8886         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
8887
8888 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8889
8890         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
8891         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
8892         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
8893         Add typedefs.
8894         (CCHAR): Correct typedef.
8895         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
8896         Add defines.
8897
8898 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8899
8900         * README.w32api: Correct spelling error.
8901
8902 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8903
8904         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
8905         INPUT_HARDWARE): Add defines.
8906         (HDEVNOTIFY): Add typedef.
8907         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
8908         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
8909         typedefs.
8910         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
8911         GetClassInfoEx[AW],GetKeyboardLayoutList,
8912         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
8913         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
8914         RegisterClassEx[AW]): Correct prototypes.
8915
8916 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8917
8918         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
8919         prototypes.
8920         * include/winsvc.h (StartServiceW): Correct prototype.
8921         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
8922         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
8923         GetTickCount,InterlockedExchangeAdd,
8924         WritePrivateProfileStruct[AW]: Correct prototypes.
8925         (GetEnvironmentStrings): Correct mapping to
8926         GetEnvironmentStringsA.
8927         * include/winver.h (VerQueryValueA,VerQueryValueW):
8928         Correct prototypes.
8929         * include/wincon.h (CreateConsoleScreenBuffer): Correct
8930         prototype.
8931         * include/winreg.h (RegQueryMultipleValues[AW],
8932         RegQueryValueEx[AW]):Correct prototypes.
8933         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
8934         PPOLYTEXTW): Add typedefs.
8935         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
8936         structures and typedefs.
8937         (MM_MAX_NUMAXES): Add define.
8938         (EnumFontsW,GetEnhMetaFilePixelFormat,
8939         wglGetLayerPaletteEntries): Correct prototypes.
8940         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
8941         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
8942         RPC_S_SEND_INCOMPLETE): Add defines.
8943
8944 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8945
8946         * include/windef.h (_fastcall, __fastcall, FASTCALL):
8947         Add defines.
8948
8949 2002-06-16  Egor Duda  <deo@logos-m.ru>
8950
8951         * include/ntdll.h: New file.
8952         * lib/ntdll.def: Add NtShutdownSystem.
8953
8954 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
8955
8956         * lib/dinput.def (DirectInputCreateEx): Add stub.
8957         * lib/ntdll.def: New file.
8958
8959 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
8960
8961         * include/w32api.h: Change to version 2.0 to reflect the change
8962         in the license.
8963         * README: Renamed.
8964         * README.w32api: Renamed from README.  Modified license to remove
8965         the restriction of notifying the author based on the fact that the
8966         author is unreachable at the notified address.
8967         * Makefile.in (VERSION): Change to 2.0.
8968
8969 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
8970
8971         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
8972         * Makefile.in (bindist): Correct the MinGW distribution.
8973
8974 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
8975
8976         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
8977         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
8978
8979 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
8980
8981         * lib/test.c: #include comcat.h.
8982
8983 2002-06-13  John K. Hohm  <jhohm@acm.org>
8984
8985         * include/comcat.h: New file.
8986
8987 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8988
8989         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
8990         (GETTEXTEX): Add structure definition.
8991
8992 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
8993
8994         * include/windows.h (ole2.h): #include if !__OBJC__ and
8995         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
8996
8997 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8998
8999         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9000
9001 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9002
9003         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9004         PACCESS_DENIED_ACE): Add typedefs.
9005
9006 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9007
9008         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9009
9010 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9011
9012         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9013
9014 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9015
9016         * include/windef.h: Fix typo in last change.
9017
9018 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9019
9020         * include/windef.h: Add no-op __try, __except, __finally
9021         defines from ...
9022         * include/excpt.h: Remove file.
9023         * include/windows.h: Don't include excpt.h.
9024
9025 2002-05-30  Christopher January  <chris@atomice.net>
9026
9027         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9028         Add missing typedefs.
9029
9030 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9031
9032         * include/w32api.h: Increment version to 1.5
9033         * Makefile.in: Ditto.
9034
9035
9036 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9037
9038         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9039         LP[W]STR with LPC[W]STR.
9040         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9041         Clean up whitespace.
9042
9043 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9044
9045         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9046
9047 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9048
9049         * Makefile.in: Increment VERSION to 1.4.
9050         (conf_prefix): New variable.
9051         (bindist): Modify target to use $(conf_prefix).
9052
9053 2002-05-20  Philip Aston  <philipa@mail.com>
9054
9055         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9056
9057 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9058
9059         * include/lmaccess.h: (NetAccess*, NetGroup*,
9060         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9061         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9062
9063 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9064
9065         * include/commctrl.h (ImageList_DragShowNolock): Remove
9066         conflicting redeclaration.
9067
9068 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9069
9070         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9071         STRICT and related defines to ...
9072         * include/windef.h: Here.
9073
9074 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9075
9076         * include/winsock2.h (int32): Remove typedef.
9077         (SERVICETYPE): Add typedef.
9078         (struct _flowspec):Revise struct definition,  Comment
9079         on types used for members.
9080
9081 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9082
9083         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9084         more defines added in earlier change.
9085         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9086
9087 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9088
9089         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9090         added in last change.
9091
9092 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9093
9094         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9095         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9096
9097 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9098
9099         * include/commctrl.h (SNDMSG): Define and use throughout
9100         in other macros instead of SendMessage.
9101         * include/commdlg.h (SNDMSG): Ditto.
9102
9103 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9104
9105         * include/GL/gl.h: New file.
9106         * include/GL/glext.h: Ditto.
9107         * include/GL/glu.h: Ditto.
9108
9109 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9110
9111         * include/w32api.h: Increment version.
9112         * Makefile.in: Ditto.
9113
9114 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9115
9116         * Makefile.in (bindist): Use * instead of . for file list for tar
9117         command.
9118
9119 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9120
9121         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9122
9123 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9124
9125         * include/objidl.h (IRunningObjectTable.Register): Correct
9126         prototype.
9127         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9128         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9129
9130 2002-03-31  Victor Porton  <porton@narod.ru>
9131
9132         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9133
9134 2002-03-29  David Robinow  <drobinow@yahoo.com>
9135
9136         * include/wingdi.h (SetPixelFormat): Correct prototype.
9137
9138 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9139
9140         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9141
9142 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9143
9144         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9145         Add defines.
9146
9147 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9148
9149         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9150         * include/shlobj.h (IContextMenu2): Put methods in right order.
9151         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9152         CINTERFACE before defining.
9153
9154 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9155
9156         * include/accctrl.h: Add #pragma GCC system_header
9157         if __GNUC__ >= 3.
9158         * include/aclapi.h: Same.
9159         * include/basetsd.h: Same.
9160         * include/basetyps.h: Same.
9161         * include/cderr.h: Same.
9162         * include/cguid.h: Same.
9163         * include/commctrl.h: Same.
9164         * include/commdlg.h: Same.
9165         * include/cpl.h: Same.
9166         * include/cplext.h: Same.
9167         * include/custcntl.h: Same.
9168         * include/dbt.h: Same.
9169         * include/dde.h: Same.
9170         * include/ddeml.h: Same.
9171         * include/dlgs.h: Same.
9172         * include/excpt.h: Same.
9173         * include/httpext.h: Same.
9174         * include/imagehlp.h: Same.
9175         * include/imm.h: Same.
9176         * include/initguid.h: Same.
9177         * include/intshcut.h: Same.
9178         * include/ipexport.h: Same.
9179         * include/iphlpapi.h: Same.
9180         * include/ipifcons.h: Same.
9181         * include/iprtrmib.h: Same.
9182         * include/iptypes.h: Same.
9183         * include/isguids.h: Same.
9184         * include/largeint.h: Same.
9185         * include/lm.h: Same.
9186         * include/lmaccess.h: Same.
9187         * include/lmalert.h: Same.
9188         * include/lmapibuf.h: Same.
9189         * include/lmat.h: Same.
9190         * include/lmaudit.h: Same.
9191         * include/lmbrowsr.h: Same.
9192         * include/lmchdev.h: Same.
9193         * include/lmconfig.h: Same.
9194         * include/lmcons.h: Same.
9195         * include/lmerr.h: Same.
9196         * include/lmerrlog.h: Same.
9197         * include/lmmsg.h: Same.
9198         * include/lmremutl.h: Same.
9199         * include/lmrepl.h: Same.
9200         * include/lmserver.h: Same.
9201         * include/lmshare.h: Same.
9202         * include/lmsname.h: Same.
9203         * include/lmstats.h: Same.
9204         * include/lmsvc.h: Same.
9205         * include/lmuse.h: Same.
9206         * include/lmuseflg.h: Same.
9207         * include/lmwksta.h: Same.
9208         * include/lzexpand.h: Same.
9209         * include/mapi.h: Same.
9210         * include/mciavi.h: Same.
9211         * include/mcx.h: Same.
9212         * include/mmsystem.h: Same.
9213         * include/mswsock.h: Same.
9214         * include/nb30.h: Same.
9215         * include/nddeapi.h: Same.
9216         * include/nspapi.h: Same.
9217         * include/ntdef.h: Same.
9218         * include/ntsecapi.h: Same.
9219         * include/ntsecpkg.h: Same.
9220         * include/oaidl.h: Same.
9221         * include/objbase.h: Same.
9222         * include/objfwd.h: Same.
9223         * include/objidl.h: Same.
9224         * include/odbcinst.h: Same.
9225         * include/ole.h: Same.
9226         * include/ole2.h: Same.
9227         * include/ole2ver.h: Same.
9228         * include/oleauto.h: Same.
9229         * include/olectl.h: Same.
9230         * include/olectlid.h: Same.
9231         * include/oledlg.h: Same.
9232         * include/oleidl.h: Same.
9233         * include/pbt.h: Same.
9234         * include/prsht.h: Same.
9235         * include/psapi.h: Same.
9236         * include/rapi.h: Same.
9237         * include/ras.h: Same.
9238         * include/raserror.h: Same.
9239         * include/rassapi.h: Same.
9240         * include/regstr.h: Same.
9241         * include/richedit.h: Same.
9242         * include/richole.h: Same.
9243         * include/rpc.h: Same.
9244         * include/rpcdce.h: Same.
9245         * include/rpcdce2.h: Same.
9246         * include/rpcdcep.h: Same.
9247         * include/rpcndr.h: Same.
9248         * include/rpcnsi.h: Same.
9249         * include/rpcnsip.h: Same.
9250         * include/rpcnterr.h: Same.
9251         * include/rpcproxy.h: Same.
9252         * include/schannel.h: Same.
9253         * include/schnlsp.h: Same.
9254         * include/scrnsave.h: Same.
9255         * include/security.h: Same.
9256         * include/setupapi.h: Same.
9257         * include/shellapi.h: Same.
9258         * include/shlguid.h: Same.
9259         * include/shlobj.h: Same.
9260         * include/sql.h: Same.
9261         * include/sqlext.h: Same.
9262         * include/sqltypes.h: Same.
9263         * include/sqlucode.h: Same.
9264         * include/sspi.h: Same.
9265         * include/subauth.h: Same.
9266         * include/tlhelp32.h: Same.
9267         * include/unknwn.h: Same.
9268         * include/userenv.h: Same.
9269         * include/w32api.h: Same.
9270         * include/winbase.h: Same.
9271         * include/wincon.h: Same.
9272         * include/wincrypt.h: Same.
9273         * include/windef.h: Same.
9274         * include/windows.h: Same.
9275         * include/windowsx.h: Same.
9276         * include/winerror.h: Same
9277         * include/wingdi.h: Same.
9278         * include/wininet.h: Same.
9279         * include/winioctl.h: Same.
9280         * include/winnetwk.h: Same.
9281         * include/winnls.h: Same.
9282         * include/winnt.h: Same.
9283         * include/winperf.h: Same.
9284         * include/winreg.h: Same.
9285         * include/winresrc.h: Same.
9286         * include/winsock.h: Same.
9287         * include/winsock2.h: Same.
9288         * include/winspool.h: Same.
9289         * include/winsvc.h: Same.
9290         * include/winuser.h: Same.
9291         * include/winver.h: Same.
9292         * include/ws2tcpip.h: Same.
9293         * include/wsnetbs.h: Same.
9294         * include/wtypes.h: Same.
9295         * include/zmouse.h: Same.
9296         * include/mapi.h: Change header guard name to _MAPI_H  for
9297         consistency.
9298
9299 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9300
9301         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9302         Remove unnecessary inclusion of <wtypes.h>.
9303         * ChangeLog: Fix omission of name in recent entries.
9304
9305 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9306
9307         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9308
9309 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9310
9311         * include/mswsock.h: Group winsock2 dependants
9312         together and protect with #ifdef _WINSOCK2_H.
9313         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9314         has been included.
9315
9316 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9317
9318         * include/mswsock.h (TP_*): Add new defines.
9319         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9320         (WSAMSG): Likewise.
9321         (WSACMSGHDR): Likewise.
9322         (DisconnectEx): Add new prototype.
9323         (WSARecvMsg): Likewise.
9324         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9325
9326 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9327
9328         * ChangeLog: Fix typo in last entry.
9329         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9330         * include/ws2tcpip.h: (IP_*): Add new defines.
9331         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9332         (NI_*): Add getnameinfo constants and bitmasks.
9333         (AI_*): Add getaddrinfo flags.
9334         (EAI_*): Add getaddrinfo error codes.
9335         (ip_mreq_source): Add new structure.
9336         (ip_msfilter): Add new structure.
9337         (IP_MSFILTER_SIZE): Add new macro.
9338         (in_pktinfo): Add new structure.
9339         Add preliminary IPv6 support.
9340         (in6_addr): Add new structure and some defines.
9341         (sockaddr_in6): Add new structure.
9342         (in6addr_any, in6addr_loopback): Declare extern structures.
9343         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9344         initialization macros for above.
9345         (IN6_ARE_ADDR_EQUAL): Define macro.
9346         (IN6_IS_ADDR_*): Define address testing macros.
9347         (socklen_t) Add new typedef.
9348         (ipv6_mreq): Add new structure.
9349         (in6_pktinfo): Same.
9350         (addrinfo): Same.
9351         (freeaddrinfo):Add new prototype.
9352         (getaddrinfo): Same.
9353         (gai_strerror[AW]): Same.
9354         (getnameinfo): Same.
9355         (sockaddr_in6_old): Add structure.
9356         (sockaddr_gen): Add union definition.
9357         (INTERFACE_INFO): Use sockaddr_gen as members.
9358         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9359         with INTERFACE_INFO on NT4 prior to sp4.
9360
9361 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9362
9363         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9364         when selecting winsock interface.
9365         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9366         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9367         Expand FIXME comment.
9368         (WSACOMPLETIONTYPE): Add enum.
9369         (WSACOMPLETION): Add structure and typedefs.
9370         (WSANSPIoctl): Add function prototpe and callback typedef.
9371         (SIO_NSP_NOTIFY_CHANGE): Add define.
9372         (sockaddr_storage): Add structure and typedefs.
9373
9374 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9375
9376         * include/winuser.h (OIC_*): Add resource constants.
9377
9378 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9379
9380         * include/ntsecpkg.h: New file.
9381         * include/schannel.h: New file.
9382         * include/schnlsp.h: New file.
9383         * include/security.h: New file.
9384         * include/sspi.h: New file.
9385         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9386         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9387         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9388         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9389         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9390         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9391         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9392         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9393         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9394         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9395         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9396         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9397         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9398         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9399         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9400         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9401         CERT_CHAIN_CONTEXT): Add missing structures.
9402         (CertCloseStore, CertGetCertificateChain,
9403         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9404         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9405         CertFindCertificateInStore, CertFreeCertificateContext,
9406         CertGetIssuerCertificateFromStore,
9407         CertFindChainInStore): Add missing functions.
9408         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9409         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9410         * lib/crypt32.def: New file.
9411         * lib/secur32.def: Add mising stubs.
9412         * lib/test.c: Include new headers.
9413
9414 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9415
9416         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9417         parameter.
9418
9419 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9420
9421         * lib/test.c: Include mapi.h.
9422         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9423         Thanks to: "Ron"  <ron@debian.org>
9424
9425 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9426
9427         * include/mapi.h: New file.
9428         * lib/mapi.def: Add missing function stubs.
9429
9430 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9431
9432         * include/winuser.h (GetWindowLongPtr[AW],
9433         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9434
9435 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9436
9437         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9438         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9439         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9440         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9441
9442 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9443
9444         * lib/test.c: Include wsnetbs.h.
9445
9446 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9447
9448         * include/wsnetbs.h: New file.
9449
9450 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9451
9452         * include/winnt.h: Remove merge conflict.
9453
9454 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9455
9456         * include/winnt.h (_TCHAR): Add typedefs.
9457
9458 2002-01-25  Tim Hughes  <tjh@delcam.com>
9459
9460         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9461         defines.
9462
9463 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9464
9465         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9466         Add defines.
9467         (LPACCESSTIMEOUT): Add typedef.
9468
9469 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9470
9471         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9472
9473 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9474
9475         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9476         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9477         backward compatability with old names. Update UNICODE mappings.
9478         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9479         for struct _HD_LAYOUT and add defines for backward
9480         compatability with old names.
9481         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9482         parallel chages to typedefs. Add defines for backward
9483         compatability with old names.
9484         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9485
9486 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9487
9488         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9489         hex for readability.
9490
9491 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9492
9493         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9494         and typedefs.
9495         (SPI_SETSCREENSAVERRUNNING): Add define.
9496         (LLKHF_ALTDOWN): Add define.
9497         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9498         PFD_DEPTH_DONTCARE): Add defines.
9499
9500 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9501
9502         * include/objbase.h (CoGetObject): Add prototype.
9503
9504 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9505
9506         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9507         ENUM_REGISTRY_SETTINGS): Add defines.
9508
9509 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9510
9511         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9512         (FILE_ATTRIBUTE_DEVICE): Add define.
9513
9514 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9515
9516         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9517
9518 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9519
9520         * ChangeLog: correct date in last entry.
9521
9522 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9523
9524         * include/winuser.h (MONITORENUMPROC): Add typedef.
9525         (EnumDisplayMonitors): Add prototype.
9526         * lib/user32.def (EnumDisplayMonitors): Add stub.
9527
9528 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9529
9530         * include/ntsecapi.h:  Fixed missing void parameter type in some
9531         prototypes.
9532         * include/objbase.h: Ditto.
9533         * include/rapi.h: Ditto.
9534         * include/rpc.h: Ditto.
9535         * include/rpcdce.h: Ditto.
9536         * include/rpcdcep.h: Ditto.
9537         * include/rpcndr.h: Ditto.
9538         * include/rpcnsip.h: Ditto.
9539         * include/rpcproxy.h: Ditto.
9540         * include/windef.h: Ditto.
9541
9542 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9543
9544         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9545
9546 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9547
9548         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9549          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9550         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9551         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9552         WS_EX_NOINHERITLAYOUT): Add defines.
9553         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9554         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9555         MEM_WRITE_WATCH): Add defines.
9556
9557
9558 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9559
9560         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9561         Add prototype.
9562         (SetCriticalSectionSpinCount): Likewise.
9563
9564 2001-12-30  Guido Serassio  <serassio@libero.it>
9565
9566         * include/winsvc.h: Add EnumServiceStatusEx(),
9567         QueryServiceStatusEx()
9568         & RegisterServiceCtrlHandlerEx()
9569
9570 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9571
9572         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9573
9574 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9575
9576         * lib/Makefile.in: Revert inst_installdir definitions to working
9577         versions.
9578
9579 2001-12-17  Guido Serassio  <serassio@libero.it>
9580
9581         * include/winsvc.h: Add ChangeServiceConfig2() &
9582         QueryServiceConfig2() definition
9583
9584 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9585
9586         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9587         on MSDN documentation for XP.
9588
9589 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9590
9591         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9592         mappings.
9593
9594 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9595
9596         * include/commctrl.h (ACS_*): Add new defines.
9597         (PGS_*): Ditto.
9598         (CBES_*): Ditto.
9599         (TBSTYLE_*): Ditto.
9600         (TB_*): Ditto.
9601         (TTS_*): Ditto.
9602         (UDS_HOTTRACK): Add define.
9603         (SBT_TOOLTIPS): Ditto.
9604         (TBS_*): Add new defines.
9605         (HDS_*): Ditto.
9606         (LVS_EX_*) Ditto.
9607         (LVKF_*): Ditto.
9608         (TCM_GETEXTENDEDSTYLE): Add define.
9609         (TVS_NOHSCROLL): Ditto.
9610         (TVIF_INTEGRAL): Ditto.
9611         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9612         (TCS_*): Add new defines.
9613         (CBEM_*): Add defines.
9614         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9615         (tagTVITEMEX[AW]: Ditto.
9616         (tagTVINSERTSTRUCT[AW]: Add union member.
9617         * include/winbase.h (VirtualAllocEx): Add prototype.
9618         * include/winuser.h (SS_*): Add new defines.
9619
9620 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9621
9622         * Makefile.in: Increment VERSION.
9623         * include/w32api.h: Ditto.
9624
9625 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9626
9627         * Makefile.in: Increment VERSION.
9628         * include/w32api.h: Ditto.
9629
9630 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9631
9632         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9633         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9634         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9635         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9636         SetupDiOpenDevRegKey): Correct function names.
9637
9638 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
9639
9640         * include/winuser.h (IDC_STATIC): Don't define.
9641
9642 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
9643
9644         Cleanup merge between SourceForge and winsup CVS.
9645         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
9646         definitions.
9647         * include/winnt.h (VER_NT*): Remove duplicate defines.
9648         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
9649
9650 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
9651
9652         * include/accctrl.h: Change \r\n to \n.
9653
9654 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
9655
9656         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
9657         Add structure definition.
9658         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
9659         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
9660         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
9661         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
9662         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
9663         UnenableRouter) Declare functions.
9664         * lib/iphlpapi.def: Add function names to import lib.
9665
9666 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
9667
9668         * include/winnt.h (PACCESS_MASK): Add typedef.
9669         * include/aclapi.h: New file.
9670         * include/acctrl.h: New file.
9671         * lib/advapi32.def: Add missing symbols.
9672         * lib/test.c: Add #include <aclapi.h>.
9673
9674 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
9675
9676         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
9677         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
9678         here ...
9679         * include/winnt.h: ... to here.
9680         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
9681         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
9682         and typedefs.
9683         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
9684         Add defines.
9685
9686 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9687
9688         * w32api/include/winnt.h: prepare SSE register support.
9689         (CONTEXT_EXTENDED_REGISTERS): Add new define.
9690         (MAXIMUM_SUPPORTED_EXTENSION): New define.
9691         (struct CONTEXT): ExtendedRegisters field added.
9692
9693 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
9694
9695         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
9696         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
9697         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
9698         tagLASTINPUTINFO ): Define new structures.
9699         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
9700         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
9701         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
9702         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
9703         SetMenuInfo): Add new prototypes.
9704         * lib/user32.def: Add import stubs for above functions.
9705
9706         * include/winuser.h (IDC_STATIC): Protect against prior
9707         definition.
9708
9709 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
9710
9711         * include/winbase.h (OSVERSIONINFOEX): Add definition.
9712         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
9713
9714 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
9715
9716         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
9717         warnings with _AUTHORITY #defines.
9718
9719 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9720
9721         * include/winnt.h (GetCurrentFiber): Create a prototype before the
9722         implementation.
9723         (GetFiberData): Ditto.
9724
9725 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9726
9727         * include/winnt.h: Backout last change.
9728
9729 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
9730
9731         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
9732         GetCurrentFiber: Create a prototype before the implementation.
9733         GetFiberData: Ditto.
9734
9735 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
9736
9737         * include/winuser.h (IDC_STATIC): Add define.
9738         Thanks to: Benoit Laniel.
9739
9740 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
9741
9742         * include/commdlg.h: Include <unknwn.h> rather than local
9743         definition of LPUKNOWN.
9744         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
9745         Emit warning.
9746
9747 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
9748
9749         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
9750         for Watcom.
9751         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
9752         functions of the form 'type * function(...)' in a way compatible
9753         with both Watcom and GCC.
9754         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
9755         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
9756         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
9757         * include/windows.h: Watcom can use anonymous structs/unions.
9758         * include/winnt.h: Watcom can use 64 bit ints.
9759         (GetCurrentFiber): Add another inline definition using
9760         Watcom inline assembly syntax.
9761         (GetFiberData): Likewise.
9762         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
9763         (gethostbyname): Likewise.
9764         (gethostbyaddr}: Likewise.
9765         (getservbyport}: Likewise.
9766         (getservbyname}: Likewise.
9767         (getprotobynumber}: Likewise.
9768         (getprotobyname}: Likewise.
9769         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
9770         (gethostbyname}: Likewise.
9771         (gethostbyaddr}: Likewise.
9772         (getservbyport}: Likewise.
9773         (getservbyname}: Likewise.
9774         (getprotobynumber}: Likewise.
9775         (getprotobyname}: Likewise.
9776         * lib/diinut.c: Correction for Watcom.
9777         * lib/kernel32.c (GetCurrentFiber): Add another definition
9778         using Watcom inline assembly syntax.
9779         (GetFiberData): Likewise.
9780         * lib/scrnsave.c (WinMain): Add break after default:
9781         clause.
9782
9783 2001-11-04  "stefan"  <stefan@lkcc.org>
9784
9785         * include/winnt.h (GetCurrentFiber): Add prototype.
9786         (GetFiberData): Likewise.
9787
9788 2001-11-04  Christopher Faylor  <cgf@redhat.com>
9789
9790         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
9791         parallel invocations.
9792
9793 2001-11-03  Christopher Faylor  <cgf@redhat.com>
9794
9795         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
9796
9797 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9798
9799         * include/basetyps.h (DECLARE_INTERFACE): Don't add
9800         __attribute__((com_interface)) for __GNUC__ >= 3.
9801
9802 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9803
9804         * include/commdlg.h (PRINTPAGERANGE): Add structure
9805         definition.
9806         (PRINTDLGEX[AW]): Likewise.
9807         (PrintDlgEx[AW]): Add function declaration.
9808         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
9809         * ChangeLog: Fix typo in last entry.
9810
9811 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
9812
9813         * include/objbase.h (CoGetClassObject): Change third parameter
9814         to COSERVERINFO*.
9815
9816 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9817
9818         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
9819         Thanks to: Kim Saunders.
9820         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
9821         Thanks to: Pat Thoyts.
9822         * include/winnt.h: Change C++ style comment to C style.
9823         * include/shlobj.h: Ditto.
9824         * include/objbase.h (enum tagCOINIT): Remove comma at end of
9825         list.
9826         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
9827         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
9828         (enum not limited to range of int).
9829         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
9830         (struct with no named members), ifndef NONAMELESSUNION.
9831
9832 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9833
9834         * include/winuser.h (CREATESTRUCT): UNICODE it.
9835         (CBT_CREATEWND): Likewise.
9836
9837 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
9838
9839         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
9840         (WNetGetResourceInformationW): Ditto.
9841         (WNetGetResourceInformation): Add define.
9842
9843 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
9844
9845         * include/winuser.h (POINTSTOPOINT): Use explicit casts
9846         before extracting words.
9847
9848 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
9849
9850         * include/winnt.h: Add PF_* defines.
9851         Thanks to: "Wizord"  <wizord@argoslabs.com>
9852
9853 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
9854
9855         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
9856         field as _ANONYMOUS_STRUCT.
9857         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
9858         for UNICODE.
9859         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
9860         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
9861         test.
9862
9863 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
9864
9865         * include/commctrl.h: Add some ListView constants.
9866
9867 2001-09-17  Earnie Boyd  <earnie@sf.net>
9868
9869         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
9870         portion of the directory from the install.
9871         (inst_libdir): Ditto.
9872         * Makefile.in (VERSION): Increment.
9873         * include/w32api.h: Increment version.
9874
9875 2001-09-13  Earnie Boyd  <earnie@SF.net>
9876
9877         * lib/Makefile.in (inst_includedir): Change to always use w32api
9878         subdirectory for target == cygwin.
9879         (inst_libdir): Ditto.
9880
9881 2001-09-13  Earnie Boyd  <earnie@SF.net>
9882
9883         * lib/Makefile.in (config_prefix): New variable.
9884         (inst_includedir): Manipulate special value only if target == cygwin
9885         and build == target and prefix != config_prefix.
9886         (inst_libdir): Ditto.
9887
9888 2001-09-12  Earnie Boyd  <earnie@SF.net>
9889
9890         * Makefile.in (TARFLAGS): New variable.
9891         (TARFILEEXT): Ditto.
9892
9893 2001-09-12  Earnie Boyd  <earnie@SF.net>
9894
9895         * Makefile.in: Increment version.
9896         * include/w32api.h: Ditto.
9897         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
9898
9899 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
9900
9901         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
9902         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
9903         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
9904
9905 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
9906
9907         * include/wininet.h (InternetAutodial): Add prototype.
9908         (InternetAutodialHangup): Ditto.
9909         (InternetDial): Ditto.
9910         (InternetGetConnectedState): Ditto.
9911         (InternetGoOnline): Ditto.
9912         (InternetHangUp): Ditto.
9913         (InternetSetDialState): Ditto.
9914         Add associated INTERNET_* auto dial flags.
9915         Guard typedefs and prototypes with #ifndef RC_INVOKED.
9916
9917 2001-09-04  Earnie Boyd  <earnie@SF.Net>
9918
9919         * lib/Makefile.in: Move the setting of variable libdir to after the
9920         setting of exec_prefix since the value of libdir is dependant on it.
9921
9922 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
9923
9924         * include/winbase.h: Add missing closing parentheses to
9925         InterlockedExchangePointer declaration.
9926
9927 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
9928
9929         * include/shlobj.h (CFSTR_* ): Add new defines.
9930         Thanks to: "Ron" <ron@debian.org> .
9931         Unicode them.
9932
9933 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
9934
9935         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
9936         anonymous structs are available rather than just testing preprocessor
9937         variable directly.
9938
9939 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
9940
9941         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
9942         with new `LARGE_INTEGER' definition.
9943
9944 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
9945
9946         * include/winsock2.h: Remove "extra token" after #endif.
9947
9948 2001-08-31  Earnie Boyd  <earnie@SF.Net>
9949
9950         * config.guess: Remove the \r from the end of line.
9951         * config.sub: Ditto.
9952
9953 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
9954
9955         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
9956         if __cplusplus as well as if _ANONYMOUS_STRUCT.
9957
9958 2001-08-29  Earnie Boyd  <earnie@SF.Net>
9959
9960         * config.guess: Add the MSYS system.
9961         * config.sub: Ditto.
9962         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
9963         * incldue/winsock2.h: Ditto.
9964
9965 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
9966
9967         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
9968         non-anonymous (Xxx.u.LowPart) access to HighPart and
9969         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
9970
9971 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
9972
9973         * include/wingdi.h (HANGUL_CHARSET): Add define.
9974
9975 2001-08-21  Earnie Boyd  <earnie@SF.Net>
9976
9977         * include/setupapi.h: Formatting.
9978
9979 2001-08-21  Earnie Boyd  <earnie@SF.Net>
9980
9981         * include/shlobj.h: Remove \r from the line endings.
9982
9983 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9984
9985         * include/setupapi.h : New file.
9986         * lib/setupapi.def:New file.
9987         * lib/test.c: Include setupapi.h.
9988
9989 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9990         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
9991
9992 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
9993
9994         * include/richedit.h (ENLINK): Add structure definition.
9995         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
9996
9997 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9998
9999         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10000         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10001         (GCS_*): Make UNICODE.
10002         (CSIDL_*): Add more defines.
10003         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10004         (_DISK_GEOMETRY): Ditto.
10005         (_DISK_PERFORMANCE): Ditto.
10006         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10007
10008 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10009
10010         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10011         of block protected by #ifndef VOID.
10012         (This reverts 1998-12-01 Anders Norlander change.)
10013         * include/odbcinst.h: End file with newline.
10014         * include/raserror.h: Ditto.
10015
10016 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10017
10018         * include/winsock2.h (#include <wtypes.h): Don't.
10019         (_BLOB): Define instead, if not already done.
10020         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10021         * include/wtypes.h (_BLOB): Guard against prior definition.
10022
10023 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10024
10025         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10026         as __extension__.
10027         (tagTYPEDESC): Ditto.
10028         (_wireBRECORD): Add structure definition.
10029         (_wireSAFEARR_BRECORD): Ditto.
10030         (_wireSAFEARR_HAVEIID): Ditto.
10031         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10032         SAFEARR_HAVEIID HaveIidStr.
10033         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10034         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10035         pparray to wirePSAFEARRAY*.
10036         (_wireVARIANT): Add field wireBRECORD brecVal.
10037         (wireVARIANT): Change typedef to struct _wireVariant*.
10038         (IRecordInfo): Add interface definition.
10039         (LPRECORDINFO): Add typedef for IRecordInfo*.
10040         (IID_IRecordInfo): Add forward decalaration.
10041
10042 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10043
10044         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10045         * include/nddeapi.h: Likewise.
10046
10047 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10048
10049         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10050         Add more includes of w32api headers.
10051
10052 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10053
10054         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10055         Swap asm code with that of GetFiberData.
10056         (GetFiberData): Ditto.
10057         * lib/kernel32.c: New file, containing library versions of
10058         GetCurrentFiber and GetFiberData.
10059         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10060
10061 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10062
10063         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10064         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10065
10066 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10067
10068         * lib/oleaut32.def: Regenerate.
10069
10070 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10071
10072         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10073
10074 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10075
10076         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10077         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10078         * include/oaidl.h: ... to here.
10079         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10080         (IErrorInfo::GetGUID): Change arg to GUID.
10081         (LPSUPPORTERRORINFO): Add typedef.
10082         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10083
10084 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10085
10086         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10087         defines.
10088
10089 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10090
10091         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10092
10093 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10094
10095         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10096         Thanks to: Jason Craig  <jacraig@softhome.net>
10097
10098 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10099
10100         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10101         and UNICODE mappings, if _WIN32_IE >= 0x400.
10102         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10103         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10104         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10105         (tagNMLVCUSTOMDRAW): Likewise.
10106         (tagNMTVCUSTOMDRAW): Likewise.
10107         (tagNMLVCACHEHINT): Likewise.
10108
10109 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10110
10111         * include/basetsd.h (#include <_mingw.h>): Remove.
10112         (__int64): Define.
10113
10114 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10115
10116         * include/wingdi.h (AC_SRC_OVER): Add define.
10117         (struct _BLENDFUNCTION): Add.
10118
10119 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10120
10121         * include/shlobj.h:  Add BIF_* defines.
10122
10123 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10124
10125         * include/winerror.h (E_PENDING): Add error code define.
10126
10127 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10128
10129         * include/basetsd.h (#include <_mingw.h>): Add directive.
10130
10131 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10132
10133         * include/winbase.h (InterlockedCompareExchange): Change args
10134         and return value from PVOID to LONG.
10135         (InterlockedExchange): Change first arg to LPLONG.
10136         (InterlockedCompareExchangePointer): New macro.
10137         (InterlockedExchangePointer): New macro.
10138
10139 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10140
10141         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10142         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10143
10144 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10145
10146         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10147         (IMalloc::Free()): Ditto.
10148
10149 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10150
10151         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10152         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10153         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10154
10155 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10156
10157         * include/shlobj.h (struct _browseinfo): UNICODE it.
10158         (SHBrowseForFolder): Ditto.
10159         (SHGetPathFromIDList): Ditto.
10160
10161 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10162
10163         * include/basetsd.h: RC_INVOKED protection and realignment.
10164         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10165
10166 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10167
10168         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10169         line.
10170
10171 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10172
10173         * lib/mapi32.def: Add MAPISendMail.
10174
10175 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10176
10177         * include/w32api.h: Update version.
10178         * Makefile.in: Ditto.
10179
10180 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10181
10182         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10183         compiler warnings.
10184
10185 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10186
10187         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10188         previous definition in include/ntsecapi.h.
10189         * include/ntsecapi.h: Vice versa.
10190
10191 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10192
10193         * include/winnt.h: Add defines for group attributes.
10194         Add define for SYSTEM_LUID.
10195         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10196         `PTOKEN_PRIMARY_GROUP'.
10197
10198 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10199
10200         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10201         for cygwin.
10202
10203 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10204
10205         * include/winsock2.h: Protect one *more* newlib defines when compiling
10206         cygwin.
10207
10208 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10209
10210         * include/winsock2.h: Protect some more newlib defines when compiling
10211         cygwin.
10212
10213 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10214
10215         * include/winsock.h: Protect some more newlib defines when compiling
10216         cygwin.
10217
10218 2001-04-17  Egor Duda  <deo@logos-m.ru>
10219
10220         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10221         as __extenstion__ when appropriate.
10222         * include/mmsystem.h: Mark anonymous structs and unions as
10223         __extension__ to prevent compiler warning when invoked with
10224         -pedantic
10225         * include/oaidl.h: Ditto.
10226         * include/objidl.h: Ditto.
10227         * include/olectl.h: Ditto.
10228         * include/prsht.h: Ditto.
10229         * include/shlobj.h: Ditto.
10230         * include/winbase.h: Ditto.
10231         * include/winnt.h: Ditto.
10232         * include/wtypes.h: Ditto.
10233
10234 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10235
10236         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10237         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10238
10239 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10240
10241         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10242
10243 2001-04-11  John Fortin  <fortinj@attglobal.net>
10244
10245         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10246         (*LPBOOL): Ditto.
10247
10248 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10249
10250         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10251         code will be included in every module which includes this header.
10252         (GetFiberData): Ditto.
10253
10254 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10255
10256         * include/winnt.h (GetCurrentFiber): Fix typo.
10257
10258 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10259
10260         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10261         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10262         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10263         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10264         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10265
10266         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10267         (GetCurrentFiber): Ditto.
10268         Thanks to: Andy Younger  <AndyY@redlemon.com>
10269
10270         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10271         DirectX 8 from complaining.
10272         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10273
10274 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10275
10276         * include/commctrl.h Updated TreeView and ListView defines and macros.
10277
10278 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10279
10280         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10281         and above.
10282
10283 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10284         * include/winuser.h (VK_KANA): New definition.
10285         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10286
10287 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10288
10289         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10290         (RT_FONT): Ditto.
10291         * include/basetsd.h (INT32): Ditto.
10292         * include/windef.h (ATOM): Ditto.
10293         (BOOL): Ditto.
10294         (BYTE): Ditto.
10295         * include/winbase.h (FreeResource): Ditto.
10296         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10297
10298 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10299
10300         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10301         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10302         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10303         macro now defined in newlib sys/types.h.  Emit warning if defined.
10304         * include/winsock2.h: Ditto.
10305         * include/windows.h (Win32_Winsock): Replace with new macros
10306         __USE_W32_SOCKETS and warn of deprecation.
10307
10308 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10309
10310         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10311         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10312
10313 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10314
10315         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10316         (TB_GETBUTTONSIZE): Ditto.
10317         (TCS_HOTTRACK): Ditto.
10318         Thanks to: Chris Hansen <popeofpop@softhome.net>
10319
10320 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10321
10322         * Makefile.in: (snapshot): Add target.
10323         * lib/Makefile.in: (install-headers): Use installdir variable.
10324         (installdir): Set value based on target-alias.
10325
10326 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10327
10328         * include/w32api.h: (_W32API_VERSION): Remove.
10329         (__W32API_VERSION): Add.
10330         (__W32API_MAJOR_VERSION): Ditto.
10331         (__W32API_MINOR_VERSION): Ditto.
10332
10333 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10334
10335         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10336         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10337         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10338         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10339
10340 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10341
10342         * include/mswsock.h: New file.
10343         * include/ws2tcpip.h: New file.
10344         * include/winsock.h (IPPROTO_IGMP): New define.
10345         (IPPROTO_GGP): Correct value.
10346         (SO_* macros): Remove mswsock defines.
10347         (TCP_BSDURGENT): Likewise.
10348         (IP_* macros): Add comment warning of WinSock2 incompatibility
10349         (WSARecvEx): Remove mswsock prototype.
10350         (TransmitFile): Likewise.
10351         (AcceptEx): Likewise.
10352         (GetAcceptExSockaddrs): Likewise.
10353         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10354         (#include <mswsock.h>): Add directive and explanatory comment
10355         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10356         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10357         (#include <winsock.h>): Replace directive with winsock.h file content
10358         The following changes apply to the merged file:
10359         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10360         (SOMAXCONN): Likewise
10361         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10362         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10363         in ws2tcpip.h)
10364         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10365         (FD_*_BIT and FD_* defines): Place together and extend to
10366         FD_MAX_EVENTS 10
10367         (AF* defines): Extend to AF_MAX 10
10368         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10369         (WSAUnhookBlockingHook): Likewise.
10370         (WSASetBlockingHook): Likewise.
10371         (WSACancelBlockingCall): Likewise.
10372         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10373         (#include <mswsock.h>): Delete directive inherited from winsock.h
10374         (WSA_QOS* defines): Add QualityOfService error codes.
10375         (SIO_* defines): Add new macros
10376         * include/ipexport.h (IP_STATUS flags): Add definitions.
10377         (IP_FLAG_DF): Likewise.
10378         (IP_OPT_* ): Likewise.
10379         (struct ip_option_information): Likewise.
10380         (struct icmp_echo_reply): Likewise.
10381
10382 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10383
10384         * include/commctrl.h: Revert TEXT change.
10385         * include/lmalert.h: Ditto.
10386         * include/lmcons.h: Ditto.
10387         * include/lmsname.h: Ditto.
10388         * include/lmsvc.h: Ditto.
10389         * include/ntsecapi.h: Ditto.
10390         * include/oledlg.h: Ditto.
10391         * include/ras.h: Ditto.
10392         * include/regstr.h: Ditto.
10393         * include/richedit.h: Ditto.
10394         * include/wininet.h: Ditto.
10395         * include/winnt.h: Ditto.
10396
10397 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10398
10399         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10400         * include/lmalert.h: Ditto.
10401         * include/lmcons.h: Ditto.
10402         * include/lmsname.h: Ditto.
10403         * include/lmsvc.h: Ditto.
10404         * include/ntsecapi.h: Ditto.
10405         * include/oledlg.h: Ditto.
10406         * include/ras.h: Ditto.
10407         * include/regstr.h: Ditto.
10408         * include/richedit.h: Ditto.
10409         * include/wininet.h: Ditto.
10410         * include/w32api.h: New File.
10411
10412 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10413
10414         * include/shlobj.h: Add missing SLR_* flags.
10415
10416 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10417
10418         * lib/Makefile.in: (host_alias): Add variable.
10419         (host_build): Ditto:
10420         (xinstall): Removed
10421         (xinstall-libraries): Ditto.
10422         (xinstall-headers): Ditto.
10423         (xuninstall): Ditto.
10424         (xuninstall-libraries): Ditto.
10425         (xuninstall-headers): Ditto.
10426         * Makefile.in: (host_alias): Add variable.
10427         (build_alias): Ditto.
10428
10429 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10430
10431         * include/winnt.h: (__TEXT): Add private macro.
10432         (_TEXT): Modify definition to use __TEXT.
10433         (_T): Ditto.
10434         This change allows the passing of a MACRO as an argument and have that
10435         MACRO resolved first.
10436         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10437
10438 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10439
10440         * Makefile.in: Increment VERSION to 0.5
10441         * include/winnt.h: Change TEXT to _TEXT throughout.
10442         (SID_RELEASE): Define.
10443         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10444
10445 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10446
10447         * Apply Phil Krylov patches.
10448         2001-01-19  Phil Krylov  <phil@mail.ru>
10449         * include/commctrl.h: (HDI_IMAGE) New definition.
10450         (HDI_DI_SETITEM) Ditto.
10451         (HDI_ORDER) Ditto.
10452         (HDI_FILTER) Ditto.
10453         (HDF_BITMAP_ON_RIGHT) Ditto.
10454         (HDF_IMAGE) Ditto.
10455         (HDM_SETORDERARRAY) Ditto.
10456         (Header_SetOrderArray) Ditto.
10457         (ICC_BAR_CLASSES) Ditto.
10458         (struct _HD_ITEMA) Change definition.
10459         (struct _HD_ITEMW) Ditto.
10460         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10461         (InitCommonControlsEx()) Ditto.
10462         2001-01-23  Phil Krylov  <phil@mail.ru>
10463         * include/richedit.h: Many Richedit 2.0 definitions.
10464
10465 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10466
10467         * include/winuser.h: (IDC_HAND)  New resource identifier.
10468         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10469
10470 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10471
10472         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10473         Fix typo's.
10474
10475 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10476
10477         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10478         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10479         Thanks To: <bge@users.sourceforge.net>
10480
10481 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10482
10483         * Apply Danny Smith patch 102386
10484         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10485         * lib/rasapi32.def: add symbols available in NT4 and W2k
10486
10487 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10488
10489         * Apply Danny Smith patch 102382
10490         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10491         * lib/mswsock.def: remove leading underscores from symbol names
10492
10493 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10494
10495         * Apply Danny Smith patch 102446
10496         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10497         * include/sql.h (ODBCVER): change default to 0x0351.
10498         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10499         (SQLColAttributes): likewise.
10500         (SQLBindParam): add prototype for ODBC 3.x function.
10501         (SQLCloseCursor): likewise.
10502         (SQLColAttribute): likewise.
10503         (SQLCopyDesc):likewise.
10504         (SQLEndTran): likewise.
10505         (SQLFetchScroll): likewise.
10506         (SQLGetConnectAttr): likewise.
10507         (SQLGetDescField): likewise.
10508         (SQLGetDescRec): likewise.
10509         (SQLGetDiagField): likewise.
10510         (SQLGetDiagRec): likewise.
10511         (SQLGetEnvAttr): likewise.
10512         (SQLGetStmtAttr): likewise.
10513         (SQLSetConnectAttr): likewise.
10514         (SQLSetDescField):likewise.
10515         (SQLSetDescRec): likewise.
10516         (SQLSetEnvAttr): likewise.
10517         (SQLSetStmtAttr): likewise.
10518         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10519         _WIN64 compatability;
10520         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10521         (SQL_ACTIVE_CONNECTIONS): likewise.
10522         (SQL_ACTIVE_STATEMENTS): likewise.
10523         (SQL_ALL_EXCEPT_LIKE): likewise.
10524         (SQL_API_ALL_FUNCTIONS): likewise.
10525         (SQL_API_LOADBYORDINAL): likewise.
10526         (SQL_API_SQLBINDPARAMETER): likewise.
10527         (SQL_API_SQLBROWSECONNECT): likewise.
10528         (SQL_API_SQLCOLATTRIBUTES): likewise.
10529         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10530         (SQL_API_SQLDESCRIBEPARAM): likewise.
10531         (SQL_API_SQLDRIVERCONNECT): likewise.
10532         (SQL_API_SQLDRIVERS): likewise.
10533         (SQL_API_SQLEXTENDEDFETCH): likewise.
10534         (SQL_API_SQLFOREIGNKEYS): likewise.
10535         (SQL_API_SQLMORERESULTS): likewise.
10536         (SQL_API_SQLNATIVESQL): likewise.
10537         (SQL_API_SQLNUMPARAMS): likewise.
10538         (SQL_API_SQLPARAMOPTIONS): likewise.
10539         (SQL_API_SQLPRIMARYKEYS): likewise.
10540         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10541         (SQL_API_SQLPROCEDURES): likewise.
10542         (SQL_API_SQLSETPOS): likewise.
10543         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10544         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10545         (SQL_ASYNC_ENABLE): likewise.
10546         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10547         (SQL_ASYNC_ENABLE_OFF): likewise.
10548         (SQL_ASYNC_ENABLE_ON): likewise.
10549         (SQL_ATTR_READONLY): likewise.
10550         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10551         (SQL_ATTR_WRITE): likewise.
10552         (SQL_AUTOCOMMIT): likewise.
10553         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10554         (SQL_AUTOCOMMIT_OFF): likewise.
10555         (SQL_AUTOCOMMIT_ON): likewise.
10556         (SQL_BEST_ROWID): likewise.
10557         (SQL_BIGINT): likewise.
10558         (SQL_BINARY): likewise.
10559         (SQL_BIND_BY_COLUMN): likewise.
10560         (SQL_BIND_TYPE): likewise.
10561         (SQL_BIND_TYPE_DEFAULT): likewise.
10562         (SQL_BIT): likewise.
10563         (SQL_BOOKMARK_PERSISTENCE): likewise.
10564         (SQL_BP_CLOSE): likewise.
10565         (SQL_BP_DELETE): likewise.
10566         (SQL_BP_DROP): likewise.
10567         (SQL_BP_OTHER_HSTMT): likewise.
10568         (SQL_BP_SCROLL): likewise.
10569         (SQL_BP_TRANSACTION): likewise.
10570         (SQL_BP_UPDATE): likewise.
10571         (SQL_C_BINARY): likewise.
10572         (SQL_C_BIT): likewise.
10573         (SQL_C_BOOKMARK): likewise.
10574         (SQL_C_CHAR): likewise.
10575         (SQL_C_DATE): likewise.
10576         (SQL_C_DEFAULT): likewise.
10577         (SQL_C_DOUBLE): likewise.
10578         (SQL_C_FLOAT): likewise.
10579         (SQL_C_LONG): likewise.
10580         (SQL_C_SHORT): likewise.
10581         (SQL_C_SLONG): likewise.
10582         (SQL_C_SSHORT): likewise.
10583         (SQL_C_STINYINT): likewise.
10584         (SQL_C_TIME): likewise.
10585         (SQL_C_TIMESTAMP): likewise.
10586         (SQL_C_TINYINT): likewise.
10587         (SQL_C_ULONG): likewise.
10588         (SQL_C_USHORT): likewise.
10589         (SQL_C_UTINYINT): likewise.
10590         (SQL_CB_NON_NULL): likewise.
10591         (SQL_CB_NULL): likewise.
10592         (SQL_CC_CLOSE): likewise.
10593         (SQL_CC_DELETE): likewise.
10594         (SQL_CC_PRESERVE): likewise.
10595         (SQL_CN_ANY): likewise.
10596         (SQL_CN_DIFFERENT): likewise.
10597         (SQL_CN_NONE): likewise.
10598         (SQL_COLATT_OPT_MAX): likewise.
10599         (SQL_COLATT_OPT_MIN): likewise.
10600         (SQL_COLUMN_ALIAS): likewise.
10601         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10602         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10603         (SQL_COLUMN_COUNT): likewise.
10604         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10605         (SQL_COLUMN_DRIVER_START): likewise.
10606         (SQL_COLUMN_LABEL): likewise.
10607         (SQL_COLUMN_LENGTH): likewise.
10608         (SQL_COLUMN_MONEY): likewise.
10609         (SQL_COLUMN_NAME): likewise.
10610         (SQL_COLUMN_NULLABLE): likewise.
10611         (SQL_COLUMN_OWNER_NAME): likewise.
10612         (SQL_COLUMN_PRECISION): likewise.
10613         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10614         (SQL_COLUMN_SCALE): likewise.
10615         (SQL_COLUMN_SEARCHABLE): likewise.
10616         (SQL_COLUMN_TABLE_NAME): likewise.
10617         (SQL_COLUMN_TYPE): likewise.
10618         (SQL_COLUMN_TYPE_NAME): likewise.
10619         (SQL_COLUMN_UNSIGNED): likewise.
10620         (SQL_COLUMN_UPDATABLE): likewise.
10621         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10622         (SQL_CONCUR_DEFAULT): likewise.
10623         (SQL_CONCUR_LOCK): likewise.
10624         (SQL_CONCUR_READ_ONLY): likewise.
10625         (SQL_CONCUR_ROWVER): likewise.
10626         (SQL_CONCUR_TIMESTAMP): likewise.
10627         (SQL_CONCUR_VALUES): likewise.
10628         (SQL_CONCURRENCY): likewise.
10629         (SQL_CONN_OPT_MAX): likewise.
10630         (SQL_CONN_OPT_MIN): likewise.
10631         (SQL_CONNECT_OPT_DRVR_START): likewise.
10632         (SQL_CONVERT_BIGINT): likewise.
10633         (SQL_CONVERT_BINARY): likewise.
10634         (SQL_CONVERT_BIT): likewise.
10635         (SQL_CONVERT_CHAR): likewise.
10636         (SQL_CONVERT_DATE): likewise.
10637         (SQL_CONVERT_DECIMAL): likewise.
10638         (SQL_CONVERT_DOUBLE): likewise.
10639         (SQL_CONVERT_FLOAT): likewise.
10640         (SQL_CONVERT_FUNCTIONS): likewise.
10641         (SQL_CONVERT_INTEGER): likewise.
10642         (SQL_CONVERT_LONGVARBINARY): likewise.
10643         (SQL_CONVERT_LONGVARCHAR): likewise.
10644         (SQL_CONVERT_NUMERIC): likewise.
10645         (SQL_CONVERT_REAL): likewise.
10646         (SQL_CONVERT_SMALLINT): likewise.
10647         (SQL_CONVERT_TIME): likewise.
10648         (SQL_CONVERT_TIMESTAMP): likewise.
10649         (SQL_CONVERT_TINYINT): likewise.
10650         (SQL_CONVERT_VARBINARY): likewise.
10651         (SQL_CONVERT_VARCHAR): likewise.
10652         (SQL_CORRELATION_NAME): likewise.
10653         (SQL_CR_CLOSE): likewise.
10654         (SQL_CR_DELETE): likewise.
10655         (SQL_CR_PRESERVE): likewise.
10656         (SQL_CUR_DEFAULT): likewise.
10657         (SQL_CUR_USE_DRIVER): likewise.
10658         (SQL_CUR_USE_IF_NEEDED): likewise.
10659         (SQL_CUR_USE_ODBC): likewise.
10660         (SQL_CURRENT_QUALIFIER): likewise.
10661         (SQL_CURSOR_DYNAMIC): likewise.
10662         (SQL_CURSOR_FORWARD_ONLY): likewise.
10663         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
10664         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
10665         (SQL_CURSOR_STATIC): likewise.
10666         (SQL_CURSOR_TYPE): likewise.
10667         (SQL_CURSOR_TYPE_DEFAULT): likewise.
10668         (SQL_CVT_BIGINT): likewise.
10669         (SQL_CVT_BINARY): likewise.
10670         (SQL_CVT_BIT): likewise.
10671         (SQL_CVT_CHAR): likewise.
10672         (SQL_CVT_DATE): likewise.
10673         (SQL_CVT_DECIMAL): likewise.
10674         (SQL_CVT_DOUBLE): likewise.
10675         (SQL_CVT_FLOAT): likewise.
10676         (SQL_CVT_INTEGER): likewise.
10677         (SQL_CVT_LONGVARBINARY): likewise.
10678         (SQL_CVT_LONGVARCHAR): likewise.
10679         (SQL_CVT_NUMERIC): likewise.
10680         (SQL_CVT_REAL): likewise.
10681         (SQL_CVT_SMALLINT): likewise.
10682         (SQL_CVT_TIME): likewise.
10683         (SQL_CVT_TIMESTAMP): likewise.
10684         (SQL_CVT_TINYINT): likewise.
10685         (SQL_CVT_VARBINARY): likewise.
10686         (SQL_CVT_VARCHAR): likewise.
10687         (SQL_DATABASE_NAME): likewise.
10688         (SQL_DATE): likewise.
10689         (SQL_DRIVER_HDBC): likewise.
10690         (SQL_DRIVER_HENV): likewise.
10691         (SQL_DRIVER_HLIB): likewise.
10692         (SQL_DRIVER_HSTMT): likewise.
10693         (SQL_DRIVER_NAME): likewise.
10694         (SQL_DRIVER_ODBC_VER): likewise.
10695         (SQL_DRIVER_VER): likewise.
10696         (SQL_ENSURE): likewise.
10697         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
10698         (SQL_EXT_API_LAST): likewise.
10699         (SQL_EXT_API_START): likewise.
10700         (SQL_FD_FETCH_BOOKMARK): likewise.
10701         (SQL_FD_FETCH_PREV): likewise.
10702         (SQL_FD_FETCH_RESUME): likewise.
10703         (SQL_FETCH_PREV): likewise.
10704         (SQL_FETCH_RESUME): likewise.
10705         (SQL_FILE_NOT_SUPPORTED): likewise.
10706         (SQL_FILE_QUALIFIER): likewise.
10707         (SQL_FILE_TABLE): likewise.
10708         (SQL_FILE_USAGE): likewise.
10709         (SQL_FN_CVT_CONVERT): likewise.
10710         (SQL_FN_NUM_ABS): likewise.
10711         (SQL_FN_NUM_ACOS): likewise.
10712         (SQL_FN_NUM_ASIN): likewise.
10713         (SQL_FN_NUM_ATAN): likewise.
10714         (SQL_FN_NUM_ATAN2): likewise.
10715         (SQL_FN_NUM_CEILING): likewise.
10716         (SQL_FN_NUM_COS): likewise.
10717         (SQL_FN_NUM_COT): likewise.
10718         (SQL_FN_NUM_DEGREES): likewise.
10719         (SQL_FN_NUM_EXP): likewise.
10720         (SQL_FN_NUM_FLOOR): likewise.
10721         (SQL_FN_NUM_LOG): likewise.
10722         (SQL_FN_NUM_LOG10): likewise.
10723         (SQL_FN_NUM_MOD): likewise.
10724         (SQL_FN_NUM_PI): likewise.
10725         (SQL_FN_NUM_POWER): likewise.
10726         (SQL_FN_NUM_RADIANS): likewise.
10727         (SQL_FN_NUM_RAND): likewise.
10728         (SQL_FN_NUM_ROUND): likewise.
10729         (SQL_FN_NUM_SIGN): likewise.
10730         (SQL_FN_NUM_SIN): likewise.
10731         (SQL_FN_NUM_SQRT): likewise.
10732         (SQL_FN_NUM_TAN): likewise.
10733         (SQL_FN_NUM_TRUNCATE): likewise.
10734         (SQL_FN_STR_ASCII): likewise.
10735         (SQL_FN_STR_CHAR): likewise.
10736         (SQL_FN_STR_CONCAT): likewise.
10737         (SQL_FN_STR_DIFFERENCE): likewise.
10738         (SQL_FN_STR_INSERT): likewise.
10739         (SQL_FN_STR_LCASE): likewise.
10740         (SQL_FN_STR_LEFT): likewise.
10741         (SQL_FN_STR_LENGTH): likewise.
10742         (SQL_FN_STR_LOCATE): likewise.
10743         (SQL_FN_STR_LOCATE_2): likewise.
10744         (SQL_FN_STR_LTRIM): likewise.
10745         (SQL_FN_STR_REPEAT): likewise.
10746         (SQL_FN_STR_REPLACE): likewise.
10747         (SQL_FN_STR_RIGHT): likewise.
10748         (SQL_FN_STR_RTRIM): likewise.
10749         (SQL_FN_STR_SOUNDEX): likewise.
10750         (SQL_FN_STR_SPACE): likewise.
10751         (SQL_FN_STR_SUBSTRING): likewise.
10752         (SQL_FN_STR_UCASE): likewise.
10753         (SQL_FN_SYS_DBNAME): likewise.
10754         (SQL_FN_SYS_IFNULL): likewise.
10755         (SQL_FN_SYS_USERNAME): likewise.
10756         (SQL_FN_TD_CURDATE): likewise.
10757         (SQL_FN_TD_CURTIME): likewise.
10758         (SQL_FN_TD_DAYNAME): likewise.
10759         (SQL_FN_TD_DAYOFMONTH): likewise.
10760         (SQL_FN_TD_DAYOFWEEK): likewise.
10761         (SQL_FN_TD_DAYOFYEAR): likewise.
10762         (SQL_FN_TD_HOUR): likewise.
10763         (SQL_FN_TD_MINUTE): likewise.
10764         (SQL_FN_TD_MONTH): likewise.
10765         (SQL_FN_TD_MONTHNAME): likewise.
10766         (SQL_FN_TD_NOW): likewise.
10767         (SQL_FN_TD_QUARTER): likewise.
10768         (SQL_FN_TD_SECOND): likewise.
10769         (SQL_FN_TD_TIMESTAMPadd): likewise.
10770         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
10771         (SQL_FN_TD_WEEK): likewise.
10772         (SQL_FN_TD_YEAR): likewise.
10773         (SQL_FN_TSI_DAY): likewise.
10774         (SQL_FN_TSI_FRAC_SECOND): likewise.
10775         (SQL_FN_TSI_HOUR): likewise.
10776         (SQL_FN_TSI_MINUTE): likewise.
10777         (SQL_FN_TSI_MONTH): likewise.
10778         (SQL_FN_TSI_QUARTER): likewise.
10779         (SQL_FN_TSI_SECOND): likewise.
10780         (SQL_FN_TSI_WEEK): likewise.
10781         (SQL_FN_TSI_YEAR): likewise.
10782         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
10783         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
10784         (SQL_GB_NO_RELATION): likewise.
10785         (SQL_GB_NOT_SUPPORTED): likewise.
10786         (SQL_GD_BLOCK): likewise.
10787         (SQL_GD_BOUND): likewise.
10788         (SQL_GET_BOOKMARK): likewise.
10789         (SQL_GROUP_BY): likewise.
10790         (SQL_INFO_DRIVER_START): likewise.
10791         (SQL_INFO_FIRST): likewise.
10792         (SQL_INFO_LAST): likewise.
10793         (SQL_INTERVAL_DAY): likewise.
10794         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
10795         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
10796         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
10797         (SQL_INTERVAL_HOUR): likewise.
10798         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
10799         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
10800         (SQL_INTERVAL_MINUTE): likewise.
10801         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
10802         (SQL_INTERVAL_MONTH): likewise.
10803         (SQL_INTERVAL_SECOND): likewise.
10804         (SQL_INTERVAL_YEAR): likewise.
10805         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
10806         (SQL_KEYSET_SIZE): likewise.
10807         (SQL_KEYSET_SIZE_DEFAULT): likewise.
10808         (SQL_KEYWORDS): likewise.
10809         (SQL_LCK_EXCLUSIVE): likewise.
10810         (SQL_LCK_NO_CHANGE): likewise.
10811         (SQL_LCK_UNLOCK): likewise.
10812         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
10813         (SQL_LIKE_ONLY): likewise.
10814         (SQL_LOCK_TYPES): likewise.
10815         (SQL_LOGIN_TIMEOUT): likewise.
10816         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
10817         (SQL_LONGVARBINARY): likewise.
10818         (SQL_LONGVARCHAR): likewise.
10819         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
10820         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
10821         (SQL_MAX_DSN_LENGTH): likewise.
10822         (SQL_MAX_LENGTH): likewise.
10823         (SQL_MAX_LENGTH_DEFAULT): likewise.
10824         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
10825         (SQL_MAX_OWNER_NAME_LEN): likewise.
10826         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
10827         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
10828         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
10829         (SQL_MAX_ROWS): likewise.
10830         (SQL_MAX_ROWS_DEFAULT): likewise.
10831         (SQL_MODE_DEFAULT): likewise.
10832         (SQL_MODE_READ_ONLY): likewise.
10833         (SQL_MODE_READ_WRITE): likewise.
10834         (SQL_MULT_RESULT_SETS): likewise.
10835         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
10836         (SQL_NC_END): likewise.
10837         (SQL_NC_START): likewise.
10838         (SQL_NEED_LONG_DATA_LEN): likewise.
10839         (SQL_NNC_NON_NULL): likewise.
10840         (SQL_NNC_NULL): likewise.
10841         (SQL_NO_TOTAL): likewise.
10842         (SQL_NON_NULLABLE_COLUMNS): likewise.
10843         (SQL_NOSCAN): likewise.
10844         (SQL_NOSCAN_DEFAULT): likewise.
10845         (SQL_NOSCAN_OFF): likewise.
10846         (SQL_NOSCAN_ON): likewise.
10847         (SQL_NUM_EXTENSIONS): likewise.
10848         (SQL_NUM_FUNCTIONS): likewise.
10849         (SQL_NUMERIC_FUNCTIONS): likewise.
10850         (SQL_OAC_LEVEL1): likewise.
10851         (SQL_OAC_LEVEL2): likewise.
10852         (SQL_OAC_NONE): likewise.
10853         (SQL_ODBC_API_CONFORMANCE): likewise.
10854         (SQL_ODBC_CURSORS): likewise.
10855         (SQL_ODBC_KEYWORDS): likewise.
10856         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
10857         (SQL_ODBC_SQL_CONFORMANCE): likewise.
10858         (SQL_ODBC_SQL_OPT_IEF): likewise.
10859         (SQL_ODBC_VER): likewise.
10860         (SQL_OPT_TRACE): likewise.
10861         (SQL_OPT_TRACE_DEFAULT): likewise.
10862         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
10863         (SQL_OPT_TRACE_OFF): likewise.
10864         (SQL_OPT_TRACE_ON): likewise.
10865         (SQL_OPT_TRACEFILE): likewise.
10866         (SQL_OSC_CORE): likewise.
10867         (SQL_OSC_EXTENDED): likewise.
10868         (SQL_OSC_MINIMUM): likewise.
10869         (SQL_OSCC_COMPLIANT): likewise.
10870         (SQL_OSCC_NOT_COMPLIANT): likewise.
10871         (SQL_OU_DML_STATEMENTS): likewise.
10872         (SQL_OU_INDEX_DEFINITION): likewise.
10873         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
10874         (SQL_OU_PROCEDURE_INVOCATION): likewise.
10875         (SQL_OU_TABLE_DEFINITION): likewise.
10876         (SQL_OUTER_JOINS): likewise.
10877         (SQL_OWNER_TERM): likewise.
10878         (SQL_OWNER_USAGE): likewise.
10879         (SQL_PACKET_SIZE): likewise.
10880         (SQL_PC_NOT_PSEUDO): likewise.
10881         (SQL_POS_add): likewise.
10882         (SQL_POS_DELETE): likewise.
10883         (SQL_POS_OPERATIONS): likewise.
10884         (SQL_POS_POSITION): likewise.
10885         (SQL_POS_REFRESH): likewise.
10886         (SQL_POS_UPDATE): likewise.
10887         (SQL_POSITIONED_STATEMENTS): likewise.
10888         (SQL_PROCEDURE_TERM): likewise.
10889         (SQL_PROCEDURES): likewise.
10890         (SQL_PS_POSITIONED_DELETE): likewise.
10891         (SQL_PS_POSITIONED_UPDATE): likewise.
10892         (SQL_PS_SELECT_FOR_UPDATE): likewise.
10893         (SQL_QL_END): likewise.
10894         (SQL_QL_START): likewise.
10895         (SQL_QU_DML_STATEMENTS): likewise.
10896         (SQL_QU_INDEX_DEFINITION): likewise.
10897         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
10898         (SQL_QU_PROCEDURE_INVOCATION): likewise.
10899         (SQL_QU_TABLE_DEFINITION): likewise.
10900         (SQL_QUALIFIER_LOCATION): likewise.
10901         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
10902         (SQL_QUALIFIER_TERM): likewise.
10903         (SQL_QUALIFIER_USAGE): likewise.
10904         (SQL_QUERY_TIMEOUT): likewise.
10905         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
10906         (SQL_QUICK): likewise.
10907         (SQL_QUIET_MODE): likewise.
10908         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
10909         (SQL_RD_DEFAULT): likewise.
10910         (SQL_RD_OFF): likewise.
10911         (SQL_RD_ON): likewise.
10912         (SQL_RETRIEVE_DATA): likewise.
10913         (SQL_ROW_NUMBER): likewise.
10914         (SQL_ROW_UPDATES): likewise.
10915         (SQL_ROWSET_SIZE): likewise.
10916         (SQL_ROWSET_SIZE_DEFAULT): likewise.
10917         (SQL_ROWVER): likewise.
10918         (SQL_SC_NON_UNIQUE): likewise.
10919         (SQL_SC_TRY_UNIQUE): likewise.
10920         (SQL_SC_UNIQUE): likewise.
10921         (SQL_SCCO_OPT_TIMESTAMP): likewise.
10922         (SQL_SCROLL_DYNAMIC): likewise.
10923         (SQL_SCROLL_FORWARD_ONLY): likewise.
10924         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
10925         (SQL_SCROLL_OPTIONS): likewise.
10926         (SQL_SCROLL_STATIC): likewise.
10927         (SQL_SEARCHABLE): likewise.
10928         (SQL_SIGNED_OFFSET): likewise.
10929         (SQL_SIMULATE_CURSOR): likewise.
10930         (SQL_SO_DYNAMIC): likewise.
10931         (SQL_SO_FORWARD_ONLY): likewise.
10932         (SQL_SO_KEYSET_DRIVEN): likewise.
10933         (SQL_SO_MIXED): likewise.
10934         (SQL_SO_STATIC): likewise.
10935         (SQL_SPEC_MAJOR): likewise.
10936         (SQL_SPEC_MINOR): likewise.
10937         (SQL_SPEC_STRING): likewise.
10938         (SQL_SQ_COMPARISON): likewise.
10939         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
10940         (SQL_SQ_EXISTS): likewise.
10941         (SQL_SQ_IN): likewise.
10942         (SQL_SQ_QUANTIFIED): likewise.
10943         (SQL_SQLSTATE_SIZE): likewise.
10944         (SQL_SS_addITIONS): likewise.
10945         (SQL_SS_DELETIONS): likewise.
10946         (SQL_SS_UPDATES): likewise.
10947         (SQL_STATIC_SENSITIVITY): likewise.
10948         (SQL_STMT_OPT_MAX): likewise.
10949         (SQL_STMT_OPT_MIN): likewise.
10950         (SQL_STRING_FUNCTIONS): likewise.
10951         (SQL_SUBQUERIES): likewise.
10952         (SQL_SYSTEM_FUNCTIONS): likewise.
10953         (SQL_TABLE_STAT): likewise.
10954         (SQL_TABLE_TERM): likewise.
10955         (SQL_TIME): likewise.
10956         (SQL_TIMEDATE_add_INTERVALS): likewise.
10957         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
10958         (SQL_TIMEDATE_FUNCTIONS): likewise.
10959         (SQL_TIMESTAMP): likewise.
10960         (SQL_TINYINT): likewise.
10961         (SQL_TRANSLATE_DLL): likewise.
10962         (SQL_TRANSLATE_OPTION): likewise.
10963         (SQL_TXN_ISOLATION): likewise.
10964         (SQL_TXN_VERSIONING): likewise.
10965         (SQL_TYPE_DRIVER_END): likewise.
10966         (SQL_TYPE_DRIVER_START): likewise.
10967         (SQL_TYPE_MAX): likewise.
10968         (SQL_TYPE_MIN): likewise.
10969         (SQL_TYPE_NULL): likewise.
10970         (SQL_U_UNION): likewise.
10971         (SQL_U_UNION_ALL): likewise.
10972         (SQL_UB_DEFAULT): likewise.
10973         (SQL_UB_OFF): likewise.
10974         (SQL_UB_ON): likewise.
10975         (SQL_UNICODE): likewise.
10976         (SQL_UNICODE_CHAR): likewise.
10977         (SQL_UNICODE_LONGVARCHAR): likewise.
10978         (SQL_UNICODE_VARCHAR): likewise.
10979         (SQL_UNION): likewise.
10980         (SQL_UNSEARCHABLE): likewise.
10981         (SQL_UNSIGNED_OFFSET): likewise.
10982         (SQL_USE_BOOKMARKS): likewise.
10983         (SQL_VARBINARY): likewise.
10984         (SQL_TRUE): add define for ODBC3.x.
10985         (SQL_FALSE): likewise.
10986         (SQL_AM_CONNECTION): likewise.
10987         (SQL_AM_NONE): likewise.
10988         (SQL_AM_STATEMENT): likewise.
10989         (SQL_API_SQLALLOCHANDLE): likewise.
10990         (SQL_API_SQLBINDPARAM): likewise.
10991         (SQL_API_SQLCLOSECURSOR): likewise.
10992         (SQL_API_SQLCOLATTRIBUTE): likewise.
10993         (SQL_API_SQLCOPYDESC): likewise.
10994         (SQL_API_SQLENDTRAN): likewise.
10995         (SQL_API_SQLFETCHSCROLL): likewise.
10996         (SQL_API_SQLFREEHANDLE): likewise.
10997         (SQL_API_SQLGETCONNECTATTR): likewise.
10998         (SQL_API_SQLGETDESCFIELD): likewise.
10999         (SQL_API_SQLGETDESCREC): likewise.
11000         (SQL_API_SQLGETDIAGFIELD): likewise.
11001         (SQL_API_SQLGETDIAGREC): likewise.
11002         (SQL_API_SQLGETENVATTR): likewise.
11003         (SQL_API_SQLGETSTMTATTR): likewise.
11004         (SQL_API_SQLSETCONNECTATTR): likewise.
11005         (SQL_API_SQLSETDESCFIELD): likewise.
11006         (SQL_API_SQLSETDESCREC): likewise.
11007         (SQL_API_SQLSETENVATTR): likewise.
11008         (SQL_API_SQLSETSTMTATTR): likewise.
11009         (SQL_ARD_TYPE): likewise.
11010         (SQL_AT_add_CONSTRAINT): likewise.
11011         (SQL_ATTR_APP_PARAM_DESC): likewise.
11012         (SQL_ATTR_APP_ROW_DESC): likewise.
11013         (SQL_ATTR_AUTO_IPD): likewise.
11014         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11015         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11016         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11017         (SQL_ATTR_IMP_ROW_DESC): likewise.
11018         (SQL_ATTR_METADATA_ID): likewise.
11019         (SQL_ATTR_OUTPUT_NTS): likewise.
11020         (SQL_CATALOG_NAME): likewise.
11021         (SQL_CODE_DATE): likewise.
11022         (SQL_CODE_TIME): likewise.
11023         (SQL_CODE_TIMESTAMP): likewise.
11024         (SQL_COLLATION_SEQ): likewise.
11025         (SQL_CURSOR_SENSITIVITY): likewise.
11026         (SQL_DATE_LEN): likewise.
11027         (SQL_DATETIME): likewise.
11028         (SQL_DEFAULT): likewise.
11029         (SQL_DESC_ALLOC_AUTO): likewise.
11030         (SQL_DESC_ALLOC_TYPE): likewise.
11031         (SQL_DESC_ALLOC_USER): likewise.
11032         (SQL_DESC_COUNT): likewise.
11033         (SQL_DESC_DATA_PTR): likewise.
11034         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11035         (SQL_DESC_INDICATOR_PTR): likewise.
11036         (SQL_DESC_LENGTH): likewise.
11037         (SQL_DESC_NAME): likewise.
11038         (SQL_DESC_NULLABLE): likewise.
11039         (SQL_DESC_OCTET_LENGTH): likewise.
11040         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11041         (SQL_DESC_PRECISION): likewise.
11042         (SQL_DESC_SCALE): likewise.
11043         (SQL_DESC_TYPE): likewise.
11044         (SQL_DESC_UNNAMED): likewise.
11045         (SQL_DESCRIBE_PARAMETER): likewise.
11046         (SQL_DIAG_ALTER_DOMAIN): likewise.
11047         (SQL_DIAG_ALTER_TABLE): likewise.
11048         (SQL_DIAG_CALL): likewise.
11049         (SQL_DIAG_CLASS_ORIGIN): likewise.
11050         (SQL_DIAG_CONNECTION_NAME): likewise.
11051         (SQL_DIAG_CREATE_ASSERTION): likewise.
11052         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11053         (SQL_DIAG_CREATE_COLLATION): likewise.
11054         (SQL_DIAG_CREATE_DOMAIN): likewise.
11055         (SQL_DIAG_CREATE_INDEX): likewise.
11056         (SQL_DIAG_CREATE_SCHEMA): likewise.
11057         (SQL_DIAG_CREATE_TABLE): likewise.
11058         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11059         (SQL_DIAG_CREATE_VIEW): likewise.
11060         (SQL_DIAG_DELETE_WHERE): likewise.
11061         (SQL_DIAG_DROP_ASSERTION): likewise.
11062         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11063         (SQL_DIAG_DROP_COLLATION): likewise.
11064         (SQL_DIAG_DROP_DOMAIN): likewise.
11065         (SQL_DIAG_DROP_INDEX): likewise.
11066         (SQL_DIAG_DROP_SCHEMA): likewise.
11067         (SQL_DIAG_DROP_TABLE): likewise.
11068         (SQL_DIAG_DROP_TRANSLATION): likewise.
11069         (SQL_DIAG_DROP_VIEW): likewise.
11070         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11071         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11072         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11073         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11074         (SQL_DIAG_GRANT): likewise.
11075         (SQL_DIAG_INSERT): likewise.
11076         (SQL_DIAG_MESSAGE_TEXT): likewise.
11077         (SQL_DIAG_NATIVE): likewise.
11078         (SQL_DIAG_NUMBER): likewise.
11079         (SQL_DIAG_RETURNCODE): likewise.
11080         (SQL_DIAG_REVOKE): likewise.
11081         (SQL_DIAG_ROW_COUNT): likewise.
11082         (SQL_DIAG_SELECT_CURSOR): likewise.
11083         (SQL_DIAG_SERVER_NAME): likewise.
11084         (SQL_DIAG_SQLSTATE): likewise.
11085         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11086         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11087         (SQL_DIAG_UPDATE_WHERE): likewise.
11088         (SQL_FALSE): likewise.
11089         (SQL_FETCH_ABSOLUTE): likewise.
11090         (SQL_FETCH_LAST): likewise.
11091         (SQL_FETCH_PRIOR): likewise.
11092         (SQL_FETCH_RELATIVE): likewise.
11093         (SQL_HANDLE_DBC): likewise.
11094         (SQL_HANDLE_DESC): likewise.
11095         (SQL_HANDLE_ENV): likewise.
11096         (SQL_HANDLE_STMT): likewise.
11097         (SQL_INSENSITIVE): likewise.
11098         (SQL_INTEGRITY): likewise.
11099         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11100         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11101         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11102         (SQL_MAX_IDENTIFIER_LEN): likewise.
11103         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11104         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11105         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11106         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11107         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11108         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11109         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11110         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11111         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11112         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11113         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11114         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11115         (SQL_MAXIMUM_ROW_SIZE): likewise.
11116         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11117         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11118         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11119         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11120         (SQL_NAMED): likewise.
11121         (SQL_NONSCROLLABLE): likewise.
11122         (SQL_NTSL): likewise.
11123         (SQL_NULL_HANDLE): likewise.
11124         (SQL_NULL_HDESC): likewise.
11125         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11126         (SQL_PRED_BASIC): likewise.
11127         (SQL_PRED_CHAR): likewise.
11128         (SQL_PRED_NONE): likewise.
11129         (SQL_ROW_IDENTIFIER): likewise.
11130         (SQL_SCROLLABLE): likewise.
11131         (SQL_SENSITIVE): likewise.
11132         (SQL_SUCCEEDED(rc)): likewise.
11133         (SQL_TIME_LEN): likewise.
11134         (SQL_TIMESTAMP_LEN): likewise.
11135         (SQL_TRANSACTION_CAPABLE): likewise.
11136         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11137         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11138         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11139         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11140         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11141         (SQL_TYPE_DATE): likewise.
11142         (SQL_TYPE_TIME): likewise.
11143         (SQL_TYPE_TIMESTAMP): likewise.
11144         (SQL_UNKNOWN_TYPE): likewise.
11145         (SQL_UNNAMED): likewise.
11146         (SQL_UNSPECIFIED): likewise.
11147         (SQL_XOPEN_CLI_YEAR): likewise.
11148         (SQLAllocConnect): add comment marking as deperecated.
11149         (SQLAllocEnv): likewise.
11150         (SQLAllocStmt): likewise.
11151         (SQLFreeConnect): likewise.
11152         (SQLFreeEnv): likewise.
11153         (SQLGetConnectOption): likewise.
11154         (SQLGetStmtOption): likewise.
11155
11156         * include/sqlext.h (#include <sqlucode.h>): add directive.
11157         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11158         (SQLColAttributes): likewise.
11159         (SQLBulkOperations): add function prototype.
11160         (SQLAllocHandleStd): likewise
11161         (TraceReturn): add Trace API prototype.
11162         (TraceVersion): likewise.
11163         (ODBCGetTryWaitValue):likewise.
11164         (ODBCSetTryWaitValue): likewise.
11165         (SQL_LOCK_RECORD): correct function macro.
11166         (SQL_REFRESH_RECORD): likewise.
11167         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11168         _WIN64 compatability.
11169         move defines for non-core functions from sql.h to sqlext.h (refer
11170         changes for sql.h)
11171         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11172         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11173         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11174         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11175         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11176         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11177         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11178         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11179         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11180         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11181         (SQL_AF_ALL): likewise.
11182         (SQL_AF_AVG): likewise.
11183         (SQL_AF_COUNT): likewise.
11184         (SQL_AF_DISTINCT): likewise.
11185         (SQL_AF_MAX): likewise.
11186         (SQL_AF_MIN): likewise.
11187         (SQL_AF_SUM): likewise.
11188         (SQL_AGGREGATE_FUNCTIONS): likewise.
11189         (SQL_ALL_CATALOGS): likewise.
11190         (SQL_ALL_SCHEMAS): likewise.
11191         (SQL_ALL_TABLE_TYPES): likewise.
11192         (SQL_ALTER_DOMAIN): likewise.
11193         (SQL_AM_CONNECTION): likewise.
11194         (SQL_AM_NONE): likewise.
11195         (SQL_AM_STATEMENT): likewise.
11196         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11197         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11198         (SQL_API_SQLALLOCHANDLESTD): likewise.
11199         (SQL_API_SQLBULKOPERATIONS): likewise.
11200         (SQL_ASYNC_MODE): likewise.
11201         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11202         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11203         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11204         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11205         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11206         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11207         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11208         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11209         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11210         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11211         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11212         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11213         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11214         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11215         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11216         (SQL_ATTR_ACCESS_MODE): likewise.
11217         (SQL_ATTR_ASYNC_ENABLE): likewise.
11218         (SQL_ATTR_AUTOCOMMIT): likewise.
11219         (SQL_ATTR_CONCURRENCY): likewise.
11220         (SQL_ATTR_CONNECTION_POOLING): likewise.
11221         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11222         (SQL_ATTR_CP_MATCH): likewise.
11223         (SQL_ATTR_CURRENT_CATALOG): likewise.
11224         (SQL_ATTR_CURSOR_TYPE): likewise.
11225         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11226         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11227         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11228         (SQL_ATTR_ENLIST_IN_XA): likewise.
11229         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11230         (SQL_ATTR_KEYSET_SIZE): likewise.
11231         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11232         (SQL_ATTR_MAX_LENGTH): likewise.
11233         (SQL_ATTR_MAX_ROWS): likewise.
11234         (SQL_ATTR_NOSCAN): likewise.
11235         (SQL_ATTR_ODBC_CURSORS): likewise.
11236         (SQL_ATTR_ODBC_VERSION): likewise.
11237         (SQL_ATTR_PACKET_SIZE): likewise.
11238         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11239         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11240         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11241         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11242         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11243         (SQL_ATTR_PARAMSET_SIZE): likewise.
11244         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11245         (SQL_ATTR_QUIET_MODE): likewise.
11246         (SQL_ATTR_RETRIEVE_DATA): likewise.
11247         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11248         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11249         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11250         (SQL_ATTR_ROW_NUMBER): likewise.
11251         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11252         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11253         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11254         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11255         (SQL_ATTR_TRACE): likewise.
11256         (SQL_ATTR_TRACEFILE): likewise.
11257         (SQL_ATTR_TRANSLATE_LIB): likewise.
11258         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11259         (SQL_ATTR_TXN_ISOLATION): likewise.
11260         (SQL_ATTR_USE_BOOKMARKS): likewise.
11261         (SQL_BATCH_ROW_COUNT): likewise.
11262         (SQL_BATCH_SUPPORT): likewise.
11263         (SQL_BRC_EXPLICIT): likewise.
11264         (SQL_BRC_PROCEDURES): likewise.
11265         (SQL_BRC_ROLLED_UP): likewise.
11266         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11267         (SQL_BS_ROW_COUNT_PROC): likewise.
11268         (SQL_BS_SELECT_EXPLICIT): likewise.
11269         (SQL_BS_SELECT_PROC): likewise.
11270         (SQL_C_INTERVAL_DAY): likewise.
11271         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11272         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11273         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11274         (SQL_C_INTERVAL_HOUR): likewise.
11275         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11276         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11277         (SQL_C_INTERVAL_MINUTE): likewise.
11278         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11279         (SQL_C_INTERVAL_MONTH): likewise.
11280         (SQL_C_INTERVAL_SECOND): likewise.
11281         (SQL_C_INTERVAL_YEAR): likewise.
11282         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11283         (SQL_C_NUMERIC): likewise.
11284         (SQL_C_SBIGINT): likewise.
11285         (SQL_C_TYPE_DATE): likewise.
11286         (SQL_C_TYPE_TIME): likewise.
11287         (SQL_C_TYPE_TIMESTAMP): likewise.
11288         (SQL_C_UBIGINT): likewise.
11289         (SQL_C_VARBOOKMARK): likewise.
11290         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11291         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11292         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11293         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11294         (SQL_CA_CREATE_ASSERTION): likewise.
11295         (SQL_CA1_ABSOLUTE): likewise.
11296         (SQL_CA1_BOOKMARK): likewise.
11297         (SQL_CA1_BULK_ADD): likewise.
11298         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11299         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11300         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11301         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11302         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11303         (SQL_CA1_LOCK_UNLOCK): likewise.
11304         (SQL_CA1_NEXT): likewise.
11305         (SQL_CA1_POS_DELETE): likewise.
11306         (SQL_CA1_POS_POSITION): likewise.
11307         (SQL_CA1_POS_REFRESH): likewise.
11308         (SQL_CA1_POS_UPDATE): likewise.
11309         (SQL_CA1_POSITIONED_DELETE): likewise.
11310         (SQL_CA1_POSITIONED_UPDATE): likewise.
11311         (SQL_CA1_RELATIVE): likewise.
11312         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11313         (SQL_CA2_CRC_APPROXIMATE): likewise.
11314         (SQL_CA2_CRC_EXACT): likewise.
11315         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11316         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11317         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11318         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11319         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11320         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11321         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11322         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11323         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11324         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11325         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11326         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11327         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11328         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11329         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11330         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11331         (SQL_CATALOG_LOCATION): likewise.
11332         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11333         (SQL_CATALOG_TERM): likewise.
11334         (SQL_CATALOG_USAGE): likewise.
11335         (SQL_CCOL_CREATE_COLLATION): likewise.
11336         (SQL_CCS_COLLATE_CLAUSE): likewise.
11337         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11338         (SQL_CCS_LIMITED_COLLATION): likewise.
11339         (SQL_CDO_COLLATION): likewise.
11340         (SQL_CDO_CONSTRAINT): likewise.
11341         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11342         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11343         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11344         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11345         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11346         (SQL_CDO_CREATE_DOMAIN): likewise.
11347         (SQL_CDO_DEFAULT): likewise.
11348         (SQL_CL_END): likewise.
11349         (SQL_CL_START): likewise.
11350         (SQL_COL_PRED_BASIC): likewise.
11351         (SQL_COL_PRED_CHAR): likewise.
11352         (SQL_COLUMN_DRIVER_START): likewise.
11353         (SQL_COLUMN_IGNORE): likewise.
11354         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11355         (SQL_CONVERT_GUID): likewise.
11356         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11357         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11358         (SQL_CONVERT_WCHAR): likewise.
11359         (SQL_CONVERT_WLONGVARCHAR): likewise.
11360         (SQL_CONVERT_WVARCHAR): likewise.
11361         (SQL_CP_DEFAULT): likewise.
11362         (SQL_CP_MATCH_DEFAULT): likewise.
11363         (SQL_CP_OFF): likewise.
11364         (SQL_CP_ONE_PER_DRIVER): likewise.
11365         (SQL_CP_ONE_PER_HENV): likewise.
11366         (SQL_CP_RELAXED_MATCH): likewise.
11367         (SQL_CP_STRICT_MATCH): likewise.
11368         (SQL_CREATE_ASSERTION): likewise.
11369         (SQL_CREATE_CHARACTER_SET): likewise.
11370         (SQL_CREATE_COLLATION): likewise.
11371         (SQL_CREATE_DOMAIN): likewise.
11372         (SQL_CREATE_SCHEMA): likewise.
11373         (SQL_CREATE_TABLE): likewise.
11374         (SQL_CREATE_TRANSLATION): likewise.
11375         (SQL_CREATE_VIEW): likewise.
11376         (SQL_CS_AUTHORIZATION): likewise.
11377         (SQL_CS_CREATE_SCHEMA): likewise.
11378         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11379         (SQL_CT_COLUMN_COLLATION): likewise.
11380         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11381         (SQL_CT_COLUMN_DEFAULT): likewise.
11382         (SQL_CT_COMMIT_DELETE): likewise.
11383         (SQL_CT_COMMIT_PRESERVE): likewise.
11384         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11385         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11386         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11387         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11388         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11389         (SQL_CT_CREATE_TABLE): likewise.
11390         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11391         (SQL_CT_LOCAL_TEMPORARY): likewise.
11392         (SQL_CT_TABLE_CONSTRAINT): likewise.
11393         (SQL_CTR_CREATE_TRANSLATION): likewise.
11394         (SQL_CU_DML_STATEMENTS): likewise.
11395         (SQL_CU_INDEX_DEFINITION): likewise.
11396         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11397         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11398         (SQL_CU_TABLE_DEFINITION): likewise.
11399         (SQL_CVT_GUID): likewise.
11400         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11401         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11402         (SQL_CVT_WCHAR): likewise.
11403         (SQL_CVT_WLONGVARCHAR): likewise.
11404         (SQL_CVT_WVARCHAR): likewise.
11405         (SQL_DA_DROP_ASSERTION): likewise.
11406         (SQL_DATETIME_LITERALS): likewise.
11407         (SQL_DB_DEFAULT): likewise.
11408         (SQL_DB_DISCONNECT): likewise.
11409         (SQL_DB_RETURN_TO_POOL): likewise.
11410         (SQL_DC_DROP_COLLATION): likewise.
11411         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11412         (SQL_DD_CASCADE): likewise.
11413         (SQL_DD_DROP_DOMAIN): likewise.
11414         (SQL_DD_RESTRICT): likewise.
11415         (SQL_DDL_INDEX): likewise.
11416         (SQL_DELETE_BY_BOOKMARK): likewise.
11417         (SQL_DESC_ARRAY_SIZE): likewise.
11418         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11419         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11420         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11421         (SQL_DESC_BASE_TABLE_NAME): likewise.
11422         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11423         (SQL_DESC_BIND_TYPE): likewise.
11424         (SQL_DESC_CASE_SENSITIVE): likewise.
11425         (SQL_DESC_CATALOG_NAME): likewise.
11426         (SQL_DESC_CONCISE_TYPE): likewise.
11427         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11428         (SQL_DESC_DISPLAY_SIZE): likewise.
11429         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11430         (SQL_DESC_LABEL): likewise.
11431         (SQL_DESC_LITERAL_PREFIX): likewise.
11432         (SQL_DESC_LITERAL_SUFFIX): likewise.
11433         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11434         (SQL_DESC_MAXIMUM_SCALE): likewise.
11435         (SQL_DESC_MINIMUM_SCALE): likewise.
11436         (SQL_DESC_NUM_PREC_RADIX): likewise.
11437         (SQL_DESC_PARAMETER_TYPE): likewise.
11438         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11439         (SQL_DESC_SCHEMA_NAME): likewise.
11440         (SQL_DESC_SEARCHABLE): likewise.
11441         (SQL_DESC_TABLE_NAME): likewise.
11442         (SQL_DESC_TYPE_NAME): likewise.
11443         (SQL_DESC_UNSIGNED): likewise.
11444         (SQL_DESC_UPDATABLE): likewise.
11445         (SQL_DI_CREATE_INDEX): likewise.
11446         (SQL_DI_DROP_INDEX): likewise.
11447         (SQL_DIAG_COLUMN_NUMBER): likewise.
11448         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11449         (SQL_DIAG_ROW_NUMBER): likewise.
11450         (SQL_DL_SQL92_DATE): likewise.
11451         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11452         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11453         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11454         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11455         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11456         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11457         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11458         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11459         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11460         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11461         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11462         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11463         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11464         (SQL_DL_SQL92_TIME): likewise.
11465         (SQL_DL_SQL92_TIMESTAMP): likewise.
11466         (SQL_DM_VER): likewise.
11467         (SQL_DRIVER_HDESC): likewise.
11468         (SQL_DROP_ASSERTION): likewise.
11469         (SQL_DROP_CHARACTER_SET): likewise.
11470         (SQL_DROP_COLLATION): likewise.
11471         (SQL_DROP_DOMAIN): likewise.
11472         (SQL_DROP_SCHEMA): likewise.
11473         (SQL_DROP_TABLE): likewise.
11474         (SQL_DROP_TRANSLATION): likewise.
11475         (SQL_DROP_VIEW): likewise.
11476         (SQL_DS_CASCADE): likewise.
11477         (SQL_DS_DROP_SCHEMA): likewise.
11478         (SQL_DS_RESTRICT): likewise.
11479         (SQL_DT_CASCADE): likewise.
11480         (SQL_DT_DROP_TABLE): likewise.
11481         (SQL_DT_RESTRICT): likewise.
11482         (SQL_DTC_DONE): likewise.
11483         (SQL_DTR_DROP_TRANSLATION): likewise.
11484         (SQL_DV_CASCADE): likewise.
11485         (SQL_DV_DROP_VIEW): likewise.
11486         (SQL_DV_RESTRICT): likewise.
11487         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11488         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11489         (SQL_EXT_API_LAST): likewise.
11490         (SQL_EXT_API_START): likewise.
11491         (SQL_FETCH_BY_BOOKMARK): likewise.
11492         (SQL_FETCH_FIRST_SYSTEM): likewise.
11493         (SQL_FETCH_FIRST_USER): likewise.
11494         (SQL_FN_CVT_CAST): likewise.
11495         (SQL_FN_STR_BIT_LENGTH): likewise.
11496         (SQL_FN_STR_CHAR_LENGTH): likewise.
11497         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11498         (SQL_FN_STR_OCTET_LENGTH): likewise.
11499         (SQL_FN_STR_POSITION): likewise.
11500         (SQL_FN_TD_CURRENT_DATE): likewise.
11501         (SQL_FN_TD_CURRENT_TIME): likewise.
11502         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11503         (SQL_FN_TD_EXTRACT): likewise.
11504         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11505         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11506         (SQL_FUNC_EXISTS(exists,api)): likewise.
11507         (SQL_GB_COLLATE): likewise.
11508         (SQL_HANDLE_SENV): likewise.
11509         (SQL_IK_ALL): likewise.
11510         (SQL_IK_ASC): likewise.
11511         (SQL_IK_DESC): likewise.
11512         (SQL_IK_NONE): likewise.
11513         (SQL_INDEX_KEYWORDS): likewise.
11514         (SQL_INFO_DRIVER_START): likewise.
11515         (SQL_INFO_LAST): likewise.
11516         (SQL_INFO_SCHEMA_VIEWS): likewise.
11517         (SQL_INITIALLY_DEFERRED): likewise.
11518         (SQL_INITIALLY_IMMEDIATE): likewise.
11519         (SQL_INSERT_STATEMENT): likewise.
11520         (SQL_INTERVAL): likewise.
11521         (SQL_IS_INSERT_LITERALS): likewise.
11522         (SQL_IS_INSERT_SEARCHED): likewise.
11523         (SQL_IS_INTEGER): likewise.
11524         (SQL_IS_POINTER): likewise.
11525         (SQL_IS_SELECT_INTO): likewise.
11526         (SQL_IS_SMALLINT): likewise.
11527         (SQL_IS_UINTEGER): likewise.
11528         (SQL_IS_USMALLINT): likewise.
11529         (SQL_ISV_ASSERTIONS): likewise.
11530         (SQL_ISV_CHARACTER_SETS): likewise.
11531         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11532         (SQL_ISV_COLLATIONS): likewise.
11533         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11534         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11535         (SQL_ISV_COLUMNS): likewise.
11536         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11537         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11538         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11539         (SQL_ISV_DOMAINS): likewise.
11540         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11541         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11542         (SQL_ISV_SCHEMATA): likewise.
11543         (SQL_ISV_SQL_LANGUAGES): likewise.
11544         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11545         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11546         (SQL_ISV_TABLES): likewise.
11547         (SQL_ISV_TRANSLATIONS): likewise.
11548         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11549         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11550         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11551         (SQL_ISV_VIEWS): likewise.
11552         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11553         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11554         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11555         (SQL_NO_COLUMN_NUMBER): likewise.
11556         (SQL_NO_ROW_NUMBER): likewise.
11557         (SQL_NOT_DEFERRABLE): likewise.
11558         (SQL_NUM_EXTENSIONS): likewise.
11559         (SQL_NUM_FUNCTIONS): likewise.
11560         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11561         (SQL_OIC_CORE): likewise.
11562         (SQL_OIC_LEVEL1): likewise.
11563         (SQL_OIC_LEVEL2): likewise.
11564         (SQL_OV_ODBC2): likewise.
11565         (SQL_OV_ODBC3): likewise.
11566         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11567         (SQL_PARAM_ARRAY_SELECTS): likewise.
11568         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11569         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11570         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11571         (SQL_PARAM_ERROR): likewise.
11572         (SQL_PARAM_IGNORE): likewise.
11573         (SQL_PARAM_PROCEED): likewise.
11574         (SQL_PARAM_SUCCESS): likewise.
11575         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11576         (SQL_PARAM_UNUSED): likewise.
11577         (SQL_PARC_BATCH): likewise.
11578         (SQL_PARC_NO_BATCH): likewise.
11579         (SQL_PAS_BATCH): likewise.
11580         (SQL_PAS_NO_BATCH): likewise.
11581         (SQL_PAS_NO_SELECT): likewise.
11582         (SQL_ROW_IGNORE): likewise.
11583         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11584         (SQL_ROW_PROCEED): likewise.
11585         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11586         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11587         (SQL_SC_SQL92_ENTRY): likewise.
11588         (SQL_SC_SQL92_FULL): likewise.
11589         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11590         (SQL_SCC_ISO92_CLI): likewise.
11591         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11592         (SQL_SCHEMA_TERM): likewise.
11593         (SQL_SCHEMA_USAGE): likewise.
11594         (SQL_SDF_CURRENT_DATE): likewise.
11595         (SQL_SDF_CURRENT_TIME): likewise.
11596         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11597         (SQL_SFKD_CASCADE): likewise.
11598         (SQL_SFKD_NO_ACTION): likewise.
11599         (SQL_SFKD_SET_DEFAULT): likewise.
11600         (SQL_SFKD_SET_NULL): likewise.
11601         (SQL_SFKU_CASCADE): likewise.
11602         (SQL_SFKU_NO_ACTION): likewise.
11603         (SQL_SFKU_SET_DEFAULT): likewise.
11604         (SQL_SFKU_SET_NULL): likewise.
11605         (SQL_SG_DELETE_TABLE): likewise.
11606         (SQL_SG_INSERT_COLUMN): likewise.
11607         (SQL_SG_INSERT_TABLE): likewise.
11608         (SQL_SG_REFERENCES_COLUMN): likewise.
11609         (SQL_SG_REFERENCES_TABLE): likewise.
11610         (SQL_SG_SELECT_TABLE): likewise.
11611         (SQL_SG_UPDATE_COLUMN): likewise.
11612         (SQL_SG_UPDATE_TABLE): likewise.
11613         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11614         (SQL_SG_USAGE_ON_COLLATION): likewise.
11615         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11616         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11617         (SQL_SG_WITH_GRANT_OPTION): likewise.
11618         (SQL_SNVF_BIT_LENGTH): likewise.
11619         (SQL_SNVF_CHAR_LENGTH): likewise.
11620         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11621         (SQL_SNVF_EXTRACT): likewise.
11622         (SQL_SNVF_OCTET_LENGTH): likewise.
11623         (SQL_SNVF_POSITION): likewise.
11624         (SQL_SP_BETWEEN): likewise.
11625         (SQL_SP_COMPARISON): likewise.
11626         (SQL_SP_EXISTS): likewise.
11627         (SQL_SP_IN): likewise.
11628         (SQL_SP_ISNOTNULL): likewise.
11629         (SQL_SP_ISNULL): likewise.
11630         (SQL_SP_LIKE): likewise.
11631         (SQL_SP_MATCH_FULL): likewise.
11632         (SQL_SP_MATCH_PARTIAL): likewise.
11633         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11634         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11635         (SQL_SP_OVERLAPS): likewise.
11636         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11637         (SQL_SP_UNIQUE): likewise.
11638         (SQL_SQL_CONFORMANCE): likewise.
11639         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
11640         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
11641         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
11642         (SQL_SQL92_GRANT): likewise.
11643         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
11644         (SQL_SQL92_PREDICATES): likewise.
11645         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
11646         (SQL_SQL92_REVOKE): likewise.
11647         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
11648         (SQL_SQL92_STRING_FUNCTIONS): likewise.
11649         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
11650         (SQL_SR_CASCADE): likewise.
11651         (SQL_SR_DELETE_TABLE): likewise.
11652         (SQL_SR_GRANT_OPTION_FOR): likewise.
11653         (SQL_SR_INSERT_COLUMN): likewise.
11654         (SQL_SR_INSERT_TABLE): likewise.
11655         (SQL_SR_REFERENCES_COLUMN): likewise.
11656         (SQL_SR_REFERENCES_TABLE): likewise.
11657         (SQL_SR_RESTRICT): likewise.
11658         (SQL_SR_SELECT_TABLE): likewise.
11659         (SQL_SR_UPDATE_COLUMN): likewise.
11660         (SQL_SR_UPDATE_TABLE): likewise.
11661         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
11662         (SQL_SR_USAGE_ON_COLLATION): likewise.
11663         (SQL_SR_USAGE_ON_DOMAIN): likewise.
11664         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
11665         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
11666         (SQL_SRJO_CROSS_JOIN): likewise.
11667         (SQL_SRJO_EXCEPT_JOIN): likewise.
11668         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
11669         (SQL_SRJO_INNER_JOIN): likewise.
11670         (SQL_SRJO_INTERSECT_JOIN): likewise.
11671         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
11672         (SQL_SRJO_NATURAL_JOIN): likewise.
11673         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
11674         (SQL_SRJO_UNION_JOIN): likewise.
11675         (SQL_SRVC_DEFAULT): likewise.
11676         (SQL_SRVC_NULL): likewise.
11677         (SQL_SRVC_ROW_SUBQUERY): likewise.
11678         (SQL_SRVC_VALUE_EXPRESSION): likewise.
11679         (SQL_SSF_CONVERT): likewise.
11680         (SQL_SSF_LOWER): likewise.
11681         (SQL_SSF_SUBSTRING): likewise.
11682         (SQL_SSF_TRANSLATE): likewise.
11683         (SQL_SSF_TRIM_BOTH): likewise.
11684         (SQL_SSF_TRIM_LEADING): likewise.
11685         (SQL_SSF_TRIM_TRAILING): likewise.
11686         (SQL_SSF_UPPER): likewise.
11687         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
11688         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
11689         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
11690         (SQL_SU_DML_STATEMENTS): likewise.
11691         (SQL_SU_INDEX_DEFINITION): likewise.
11692         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
11693         (SQL_SU_PROCEDURE_INVOCATION): likewise.
11694         (SQL_SU_TABLE_DEFINITION): likewise.
11695         (SQL_SVE_CASE): likewise.
11696         (SQL_SVE_CAST): likewise.
11697         (SQL_SVE_COALESCE): likewise.
11698         (SQL_SVE_NULLIF): likewise.
11699         (SQL_UB_FIXED): likewise.
11700         (SQL_UB_VARIABLE): likewise.
11701         (SQL_UNION_STATEMENT): likewise.
11702         (SQL_UPDATE_BY_BOOKMARK): likewise.
11703         (SQL_US_UNION): likewise.
11704         (SQL_US_UNION_ALL): likewise.
11705         (SQL_DESC_ROWVER): likewise.
11706         (SQL_GUID): likewise.
11707         (SQL_C_GUID): likewise.
11708         (ODBC_STD): likewise.
11709         (SQLAllocHandle): likewise.
11710         (SQLAllocEnv(p)): likewise.
11711         (SQL_YEAR): likewise.
11712         (SQL_MONTH): likewise.
11713         (SQL_DAY): likewise.
11714         (SQL_HOUR): likewise.
11715         (SQL_MINUTE): likewise.
11716         (SQL_SECOND): likewise.
11717         (SQL_YEAR_TO_MONTH): likewise.
11718         (SQL_DAY_TO_HOUR): likewise.
11719         (SQL_DAY_TO_MINUTE): likewise.
11720         (SQL_DAY_TO_SECOND): likewise.
11721         (SQL_HOUR_TO_MINUTE): likewise.
11722         (SQL_HOUR_TO_SECOND): likewise.
11723         (SQL_MINUTE_TO_SECOND): likewise.
11724         (SQL_ATTR_ANSI_APP): likewise.
11725         (SQL_AA_TRUE): likewise.
11726         (SQL_AA_FALSE): likewise.
11727
11728         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
11729         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
11730         (struct tagSQL_DAY_SECOND): likewise.
11731         (struct tagSQL_INTERVAL_STRUCT): likewise.
11732         (struct tagSQL_NUMERIC_STRUCT): likewise.
11733         (struct tagSQLGUID): add for 0DBC3.50.
11734         (enum SQLINTERVAL): add for ODBC3.x.
11735         (SQLWCHAR): add typedef.
11736         (SQLTCHAR): add typedef, conditional on UNICODE.
11737         (SQLLEN): add typedef for _WIN64, define for _WIN32.
11738         (SQLULEN): likewise.
11739         (SQLROWOFFSET): likewise.
11740         (SQLROWCOUNT): likewise.
11741         (SQLTRANSID): likewise.
11742         (SQLSETPOSIROW): likewise.
11743         (SQLHANDLE): add ODBC3.x typedef.
11744         (SQLHDESC): likewise.
11745         (SQLDATE): likewise.
11746         (SQLDECIMAL): likewise.
11747         (SQLDOUBLE): likewise.
11748         (SQLFLOAT): likewise.
11749         (SQLNUMERIC): likewise.
11750         (SQLREAL): likewise.
11751         (SQLTIME): likewise.
11752         (SQLTIMESTAMP): likewise.
11753         (SQLVARCHAR): likewise.
11754         (SQLBIGINT): likewise.
11755         (SQLUBIGINT): likewise.
11756         (SQL_DATE_STRUCT): likewise.
11757         (SQL_TIME_STRUCT): likewise.
11758         (SQL_TIMESTAMP_STRUCT): likewise.
11759         (ODBCINT64): add ODBC3.x define.
11760
11761         * lib/odbc32.def : regenerate.
11762
11763 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
11764
11765         * Apply Danny Smith patch 102275
11766         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11767         * include/objbase.h: (COM_RIGHTS): Add definition.
11768         (tagSTDMSHLFLAGS): add enumeration.
11769         (CoInitializeEx): Add prototypes.
11770         (CoGetStdMarshalEx): ditto.
11771         (CoCreateInstanceEx): ditto.
11772         (CoInitializeSecurity): ditto.
11773         (CoGetCallContext): ditto.
11774         (CoQueryProxyBlanket): ditto.
11775         (CoSetProxyBlanket): ditto.
11776         (CoCopyProxy): ditto.
11777         (CoQueryClientBlanket): ditto.
11778         (CoImpersonateClient): ditto.
11779         (CoRevertToSelf): ditto.
11780         (CoQueryAuthenticationServices): ditto.
11781         (CoSwitchCallContext): ditto.
11782         (CoGetInstanceFromFile): ditto.
11783         (CoGetInstanceFromIStorage): ditto.
11784         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
11785         (SOLE_AUTHENTICATION_INFO): ditto.
11786         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
11787         (COLE_DEFAULT_PRINCIPAL): Add definition.
11788         (COLE_DEFAULT_AUTHINFO): Ditto.
11789         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
11790         (RPC_PROTSEQ_VECTOR) Fix typo.
11791         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
11792         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
11793         attribute.
11794
11795 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
11796
11797         * lib/msvcp60.def: Apply Danny Smith patch 103321.
11798         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
11799         New file.
11800
11801 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
11802
11803         * include/winnt.h: Add PTOKEN_USER.
11804
11805 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11806
11807         * include/sqlucode.h: Apply Danny Smith patch 102443
11808         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11809         New file.
11810
11811 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11812
11813         * lib/odbccp32.def: Apply Danny Smith patch 102442
11814         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11815         New file.
11816
11817 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11818
11819         * include/odbcinst.h: Apply Danny Smith patch 102441
11820         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11821         New file.
11822
11823 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
11824
11825         * lib/Makefile.in: Don't make "links" to include/w32api directory.
11826
11827 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
11828
11829         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
11830
11831 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
11832
11833         * lib/Makefile.in: Install headers and libraries in tooldir.
11834
11835 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11836
11837         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
11838         SORT_STRINGSORT: ditto.
11839         CMAP*: ditto.
11840         CTRY_*: add new defines.
11841         LGRPID_*: ditto.
11842         LCMAP*: change defines to hex notation.
11843         CALID: change from ULONG to DWORD.
11844         CALTYPE: ditto.
11845         _cpinfoex[AW]: add structure.
11846         FoldString: correct Unicode mappings.
11847         GetCPInfoEx[AW]: add prototypes.
11848         EnumCalendarInfoEx[AW]: ditto.
11849         EnumDateFormatsEx[AW]: ditto.
11850         EnumSystemLanguageGroups[AW]: ditto.
11851         EnumLanguageGroupLocales[AW]: ditto.
11852         EnumUILanguages[AW]: ditto.
11853         GetSystemDefaultUILanguage[AW]: ditto.
11854         GetUserDefaultUILanguage[AW]: ditto.
11855         IsValidLanguageGroup[AW]: ditto.
11856         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
11857         LANGUAGEGROUP_ENUMPROC[AW]: ditto
11858         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
11859         UILANGUAGE_ENUMPROC[AW]: ditto
11860         DATEFMT_ENUMPROCEX[AW]: ditto
11861         LPCURRENCYFMT[AW]: add structure pointer typedef
11862         LPNUMBERFMT[AW]: ditto
11863
11864 2000-12-02  Matt Hargett  <matt@use.net>
11865
11866         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
11867         possible return code for the SetFilePointer() win32 API call.
11868
11869 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
11870
11871         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
11872
11873 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
11874
11875         * Makefile.in: increment VERSION.
11876         (dist:) Rename to srcdist.  Create new dist target to call
11877         srcdist and bindist targets.
11878         (srcdist:) New target.
11879         (clean-top:) add call to mostlyclean-top and add rm of distribution
11880         tarballs.
11881         * lib/Makefile.in: (uninstall:) modify to remove files from the
11882         new w32api subdirectory and to remove w32api subdirectory.
11883         (xuninstall:) Ditto.
11884         TODO: Add a task to redo the clean targets of Makefile.in
11885
11886 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
11887
11888         * lib/Makefile.in: Install header files in w32api subdirectory.
11889
11890 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
11891
11892         * CONTRIBUTIONS: New file.
11893         * README: Change the maintained by header.
11894         * TODO: Add a note about checking the TODO.
11895
11896 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
11897
11898         * Merge in accepted changes from
11899         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11900         * include/basetyps.h: add comment for GUID_DEFINED
11901         * include/lm.h: add includes for lmerr.h and lmserver.h
11902         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
11903         * include/lmerr.h:  add error codes
11904         * include/lmserver.h: replace LPTSTR with LPWSTR,
11905         LPTCSTR with LPWCSTR in structures and prototypes
11906         * include/lmshare.h: ditto
11907         * include/lmuse.h: ditto
11908         * include/lmstats.h: ditto
11909         * include/oleauto.h: add function prototype SystemTimeToVariantTime
11910         * include/winbase.h: change first argument of CommConfigDialog to const
11911         * include/windowsx.h: add macros  defining FAR versions of
11912         mem and string functions for porting from Win16 code
11913         * include/winioctl.h:  added IOCTL_STORAGE defines
11914         * include/winnetwk.h:  added WNNC_NET flags
11915         * include/winnt.h: add include of <basetsd.h>;
11916         add structs; add pointer typedefs  for TOKEN structs
11917         * include/winsock.h: add guard around BSD-ish typedefs
11918         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
11919         * include/basetsd.h: new file
11920         * include/raserror.h: ditto
11921         * include/rassapi.h: ditto
11922         * include/ras.h: ditto
11923         comment from Earnie: replaced original ras.h contribution with Danny's
11924         contribution as it is more complete.
11925         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
11926
11927 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
11928
11929         * Makefile.in: increment VERSION.  Change tar file name for dist and
11930         bindist targets to be more standard.
11931         * config.guess: Update with the currently published file.
11932         * config.sub: ditto.
11933         * configure.in: Use value of build_alias instead of testing for
11934         directory names to set BUILDENV.
11935         * configure: ditto.
11936         * lib/Makefile.in: Change the name of the targets install,
11937         install-headers and install-libraries to xinstall, xinstall-headers
11938         and xinstall-libraries for system target specified installation.
11939         Recreate targets install, install-headers and install-libraries for
11940         exec-prefix specified installation.  Ditto for the uninstall targets of
11941         the same name.
11942
11943 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
11944
11945         * include/iprtrmib.h: Further layout changes according to standard.
11946         * include/iptypes.h: Ditto.
11947         * include/ntdef.h: Ditto.
11948         * include/ntsecapi.h: Ditto.
11949         * include/subauth.h: Ditto.
11950
11951 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
11952
11953         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
11954
11955 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
11956
11957         * include/ntsecapi.h: New file.
11958         * include/subauth.h: Ditto.
11959         * include/ipexport.h: Fix global header define not to contain
11960         trailing underscore. Change layout according to standard.
11961         * include/iphlpapi.h: Ditto.
11962         * include/ipifcons.h: Ditto.
11963         * include/iprtrmib.h: Ditto.
11964         * include/iptypes.h: Ditto.
11965         * include/ntdef.h: Ditto. Define conditional datatypes dependent
11966         of inclusion of ntsecapi.h and subauth.h.
11967         * lib/secur32.def: New stub for secur32.dll.
11968
11969 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
11970
11971         * include/ras.h: New file.
11972         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
11973         RasEnumDevicesW.
11974
11975 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
11976
11977         * include/ntdef.h: Add define for NTAPI.
11978
11979 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11980
11981         * include/ipexport.h: Add missing `extern "C"' directives.
11982         * include/iphlpapi.h: Ditto.
11983         * include/iprtrmib.h: Ditto.
11984         * include/iptypes.h: Ditto.
11985
11986 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11987
11988         * include/ipifcons.h: New header file.
11989         * include/iprtrmib.h: Move operational states to ipifcons.h.
11990         * include/iphlpapi.h: Add missing parameters to GetIfTable()
11991         declaration.
11992
11993 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11994
11995         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
11996
11997 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11998
11999         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12000         * include/iptypes.h: New header file.
12001         * include/ipexport.h: Ditto.
12002         * include/iphlpapi.h: Ditto.
12003         * include/iprtrmib.h: Ditto.
12004
12005 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12006
12007         * include/ntdef.h: New file.
12008
12009 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12010
12011         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12012         to TOKEN_INFORMATION_CLASS type.
12013         Add QUOTA_LIMITS type.
12014
12015 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12016
12017         * include/userenv.h: New header file.
12018         * lib/userenv.def: New stub for userenv.dll.
12019
12020 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12021
12022         * include/winuser.h: Correct PCWPSTRUCT typo.
12023         (discovered by Axel Riese)
12024
12025 2000-07-27  DJ Delorie  <dj@redhat.com>
12026
12027         * include/windows.h: optimize non-inclusion of repeat headers
12028
12029 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12030
12031         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12032         LPTOKEN_SOURCE.
12033
12034 2000-07-11  DJ Delorie  <dj@cygnus.com>
12035
12036         * include/shlobj.h: add CSIDL_COMMON_*
12037
12038 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12039
12040         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12041         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12042         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12043         FILE_FLAG_OPEN_NO_RECALL.
12044         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12045         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12046         * winnt.h: Add typedef for GUID.
12047         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12048         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12049         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12050         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12051         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12052         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12053         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12054         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12055         * lib/psapi.def: New file.
12056
12057 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12058
12059         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12060         previously defined.
12061         * windef.h : Ditto.
12062
12063 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12064
12065         * include/winnt.h: Add some missing defines related to locale
12066         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12067
12068 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12069
12070         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12071
12072 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12073
12074         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12075
12076 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12077
12078         * include/wininet.h: Add another "INTERNET_OPTIONS".
12079
12080 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12081
12082         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12083
12084 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12085
12086         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12087         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12088         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12089         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12090
12091 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12092
12093         * include/winbase.h: Change first argument of ENUMRES* types to
12094         coincide with Microsoft usage.
12095
12096 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12097
12098         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12099
12100 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12101
12102         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12103         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12104         * include/winnt.h (SEC_*): Add macros.
12105         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12106         * include/ole.h: Workaround for C++ parser bug.
12107         * include/rpcdcep.h: Likewise.
12108         * include/winsock.h: Likewise.
12109
12110 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12111
12112         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12113
12114 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12115
12116         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12117         * include/wtypes.h (PBLOB, LPBLOB): Define.
12118         * include/winsock2.h: Much more complete version.
12119         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12120
12121         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12122         * include/winsock.h (FD_CLR): Add missing ')'.
12123         (timercmp): Fix macro to handle all 6 comparison operators.
12124         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12125         (AF_MAX): Update.
12126         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12127
12128         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12129         namespace pollution.
12130         * include/rpcndr.h: Likewise.
12131         * include/winnt.h: Likewise.
12132         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12133         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12134         * lib/ole32.def: Add missing exports.
12135         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12136         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12137         (NT_TIB): Define.
12138         * include/tlhelp32.h: New file.
12139
12140 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12141
12142         * include/rapi.h: New file.
12143         * lib/rapi.def: New file.
12144
12145 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12146
12147         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12148
12149 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12150
12151         * Snapshot 2000-02-03.
12152
12153 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12154
12155         * include/winnt.h: Add ARM support.
12156
12157 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12158
12159         From Greg Primes <gregory.l.priem@intel.com>:
12160         * include/oaidl.h (DESCKIND): Define macro.
12161         (ITypeComp): Define interface.
12162         (ITypeComp): Likewise.
12163         * rpcndr.h (DECLSPEC_UUID): Define macro.
12164         (MIDL_INTERFACE): Likewise.
12165
12166         * include/psapi.h: New file.
12167         * include/imagehlp.h: New file.
12168         * lib/imagehlp.def: New file.
12169
12170         * include/oaidl.h (tagVARIANT): Update fields.
12171
12172         From Craig Lanning <CraigL@DyCon.com>:
12173         * include/commctrl.h: Add some TCS_* macros.
12174         * include/winnls.h (IsValidLocale): Add prototype.
12175
12176 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12177
12178         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12179         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12180         * include/objbase.h: Likewise.
12181         * include/objidl.h: Likewise.
12182         * include/ocidl.h: New file.
12183         * include/oleauto.h: Likewise.
12184         * include/wtypes.h: Likewise.
12185         * lib/oleaut32.def: Likewise.
12186
12187         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12188         Thanks to "Jon Leichter" <jon@symas.com>.
12189         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12190         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12191         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12192         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12193         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12194         Dorsselaer" <frans@bia-bv.demon.nl>.
12195         * include/httpext.h: New file. Thanks to Jan Nijtmans
12196         <j.nijtmans@chello.nl>.
12197         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12198         redefinition of LPCWAVEFORMATEX in DirectX headers.
12199         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12200         <krzych00@priv7.onet.pl>.
12201         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12202         * include/windef.h (HRESULT): Guard definition to avoid
12203         redefinition in DirectX headers.
12204         * include/winnt.h: Add target macros from windows.h.
12205         * include/windows.h: Update synch comment for target macros.
12206         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12207         (_ANONYMOUS_UNION): Likewise.
12208         * include/wingdi.h (AbortPrinter): Move from here ...
12209         * include/winspool.h (AbortPrinter): to here and fix linkage.
12210         (MONITOR_INFO_2{A,W}): Define.
12211         * include/winsock.h (htons): Fix argument.
12212         (htonl): Likewise.
12213         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12214         (GROUP): Define.
12215         (GUID): Define conditionally.
12216         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12217         (WSASocket*): Declare.
12218         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12219
12220         * lib/dsetup.def: Remove leading underscore.
12221         * lib/dsound.def: Likewise.
12222         * lib/ws2_32.def: Likewise.
12223
12224 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12225
12226         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12227         handles.
12228
12229         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12230         * lib/dinput.c: Include windows.h for GCC.
12231         * lib/dxguid.c: Likewise.
12232         (INITGUID): Define macro.
12233
12234         * include/objidl.h (ISequentialStream): Define interface.
12235         (IStream): Derive from ISequentialStream.
12236
12237         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12238         Clone}): Mark as PURE.
12239         (IDataObject::EnumDAdvise): Likewise.
12240         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12241         (IViewObject::Unfreeze): Likewise.
12242         (IViewObject2::Unfreeze): Likewise.
12243
12244         * include/objidl.h: Add various IID_ declarations.
12245         * include/olectl.h: Likewise.
12246         * include/oleidl.h: Likewise.
12247
12248 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12249
12250         * Snapshot 1999-12-21.
12251
12252         * include/winbase.h (CancelIO): Rename to CancelIo.
12253         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12254         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12255
12256         * Merge with winsup-19991218.
12257         * include/winnt.h: Add defines for W2K ACL control flags.
12258
12259         * Merge with Anders Norlander's 19991130 snapshot.
12260
12261         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12262         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12263
12264         Patch from Harold Weissfield
12265         * include/shellapi.h: Added some ABN_* defines.
12266
12267         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12268         * lib/comctl32.def (_TrackMouseEvent): Import.
12269         * include/winuser.h: Misc. fixes from Sang Cho
12270         <sangcho@alpha94.chongju.ac.kr>.
12271         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12272         value of _WIN32_WINNT.
12273         * include/winuser.h: Reorganize SM_* defines in numerical order.
12274
12275 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12276
12277         * include/windef.h: Make RECTL a distinct type from RECT.
12278         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12279         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12280         (COMPAREITEMSTRUCT): Fix fields.
12281         (SERIALKEYSA): Likewise.
12282         (SERIALKEYSW): Likewise..
12283         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12284         (WIN32_FIND_DATAA): Likewise.
12285         (WIN32_FIND_DATAW): Likewise.
12286         * include/commdlg.h (SNDMSG): Define.
12287         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12288         (SO_CONNECT_TIME): Likewise.
12289         (AcceptEx): Declare.
12290         (GetAcceptExSockaddrs): Likewise.
12291         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12292         * include/winspool.h: Add RC_INVOKED guard.
12293         * lib/wsock32.def (AcceptEx@32): Export.
12294         (GetAcceptExSockaddrs@32): Likewise.
12295
12296 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12297
12298         * Snapshot 1999-11-18.
12299
12300         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12301         Octopod C++ IDE (and MSVC compatibility).
12302         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12303         * include/shellapi.h (ShellAbout*): Fix typo.
12304         * wingdi.h (FW_ULTRABOLD): Likewise.
12305         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12306         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12307         Add packing directives for various structures. All structure
12308         sizes now conform to MSVC.
12309
12310 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12311
12312         Released 1999-11-07.
12313
12314 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12315
12316         * include/winsock2.h: New file. Mostly a stub for now.
12317         * include/winbase.h (DllMain): Delete prototype.
12318         * include/commctrl.h (Header_SetItem): Fix macro.
12319         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12320         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12321         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12322
12323         Merge in changes from wxWindows.
12324         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12325         * include/oaidl.h (DISPID_*): Add macros.
12326         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12327         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12328         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12329         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12330
12331         Merge in changes from Octopod C++ IDE group.
12332         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12333         (Header_InsertItem): Fix macro.
12334         * include/oaidl.h (IID_IDispatch): Declare.
12335         (IID_ISupportErrorInfo): Likewise.
12336         (IDispatch): Rename Invoked to Invoke.
12337         * include/objidl.h (IPersist): Fix GetClassID.
12338         * include/oleauto.h (VectorFromBstr): Declare.
12339         (BstrFromVector): Likewise.
12340         * include/olectl.h (OLEMISC_*): Update.
12341         * include/olectlid.h (IID_IDispatch): Declare.
12342         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12343         (IOleInPlaceFrame): Fix.
12344         (ISupportErrorInfo): Define.
12345         (IErrorInfo): Define.
12346         * include/winuser.h (SIF_TRACKPOS): Define.
12347
12348 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12349
12350         Fix Merge errors:
12351         * include/winnt.h (PSID): Uncomment definition.
12352         (PISID): Rename from PSID.
12353         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12354         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12355
12356         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12357         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12358         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12359         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12360         include/shellapi.h, include/winbase.h, include/wingdi.h,
12361         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12362
12363 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12364
12365         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12366         Marius Kjeldahl <kjeldahl@hotmail.com>.
12367
12368 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12369
12370         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12371         (ERROR_SEVERITY_*): Likewise.
12372
12373 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12374
12375         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12376         (DllMain): Fix prototype.
12377
12378 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12379
12380         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12381         (cderr.h): Don't include.
12382         * include/winuser.h: Fix macro definitions.
12383
12384 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12385
12386         Merge with winsup 1999-07-29:
12387         * include/wincon.h (MOUSE_WHEELED): Define.
12388         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12389         (SECURITY_DESCRIPTOR): Add struct type.
12390         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12391         is equal to PVOID in the Platform SDK! So don't depend on accessing
12392         members through ->.
12393
12394 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12395
12396         * lib/Makefile.in (install-headers): Don't @ commands.
12397         (install-libraries): Ditto.
12398
12399 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12400
12401         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12402
12403 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12404
12405         Patch from Mumit Khan:
12406         * include/windows.h: Fix typo in winsock.h include guard and add
12407         _UWIN to the list.
12408         * include/winnt.h (__int64): Undefine first.
12409         (struct _SID): Declare.
12410
12411 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12412
12413         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12414
12415 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12416
12417         Patch from Mumit Khan:
12418         * Makefile.in: Do the right thing when cross-compiling.
12419         * include/windef.h: Don't define _export and __export if already
12420         defined.
12421
12422 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12423
12424         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12425         (DECLARE_INTERFACE_): Ditto.
12426
12427 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12428
12429         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12430
12431         Reported by Brad Porter
12432         * include/wingdi.h (FW_ULTRALIGHT): Add.
12433         (FW_DEMIBOLD): Add.
12434         (FW_ULTRABOLD): Add.
12435         (FW_BLACK): Add.
12436         (JOHAB_CHARSET): Add.
12437         (VIETNAMESE_CHARSET): Add.
12438
12439
12440 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12441
12442         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12443         * lib/Makefile.in (Makefile): Regenerate.
12444         * include/pshpack[1248].h: New files, if a program would use any of
12445         them.
12446         * include/poppack.h: Ditto.
12447         * include/windef.h (_WIN32_WINNT): Define
12448         * include/windows.h: Remove DUMMYUNIONNAME[45].
12449         * include/windows.h: Correctly define _M_IX86 to reflect the target
12450         processor.
12451         * include/windows.h: Add preliminary support for other architectures.
12452         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12453         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12454         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12455         issue with LARGE_INTEGER.
12456         (ANSI_NULL): Define.
12457         (PSZ): Define.
12458         (ACL_REVISION[1234]): Define.
12459         (MIN/MAX_ACL_REVISION): Define.
12460         (PTCHAR): Define.
12461         (LANG_USER_DEFAULT): Define.
12462         (LANG_SYSTEM_DEFAULT): Define.
12463         (LOCALE_NEUTRAL): Define.
12464         (SORTVERSIONFROMLCID): Define.
12465         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12466         (UNREFERENCED_LOCAL_VARIABLE): Define.
12467         (DBG_UNREFERENCED_PARAMETER): Define.
12468         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12469         * lib/mswsock.def: New file. Imports for mswsock.dll.
12470         * include/custcntl.h: New file. Necessary to compile some SDK
12471         samples.
12472         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12473         (WM_MOUSEWHEEL): Define.
12474         (WHEEL_DELTA): Define.
12475         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12476         (WM_NEXTMENU): Define.
12477         (CharNextA): Fix prototype.
12478         (CharNextW): Ditto.
12479
12480 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12481
12482         * include/winsock.h: Enclose in extern "C" if C++, huh?
12483         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12484
12485 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12486
12487         * include/windef.h (NULL): Define only ifndef
12488         (TRUE): Ditto, was previously only defined ifndef FALSE
12489         (PASCAL): Define as _pascal
12490         (__pascal): Define
12491         (WINAPIV): Define
12492         (min,max): Define only ifndef NOMINMAX
12493
12494 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12495
12496         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12497         You must define _WIN32_IE if you want support for it.
12498         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12499
12500 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12501
12502         * include/wincon.h: Add some ButtonState flags and EventFlags.
12503
12504 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12505
12506         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12507         interface define causes mayhem.
12508         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12509         defined.
12510         * include/windows.h: Undefine BOOL if __OBJC__ defined
12511
12512 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12513
12514         * include/winnls.h: Define additional code pages.
12515
12516 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12517
12518         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12519         order, corrected.
12520         (RtlZeroMemory): Use RtlFillMemory
12521
12522 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12523
12524         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12525         to get the correct size when used in some structs.
12526         (ULARGE_INTEGER): Ditto.
12527         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12528         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12529
12530 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12531
12532         * include/wininet.h: Enclose in extern "C" if c++
12533         (INTERNET_BUFFERSA/W): Define struct
12534         * include/wininet.h: Add some HSR_* defines
12535
12536 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12537
12538         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12539         * include/winnt.h (UNALIGNED): Define
12540         * include/windef.h (DECLSPEC_NORETURN): Define
12541
12542         * include/wininet.h (INTERNET_MAX_NAME): Remove
12543         (INTERNET_MAX_SCHEME_LENGTH): Define
12544         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12545         * include/wininet.def: Completely redone, it was losing badly.
12546
12547 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12548
12549         * lib/dplayx.def: Remove '_' prefixes
12550         * lib/shell32.def: Remove imports for IID_ContextMenu
12551
12552 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12553
12554         * Makefile.in (dist): Support dist target
12555         * lib/Makefile.in (dist): Likewise
12556         * lib/Makefile.in (uninstall-headers): Fix command
12557         * Makefile.in (bindist): Target to build a prebuilt dist
12558
12559         * lib/ws2_32.def: Winsock2 implib
12560
12561         * include/largeint.h: New header
12562         * include/largeint.c: Large integer support library
12563         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12564         (EXTRA_OBJS): Add largeint.o
12565
12566         * include/Makefile: Remove
12567         * lib/Makefile: Remove
12568         * Makefile: Remove
12569         * configure.in: New autoconf script
12570         * configure: generated configure script
12571         * Makefile.in: autoconf makefile template
12572         * lib/Makefile.in: Ditto
12573         * include/test.c: mv to lib/test.c
12574         * include/res.rc: mv to lib/res.rc
12575         * include/TODO: mv to .
12576         * include/Notes: mv to ./NOTES
12577
12578 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12579
12580         * include/zmouse.h (WHEEL_DELTA): Define
12581
12582 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12583
12584         * include/ddeml.h (HSZPAIR): Declare.
12585         * include/zmouse.h: New file.
12586
12587 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12588
12589         * lib/d3dim.def: New implib
12590         * lib/d3drm.def: Ditto
12591         * lib/d3dxof.def: Ditto
12592         * lib/ddraw.def: Ditto
12593         * lib/dinput.def: Ditto
12594         * lib/dplayx.def: Ditto
12595         * lib/dsetup.def: Ditto
12596         * lib/dsound.def: Ditto
12597         * lib/dinput.c: Guid library for DirectInput
12598         * lib/dxguid.c: Guid library for DirectX
12599
12600 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12601
12602         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12603         by Ron Aaron).
12604         * include/windowsx.h (GET_Y_LPARAM): Also missing
12605         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12606         by Mumit Khan).
12607
12608 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12609
12610         * include/scrnsave.h: New header file for screen saver library
12611         * lib/scrnsave.c: New file: screen saver library
12612
12613 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12614
12615         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12616         works well in when UNICODE is defined
12617
12618 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12619
12620         * include/winuser.h(STYLESTRUCT): New struct
12621         * include/wingdi.h:(GOBJENUMPROC): This function type should
12622         return void.
12623
12624 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12625
12626         * include/basetyps.h (LPGUID): New typedef
12627         * lib/glut.def: Import library defintions for glut.dll
12628         * lib/glu32.def: Ditto for glut32.dll
12629         * include/winnt.h: Fixed handling of wchar_t typedef
12630         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12631         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12632
12633 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12634
12635         * include/winbase.h(AbnormalTermination): Define as FALSE
12636         * include/commctrl.h: Support for new progress bar messages/styles
12637
12638 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
12639
12640         * include/commdlg.h(PageSetupDlg): New define
12641         * include/richedit.h: Missing SCF_* defines
12642         * include/winnt.h: Lots o' defines
12643         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
12644
12645 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
12646
12647         * include/commdlg.h: Removed pack pragma
12648         * lib/comctl32.def(InitCommonControlsEx@4): Added import
12649
12650 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
12651
12652         * Makefile: Set version to 0.1.5
12653         * lib/Makefile (clean): Fix typo
12654
12655         * include/commctrl.h: Removed pack pragma
12656         * include/cpl.h: Likewise
12657         * include/dbt.h: Likewise
12658         * include/dde.h: Likewise
12659         * include/nddeapi.h: Likewise
12660         * include/shellapi.h: Likewise
12661         * include/wincrypt.h: Likewise
12662         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
12663
12664         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
12665         (servent): Likewise
12666         (protoent): Likewise
12667
12668         * include/windows.h: Prevent inclusion of winsock.h if we are
12669         using or compiling cygwin. Define Win32_Winsock to force inclusion.
12670
12671 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
12672
12673         * include/winbase.h (CREATE_FORCEDOS): New define
12674
12675 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
12676
12677         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
12678         (COORD): Likewise
12679         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
12680         * include/windows.h: Added DUMMYUNIONNAME4 and 5
12681         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
12682         (PLUID_AND_ATTRIBUTES_ARRAY): New type
12683
12684         * include/ddeml.h: Removed unnecessary `#pragma pack'
12685         * include/imm.h: Likewise
12686         * include/nddeapi.h: Likewise
12687         * include/nspapi.h: Likewise
12688         * include/regstr.h: Likewise
12689         * include/wincon.h: Likewise
12690         * include/windef.h: Likewise
12691         * include/winioctl.h: Likewise
12692         * include/winnls.h: Likewise
12693         * include/winsvc.h: Likewise
12694         * include/winuser.h: Likewise
12695         * include/winver.h: Likewise
12696         * include/wtypes.h: Likewise
12697
12698 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
12699
12700         * Makefile (VERSION): Set to 0.1.4
12701         * include/basetyps.h: Check for NOCOMOBJECT
12702         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
12703         on comobject attribute.
12704         * lib/kernel32.def: Added a few functions
12705         * include/windef.h (DWORD): Changed back to unsigned long
12706
12707         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
12708         winresrc.h in turn includes the necessary headers. This makes things
12709         much simpler, no need to protect blocks of code in headers that
12710         should not be seen by the resource compiler.
12711
12712 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
12713
12714         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
12715         * include/wincon.h: Added console event type flags
12716         * include/winnt.h (FILE_SHARE_DELETE): Added
12717           (SECURITY_DESCRIPTOR): typedef as DWORD
12718
12719         * include/winuser.h (WM_PENWINFIRST): Fixed typo
12720         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
12721         define u_* types only if _SYS_TYPES_H is not defined.
12722
12723 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
12724
12725         * COPYING.LIB: Deleted
12726         * README: Updated to reflect license changes
12727         * include/shlobj.h: Remove extra comma on some enums
12728         * include/windef.h: Changed DWORD typedef from unsigned long to
12729         unsigned int in order to avoid warnings on bit fields that
12730         use DWORD.
12731         * include/Makefile (test): Compile with all warnings
12732         * include/unknwn.h: Include objfwd.h
12733         * include/winsock.h: Added missing copyright notices.
12734
12735 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
12736
12737         * lib/winmm.def: Corrected LIBRARY statement
12738         * include/mmsystem.h: Define mmioSeek codes if not already defined
12739         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
12740         (CreateStatusWindowW): Likewise
12741
12742         * include/winresrc.h: Include only files necessary instead of windows.h
12743         * include/dde.h: Allow inclusion in resource scripts.
12744         * include/winnt.h: Likewise
12745         * include/commctrl.h: Likewise
12746         * include/prsht.h: Likewise
12747         * README: Updated
12748
12749 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
12750
12751         * include/sqltypes.h (SQLHANDLE): Added this type
12752         (SQLHDESC): Likewise
12753         * include/sql.h (SQLFreeHandle): Added this prototype
12754         (SQLAllocHandle): Likewise
12755
12756 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
12757
12758         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
12759         conflicts with cygwin headers.
12760
12761 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
12762
12763         * Makefile: Changed VERSION to 0.1.3
12764         * Makefile (dist-lib): New target to make import library only
12765         distribution
12766         * Makefile (dist-hdr): New target to make headers only distribution
12767         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
12768         building one single distribution file.
12769         * dist.mak: Deleted
12770
12771         * include/lm.h: New file
12772         * include/lmcons.h: New file
12773         * include/lmalert.h: New file
12774         * include/lmaudit.h: New file
12775         * include/lmconfig.h: New file
12776         * include/lmapibuf.h: New file
12777         * include/lmaccess.h: New file
12778         * include/lmchdev.h: New file
12779         * include/lmremutl.h: New file
12780         * include/lmrepl.h: New file
12781         * include/lmerrlog.h: New file
12782         * include/lmat.h: New file
12783         * include/lmuse.h: New file
12784         * include/lmuseflg.h: New file
12785         * include/lmserver.h: New file
12786         * include/lmerr.h: New file
12787         * include/lmsname.h: New file
12788         * include/lmstats.h: New file
12789         * include/lmsvc.h: New file
12790         * include/lmwksta.h: New file
12791         * include/lmbrowsr.h: New file
12792
12793 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
12794
12795         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
12796         * include/unknwn.h: Added extern declaration for IID_IClassFactory
12797
12798         * include/initguid.h: New file
12799
12800         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
12801         int not supported
12802
12803         * include/winnt.h: Added USN
12804         * include/winnt.h: Changed handling of 64 bit int support
12805
12806         * include/windows.h: Added support for BC,LCC and MSVC
12807
12808         * include/windows.h: Changed handling machine architecture defines
12809
12810         * include/olectl.h: New file
12811
12812 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
12813
12814         * include/oleidl.h: Added IViewObject and IViewObject2
12815
12816         * include/objidl: Corrected prototype for IStorage::DestroyElement and
12817         IStorage::MoveElement
12818
12819         * include/oledlg.h: New file
12820
12821         * include/winresrc.h: New file
12822
12823         * include/wingdi.h: Added LPDOCINFO
12824
12825         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
12826         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
12827         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
12828         TabCtrl_SetImageList and TabCtrl_GetItemCount
12829         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
12830
12831         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
12832
12833         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
12834         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
12835
12836         * include/commdlg.h: Added LPDEVNAMES
12837
12838         * include/windows.h: Include excpt.h
12839
12840         * include/excpt.h: New file. This file just contains some
12841         stubs for SEH that do nothing.
12842
12843         * include/commctrl.h: Added general WM_NOTIFY codes
12844
12845         * include/winuser.h: Added ICON_SMALL and ICON_BIG
12846         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
12847         not be in the headers.
12848         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
12849         * include/winuser.h: Added old WM_SIZE parameter names so
12850         wxWindows compiles.
12851         * include/winuser.h: Added IDC_SIZE and IDC_ICON
12852         * include/winuser.h: Added LPDLGITEMTEMPLATE
12853         * include/winuser.h: HTCAPTION was missing value
12854         * include/winuser.h: Added WM_ACTIVE flags
12855
12856         * include/windowsx.h: Added _fmemcpy so V compiles; also added
12857         _fxx defines for memmove, memset and memcmp
12858
12859         * include/windef.h: Changed _export and __export to empty defines
12860
12861         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
12862         String parameters were not const and ExtractAssociatedIcon takes
12863         a WORD pointer not DWORD pointer as last parameter.
12864
12865         * Makefile: Changed VERSION to 0.1.2
12866
12867         * include/ole2ver.h: New file
12868
12869         * Makefile: Removed all dependencies on GLUT
12870
12871         * include/GL/glut.h: Removed file because of decision to remove
12872         files that are not part of the library.
12873         * lib/glut.def: Likewise
12874         * lib/glut32.def: Likewise
12875
12876         * include/windows.h: Include winperf.h
12877
12878         * include/winperf.h: New file
12879
12880         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
12881
12882         * include/winnls.h: Added calendar types
12883         * include/winnls.h: Added country codes
12884
12885 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
12886
12887         * include/windef.h: Added PROC and NEARPROC
12888
12889         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
12890         * include/wingdi.h: Added OpenGL types and prototypes
12891         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
12892         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
12893         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
12894         * include/wingdi.h: Added truetype character outline types
12895         * include/wingdi.h: Added DEVMODE initialization flags
12896         * include/wingdi.h: Added panose codes
12897         * include/wingdi.h: Added missing character sets
12898         * include/wingdi.h: Added ANTIALIASED_QUALITY and
12899         NONANTIALIASED_QUALITY
12900         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
12901         * include/wingdi.h: Added pointer types for EXTLOGPEN
12902         * include/wingdi.h: Added PATTERN type
12903         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
12904         * include/wingdi.h: Added new text metric flags
12905         * include/wingdi.h: Added pitch and family flags
12906         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
12907         * include/wingdi.h: Added METAHEADER
12908         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
12909         * include/wingdi.h: Added TA_MASK
12910         * include/wingdi.h: Added MAXSTRETCHBLTMODE
12911         * include/wingdi.h: Added error codes
12912
12913         * include/winuser.h: Added missing winhelp structures
12914         * include/winuser.h: Added dialog flags/styles/messages
12915         * include/winuser.h: Added EM_SETMARGIN codes
12916         * include/winuser.h: Made it possiblie to use IDI_XX values
12917         in resource files.
12918         * include/winuser.h: Added missing LoadImage load flags
12919         * include/winuser.h: Added missing message box flags
12920         * include/winuser.h: Added ScrollWindow codes
12921         * include/winuser.h: Added DT_WORD_ELLIPSIS
12922         * include/winuser.h: Added drag and drop support
12923         * include/winuser.h: Added WM_MENUCHAR return codes
12924         * include/winuser.h: Added DLGWINDOWEXTRA
12925         * include/winuser.h: Added missing SetWindowPos flags.
12926         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
12927         * include/winuser.h: Added IDHOT_xx defines
12928         * include/winuser.h: Added MOD_WIN
12929         * include/winuser.h: Added missing defines and structs for owner draw
12930         controls.
12931         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
12932         WPF_SETMINPOSITION
12933         * include/winuser.h: Added DrawAnimatedRects flags
12934         * include/winuser.h: Added WM_PRINT codes
12935         * include/winuser.h: Added CS_IME class style
12936         * include/winuser.h: Added WM_SIZE codes
12937         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
12938         * include/winuser.h: Added WM_NCHITTEST return codes
12939         * include/winuser.h: Added WM_SIZING parameters
12940         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
12941         * include/winuser.h: Added menu loop codes.
12942         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
12943         NF_REQUERY
12944         * include/winuser.h: Added WM_POWER flags
12945         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
12946         * include/winuser.h: Added missing message filter codes
12947         * include/winuser.h: Added WM_KEYXX message flags
12948         * include/winuser.h: Added WM_SHOWMESSAGE flags
12949         * include/winuser.h: Added old ShowWindow commands
12950         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
12951         structures.
12952
12953         * include/mciavi.h: New file for the MCI AVI driver that for some
12954         reason is not in mmsystem.h.
12955
12956         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
12957         * include/winbase.h: Added SECURITY_xx for CreateFile
12958         * include/winbase.h: Added RTS and DTS control values
12959         * include/winbase.h: Fixed SYSTEM_INFO structure
12960         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
12961         * include/winbase.h: Added FILE_TYPE_REMOTE
12962         * include/winbase.h: Added modem status flags
12963         * include/winbase.h: Added HINSTANCE_ERROR
12964         * include/winbase.h: Added DefineDosDevice defines
12965         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
12966         * include/winbase.h: Added STARTF_XX flags
12967         * include/winbase.h: Fixed typo on _lcreat prototype.
12968         * include/winbase.h: Moved DBG_XX to winnt.h
12969         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
12970         winnt.h
12971
12972         * include/unknwn.h: Added extern declaration of IID_IUnknown
12973
12974         * include/windowsx.h: Added hmemcpy.
12975
12976         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
12977         * include/winnt.h: Added PACCESS_TOKEN
12978         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
12979         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
12980         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
12981         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
12982         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
12983         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
12984
12985         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
12986         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
12987         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
12988
12989         * include/winsvc.h: Removed conflicting defines which were supposed
12990         to be in winnt.h
12991
12992         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
12993         and SERVICE_ERROR_TYPE.
12994
12995         * include/winnt.h: Added SERVICE_XX defines.
12996         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
12997         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
12998
12999         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13000         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13001         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13002         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13003
13004 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13005
13006         * include/winbase.h: Corrected prototype for CreateProcessA
13007
13008         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13009         driver extensions.
13010
13011         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13012         be LPSHELLFOLDER* not LPSHELLFOLDER.
13013
13014         * include/windows.h: Include commdlg.h
13015
13016         * include/winuser.h: Added MDICREATESTRUCT
13017
13018         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13019         CB_ERRSPACE, and CB_OKAY
13020
13021         * include/wingdi.h: Added LPBITMAPINFOHEADER
13022
13023         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13024         are meaningless.
13025         * include/rpcdce2.h: Likewise.
13026
13027         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13028
13029         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13030         * include/olectlid.h: Likewise
13031         * include/shlguid.h: Likewise
13032
13033         * include/coguid.h: Delete file since it was for 16 bit windows only.
13034
13035         * lib/*.def: Appended .dll to library name where needed.
13036
13037         * include/windef.h: Define _stdcall and __stdcall only if not
13038         previously defined instead of undefining first.
13039
13040         * include/dlgs.h: Put RC_INVOKED around structure defs
13041
13042         * include/intshcut.h: New file
13043         * include/isguids.h: New file
13044
13045         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13046
13047 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13048
13049         * include/winnt.h: Added check if _T is defined before defining it
13050
13051         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13052
13053         * include/dlgs.h: New file
13054
13055         * include/winbase.h: Removed DllEntryPoint define
13056
13057         * include/winbase.h: Added SetupComm prototype
13058
13059         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13060         supported anyway.
13061
13062         * include/basetyps.h: Removed use of COMOBJECT define, instead
13063         DECLARE_INTERFACE directly uses comobject attribute when GCC
13064         is used.
13065
13066         * include/wtypes.h: STGC enum was missing typedef
13067
13068         * include/objidl.h: ADVC enum was missing typedef
13069
13070         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13071         they are nested within the VOID definition.
13072
13073         * include/winbase.h: Added stream ids and attributes
13074
13075         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13076         to an ANYSIZE_ARRAY array.
13077
13078 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13079
13080         * include/windef.h: defined _declspec as __declspec since
13081         some programs (like VWCL) use _declspec instead of __declspec
13082
13083         * include/winnt.h: added COMPRESS_FORMAT defines
13084
13085         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13086
13087         * include/winnt.h: added HEAP_XXXX defines
13088
13089         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13090
13091         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13092         specification.
13093
13094         * include/winnt.h: added NTAPI define
13095
13096 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13097
13098         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13099         instead of CHAR or WCHAR.
13100
13101         * include/winnt.h: added _T define
13102
13103         * include/winnt.h: added test for _TCHAR_DEFINED
13104
13105         * include/winnt.h: included string.h for memory macros
13106
13107         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13108
13109         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13110
13111         * include/prsht.h: added PropSheet_XXX macros
13112
13113
13114 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13115
13116         * include/winspool.h: Changed DeletePrinterProcessor and
13117         DeletePrinterProvidor to DeletePrintXX.
13118
13119         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13120         LOGCOLORSPACEW.
13121
13122         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13123         variants
13124
13125         * include/wingdi.h: Likewise for GetLogColorSpace
13126
13127         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13128
13129         * include/richedit.h: Added missing defines and structures
13130
13131         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13132
13133         * include/winuser.h: Added HWND_DESKTOP
13134
13135 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13136
13137         * Makefile: Include ChangeLog when building source
13138         distribution (srcdist)
13139
13140         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13141         are always defined as STDAPI and STDAPI_
13142
13143         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13144         are always defined as STDAPI and STDAPI_
13145
13146         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13147
13148         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13149
13150         * ChangeLog started